.hero {
    width: 100%;
    /* Content-based height for desktop, viewport-based for mobile */
    min-height: 600px; /* Reasonable minimum height for desktop */
    max-height: 80vh; /* Prevent hero from dominating the page */
    display: grid;
    grid-template-rows: auto 1fr auto;
    gap: var(--component-gap);
    padding: var(--hero-padding);
    color: var(--white);
    border-radius: 24px;
    overflow: hidden;
    margin-top: 20px;
    max-width: var(--content-width);
    margin-left: auto;
    margin-right: auto;
}
/* ===================================
   COMPONENTS.CSS - Reusable Components
   ================================= */

/* Header and Navigation */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--hero-padding);
    width: 100%;
}

.logo img {
    height: 40px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 48px;
    margin-left: auto;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 1rem;
}

.nav-links .active {
    font-weight: 600;
}

/* Mobile menu button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    z-index: 1001;
    /* Improve touch target */
    padding: 8px;
    min-width: 44px;
    min-height: 44px;
    border-radius: 4px;
    transition: background-color 0.2s ease;
}

.mobile-menu-btn:hover,
.mobile-menu-btn:focus {
    background-color: rgba(255, 255, 255, 0.1);
    outline: none;
}

/* Navigation Transitions */
.nav-links {
    transition: all 0.3s ease;
}

.nav-links a {
    transition: opacity 0.2s ease;
}

.nav-links a:hover {
    opacity: 0.8;
}

@media screen and (max-width: 768px) {
    .btn-book {
        width: 100%;
        max-width: 200px;
        min-height: 44px;
        padding: 12px 24px;
    }

    .mobile-menu-btn {
        display: block;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: var(--primary-color);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 32px;
        z-index: 1000;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }

    .nav-links.active {
        display: flex;
        animation: navMenuFadeIn 0.3s ease-out;
    }

    /* Allow menu to show - hero overflow: hidden clips the fixed nav */
    .hero:has(.nav-links.active) {
        overflow: visible !important;
    }

    @keyframes navMenuFadeIn {
        from {
            opacity: 0;
        }
        to {
            opacity: 1;
        }
    }

    /* Hide hero content when mobile menu is open - smooth fade */
    .hero .hero-content {
        transition: opacity 0.3s ease-out, visibility 0.3s;
    }
    .hero:has(.nav-links.active) .hero-content {
        visibility: hidden;
        opacity: 0;
        pointer-events: none;
    }

    .nav-links a {
        font-size: 1.2rem;
        padding: 12px 24px;
        border-radius: 8px;
        transition: background-color 0.2s ease;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .nav-links a:hover,
    .nav-links a:focus {
        background-color: rgba(255, 255, 255, 0.1);
        outline: none;
    }
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
}

@media screen and (max-width: 768px) {
    .mobile-nav {
        display: block;
    }

    .mobile-nav-btn {
        position: fixed;
        top: 20px;
        right: 20px;
        background: none;
        border: none;
        color: white;
        font-size: 24px;
        cursor: pointer;
        z-index: 1001;
    }

    .mobile-nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--primary-color);
        padding: 60px 20px 20px;
        transition: right 0.3s ease;
        z-index: 1000;
        box-shadow: -5px 0 15px rgba(0,0,0,0.2);
    }

    .mobile-nav-menu.active {
        right: 0;
    }

    .mobile-nav-menu a {
        display: block;
        color: white;
        text-decoration: none;
        font-size: 1.2rem;
        padding: 15px;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .mobile-nav-menu .btn-book {
        margin-top: 20px;
        width: 100%;
    }

    .close-btn {
        position: fixed;
        top: 20px;
        right: 20px;
        background: none;
        border: none;
        color: white;
        font-size: 24px;
        cursor: pointer;
    }

    .nav-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0,0,0,0.5);
        z-index: 999;
    }

    .nav-overlay.active {
        display: block;
    }
}

/* Buttons */
.btn-book {
    background: #C9A22B;
    color: #EBE5D9;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    font-family: 'InterDisplay', sans-serif;
    transition: background 0.15s, transform 0.12s;
    /* Ensure touch-friendly size */
    min-height: 44px;
    min-width: 44px;
}

.btn-book:hover {
    transform: translateY(-2px) scale(1.04);
}

.btn-book:focus {
    outline: 2px solid rgba(201, 162, 43, 0.5);
    outline-offset: 2px;
}

.search-btn {
    background: #C9A22B;
    color: #86352D;
    border-radius: 12px;
    width: 56px;
    height: 56px;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    margin-top: 24px;
    cursor: pointer;
    transition: background 0.15s, transform 0.12s;
    /* Ensure touch-friendly */
    min-height: 44px;
    min-width: 44px;
}

.search-btn:hover {
    background: #ddb335;
    transform: translateY(-2px) scale(1.04);
}

.search-btn:focus {
    outline: 2px solid rgba(201, 162, 43, 0.5);
    outline-offset: 2px;
}

.book-now {
    background: #C9A22B;
    color: #86352D;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-family: 'InterDisplay', sans-serif;
}

.cta-btn {
    background: #C9A22B;
    color: #ffffff;
    font-family: 'InterDisplay', sans-serif;
    font-weight: 700;
    font-size: 1.15rem;
    letter-spacing: -0.5px;
    border: none;
    border-radius: 8px;
    padding: 0.9em 2.2em;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,40,31,0.08);
    transition: background 0.15s, transform 0.12s;
    /* Enhanced touch target */
    min-height: 48px;
    min-width: 120px;
}

.cta-btn:hover {
    background: #ddb335;
    transform: translateY(-2px) scale(1.04);
}

.cta-btn:focus {
    outline: 2px solid rgba(201, 162, 43, 0.5);
    outline-offset: 2px;
}

.cta-btn:active {
    transform: translateY(0) scale(0.98);
}

/* Mobile-only Book Now button in hero */
.mobile-hero-book {
    display: none;
    width: 100%;
    margin-top: 18px;
    font-size: 1.2rem;
    padding: 14px 0;
    margin-bottom: 20px;
}

/* Hero Sections */


/* Hero Content */
.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 0;
}

.hero-content h1 {
    font-size: var(--fs-display-xl);
    line-height: 1.1;
    margin: 0;
    font-family: 'Gallient', sans-serif;
    font-weight: normal;
}

.hero-content p {
    font-size: var(--fs-body-lg);
    opacity: 0.9;
    margin: 0;
    line-height: 1.1;
    margin-bottom: 10px;
    font-family: 'InterDisplay', sans-serif;
    margin-top: 5px;  
}





.hero--home {
    background: url('../images/Hero Image.png') center/cover no-repeat;
}

.hero--about {
    background-color: #C9A22B;
}

.hero--landlords {
    background-color: #616147;
}

/* Listings Hero - Specific background positioning */
.hero--listings {
    background: url('../images/mexico_mi_amor.jpg') 25% center/cover no-repeat;
}

/* Listings Hero - Specific background positioning */
.listings-hero {
    background: url('../images/mexico_mi_amor.jpg') 25% center/cover;
    background-size: 120%; /* Maintain your custom zoom to center the element */
    background-repeat: no-repeat; /* Prevent tiling/repetition */
}

/* Listings Hero Content - Desktop positioning */
/* Listings Hero Content - Desktop positioning */
.listings-hero .hero-content {
    margin-top: 230px; /* Restore desktop positioning */
}

/* Compact Hero Section */
.hero-compact {
    width: 100%;
    /* Use flexible height system for compact hero */
    min-height: 40vh; /* Fallback - increased from 34vh */
    min-height: 50svh; /* Small viewport height - better proportion */
    display: flex;
    flex-direction: column;
    padding: var(--hero-padding);
    color: var(--white);
    border-radius: 24px;
    overflow: hidden;
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
    max-width: var(--content-width);
    position: relative;
}

.hero-compact .header {
    position: relative;
    z-index: 10;
}

.hero-compact .hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-top: -5vh;
}

/* Hero Content */
.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 0;
}

.hero-content h1 {
    font-size: 4.2rem;
    line-height: 1.1;
    margin: 0;
    font-family: 'Gallient', sans-serif;
    font-weight: normal;
}

.hero-content p {
    font-size: 1.24rem;
    opacity: 0.9;
    margin: 0;
    line-height: 1.1;
    margin-bottom: 10px;
    font-family: 'InterDisplay', sans-serif;
    margin-top: 5px;  
}

/* Search Container */
.search-container {
    background: rgba(75, 27, 22, 0.9);
    border-radius: 16px;
    padding: 32px 24px;
}


.search-filters {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    gap: 0;
    background: transparent;
    width: 100%;
}

.filter-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
}

.filter-group label {
    color: #ffd1cd;
    font-size: 20px;
    margin-bottom: 8px;
    font-family: 'InterDisplay', sans-serif;
    /* Improve label accessibility */
    font-weight: 500;
    cursor: pointer;
}

.filter-select {
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    background-image: none !important;
}

.filter-select:focus {
    border-bottom: 2px solid #C9A22B;
}

.filter-select option {
    color: #222;
    background: #fff;
}

.filter-select:disabled,
.filter-select option[value=""] {
    color: #b6d3c2;
}

/* Focus States */
.filter-select:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.4);
}

/* Price Range Currency Symbol */
.filter-group.price-range {
    position: relative;
}

.filter-group.price-range::before {
    content: '$';
    position: absolute;
    right: 30px;
    bottom: 12px;
    color: rgba(255, 255, 255, 0.5);
}

.filter-group::after {
    content: none !important;
}

.filter-divider {
    width: 1px;
    height: 64px;
    background: rgba(255,255,255,0.10);
    margin: 0 32px;
    align-self: center;
}

/* Fix dropdown clipping: allow overflow */
.hero, .search-container {
    overflow: visible !important;
}

/* Cards */
.card {
    background: #F8F3ED;
    border-radius: 24px;
    padding: 32px;
    position: absolute;
    width: 85%;
    left: 7.5%;
    display: flex;
    align-items: center;
    gap: 24px;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.card img {
    width: 32px;
    height: 32px;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.card span {
    font-size: 22px;
    font-weight: 500;
    color: #3D3501;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Card Position States */
.card.top {
    transform: scale(0.95) translateY(-80px);
    z-index: 1;
    opacity: 0.9;
}

.card.active {
    transform: scale(1.05) translateY(0);
    z-index: 3;
    background: var(--yellow);
    opacity: 1;
    width: 90%;
    left: 5%;
    padding: 36px;
}

.card.bottom {
    transform: scale(0.95) translateY(80px);
    z-index: 1;
    opacity: 0.9;
}

.card .emoji {
    font-size: 32px;
    line-height: 1;
}

.card.active .emoji {
    font-size: 33px;
}

.card {
    transition-property: transform, background-color, opacity, width, left, padding;
    transition-duration: 0.8s;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.card.active span:not(.emoji) {
    color: #3D3501;
}

.card.active .emoji {
    font-size: 30px;
}

/* Listing Cards */
.listing-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.listing-card:hover {
    transform: translateY(-5px);
}

.listing-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    position: relative;
}

.listing-details {
    padding: 20px;
}

.listing-title {
    font-size: 1.25rem;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.listing-location {
    color: var(--text-color);
    margin-bottom: 16px;
}

.listing-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--secondary-color);
}

.listing-features {
    display: flex;
    gap: 16px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #eee;
}

.feature {
    display: flex;
    align-items: center;
    gap: 8px;
}

.feature img {
    width: 20px;
    height: 20px;
}

/* Badge */
.badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: white;
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 14px;
}

/* Amenity Icons */
.amenity-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

/* Scrolling Strip */
.scrolling-strip {
    background: #C9A22B;
    overflow: hidden;
    padding: 24px 0;
    margin: 100px -15px;
    width: calc(100% + 30px);
    position: relative;
}

.scroll-content {
    display: flex;
    white-space: nowrap;
    animation: scroll 15s linear infinite;
    width: 300%;
    align-items: center;
}

.scroll-content span {
    color: #86352D;
    font-family: 'Gallient', sans-serif;
    font-size: 40px;
    line-height: 1;
    white-space: nowrap;
    flex-shrink: 0;
    margin-right: 70px;
}

.scroll-content .separator {
    font-size: 3em;
    opacity: 1;
    line-height: 1;
    margin-right: 70px;
    flex-shrink: 0;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-33.33%);
    }
}

/* Ensure smooth animation */
@media (prefers-reduced-motion: no-preference) {
    .scroll-content {
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        will-change: transform;
    }
}

/* Dropdown Components */
.dropdown.contact-dropdown {
    position: relative;
    display: inline-block;
}

.contact-link {
    color: #00281F;
    font-weight: 500;
    text-decoration: none;
    padding: 0.5em 1em;
    border-radius: 8px;
    transition: background 0.15s;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.4em;
}

.contact-link:hover, .contact-dropdown.open .contact-link {
    background: #e6f7f100;
}

.contact-link .fa-chevron-down {
    font-size: 0.85em;
    vertical-align: middle;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 110%;
    left: 0;
    min-width: 220px;
    background: #ffffff54;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0,40,31,0.13);
    z-index: 100;
    padding: 0.5em 0;
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px) scale(0.98);
    transition: opacity 0.18s, transform 0.18s;
}

.contact-dropdown.open .dropdown-content {
    display: block;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}

.dropdown-item {
    width: 100%;
    background: none;
    border: none;
    color: #ffffff;
    font-family: inherit;
    font-size: 1.08rem;
    text-align: left;
    padding: 0.85em 1.2em;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 0.7em;
    cursor: pointer;
    transition: color 0.14s;
}

.dropdown-item:hover, .dropdown-item:focus {
    background: #00000023;
    color: #e6e6e6;
    outline: none;
}

.dropdown-item i {
    font-size: 1.2em;
    color: #ffffff;
}

.dropdown-item:last-child i {
    color: #ffffff;
}

/* Listing Detail Components */
.room-card {
    background: #ffffff;
    border-radius: 32px;
    padding: clamp(24px, 4vw, 40px);
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
    gap: clamp(24px, 5vw, 40px);
    box-shadow: 0 28px 60px rgba(134, 53, 45, 0.08);
}

.room-card__gallery {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.05);
}

.room-card__images {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 12px;
}

.room-card__images::-webkit-scrollbar {
    height: 6px;
}

.room-card__images::-webkit-scrollbar-thumb {
    background: rgba(134, 53, 45, 0.3);
    border-radius: 999px;
}

.room-card__images img {
    width: 100%;
    min-width: clamp(240px, 52vw, 420px);
    height: clamp(240px, 45vw, 360px);
    object-fit: cover;
    border-radius: 24px;
    scroll-snap-align: center;
    box-shadow: 0 18px 44px rgba(18, 18, 18, 0.12);
}

.room-card__gallery-note {
    margin: 10px 0 0;
    font-size: var(--fs-body-sm);
    color: rgba(26, 26, 26, 0.6);
    font-style: italic;
}

.room-card__details {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.room-card__header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
}

.room-card__title {
    font-family: 'Gallient', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    letter-spacing: -1px;
}

.room-card__size {
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(134, 53, 45, 0.1);
    color: var(--primary-color);
    font-size: var(--fs-body-sm);
    font-family: 'InterDisplay', sans-serif;
}

.room-card__description {
    font-size: var(--fs-body-md);
    line-height: 1.6;
    color: rgba(26, 26, 26, 0.8);
}

.room-card__features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
}

.room-card__features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: var(--fs-body-md);
    color: rgba(26, 26, 26, 0.82);
}

.room-card__features li::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary-color);
}

.room-card__footer {
    margin-top: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 18px 24px;
}

.room-card__price {
    display: flex;
    flex-direction: column;
    font-family: 'InterDisplay', sans-serif;
    color: var(--primary-color);
}

.room-card__price-value {
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    font-weight: 600;
    line-height: 1;
}

.room-card__price-caption {
    font-size: var(--fs-body-sm);
    color: rgba(26, 26, 26, 0.6);
}

.room-card__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 999px;
    background: linear-gradient(135deg, #C9A22B, #86352D);
    color: var(--white);
    font-family: 'InterDisplay', sans-serif;
    font-size: var(--fs-body-md);
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.room-card__cta:hover,
.room-card__cta:focus {
    transform: translateY(-2px);
    box-shadow: 0 16px 32px rgba(134, 53, 45, 0.2);
}

@media (max-width: 1024px) {
    .room-card {
        grid-template-columns: 1fr;
    }

    .room-card__images {
        min-height: 220px;
    }
}

@media (max-width: 640px) {
    .room-card {
        padding: 20px;
    }

    .room-card__footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .room-card__cta {
        width: 100%;
    }
}

/* Choices.js Dropdown Styling */
.choices__list--dropdown, .choices__list[aria-expanded] {
    background: #fff;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.10);
    padding: 0;
    min-width: 100px;
    z-index: 1002;
}

.choices__item--choice {
    color: #222;
    padding: 16px 24px;
    font-size: 18px;
    transition: background 0.2s;
}

.choices__item--choice.is-highlighted, 
.choices__item--choice:hover {
    background: #C9A22B !important;
    color: #003529 !important;
}

.choices__list--dropdown .choices__item--choice {
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.choices__list--dropdown .choices__item--choice:last-child {
    border-bottom: none;
}

/* Remove background and add underline for Choices.js selects */
.choices, .choices__inner {
    background: transparent !important;
    border: none !important;
    border-bottom: 2px solid #ffd8d420 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    color: #222;
}

.choices__inner {
    padding-left: 0 !important;
    padding-right: 0 !important;
    min-height: 48px;
    display: flex;
    align-items: center;
}

.choices__placeholder {
    color: #b6d3c2 !important;
}

/* Make selected value in Choices.js field white and larger */
.choices__inner, .choices__item.choices__item--selectable {
    color: #fff !important;
    font-size: 20px !important;
}

/* Keep dropdown menu items dark */
.choices__list--dropdown .choices__item--choice {
    color: #222 !important;
    font-size: 18px;
}

/* White SVG Arrow for Choices.js Dropdown */
.choices[data-type*=select-one] .choices__inner::after,
.choices[data-type*=select-one]::after {
    border: none !important;
    background-image: url('data:image/svg+xml;utf8,<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M5 8L10 13L15 8" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 20px;
    height: 20px;
    content: '';
    display: block;
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 2;
}

/* Remove any other arrow or border for selects */
.filter-select::-ms-expand {
    display: none;
}

.filter-select {
    background-image: none !important;
}

/* Choices.js custom styling for better appearance and mobile usability */
.choices__inner {
    min-height: 48px; /* Increased for better touch targets */
    font-size: 1rem;
    border-radius: 6px;
    border: 1px solid #ccc;
    background: #fff;
    color: #00281F;
    padding: 8px 12px; /* Better touch padding */
    transition: border-color 0.2s ease;
}

.choices__inner:focus-within {
    border-color: #C9A22B;
    box-shadow: 0 0 0 2px rgba(201, 162, 43, 0.2);
}

.choices__list--dropdown {
    font-size: 1rem;
    border-radius: 0 0 6px 6px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15); /* Better shadow for mobile */
}

.choices__item--choice {
    padding: 12px 16px; /* Better touch targets */
    transition: background-color 0.2s ease;
}

.choices__item--choice:hover,
.choices__item--choice.is-highlighted {
    background-color: #C9A22B !important;
    color: #fff !important;
}

/* Ensure select width is 100% in filter groups */
.filter-group .choices {
    width: 100%;
}
