/* Genre / subcategory chip sliders (Marriot Black app parity) */

.genre-sliders-section {
    background: var(--white, #fff);
}

.genre-chip-title {
    font-family: var(--font-heading, 'Playfair Display', serif);
    font-size: 1rem;
    font-weight: 700;
    color: var(--charcoal, #212121);
    margin: 0;
    padding: 0 0.25rem;
}

.genre-chip-scroller {
    display: flex;
    gap: 6px;
    overflow-x: auto;
    padding: 4px 2px 8px;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.genre-chip-scroller::-webkit-scrollbar {
    display: none;
}

.genre-chip {
    flex: 0 0 auto;
    height: 38px;
    padding: 5px 14px;
    border-radius: 18px;
    border: 2px solid #000;
    background: #000;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    white-space: nowrap;
    cursor: pointer;
    scroll-snap-align: start;
    transition: border-color 0.18s ease, transform 0.15s ease;
}

.genre-chip:hover {
    transform: translateY(-1px);
}

.genre-chip.is-selected {
    border-color: #9E9E9E;
}

.genre-chip:focus-visible {
    outline: 2px solid #9E9E9E;
    outline-offset: 2px;
}

.genre-pinned-slot:empty {
    display: none;
}

.genre-pinned-slot:not(:empty) {
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.genre-rows-section:empty,
.genre-rows-section .genre-rows:empty {
    display: none;
}

.genre-row.is-hidden {
    display: none !important;
}
