/* =============================================================================
 * Acacia Mobile Home — Scoped Styles
 * All selectors are prefixed with .ac-home to prevent leaking into the theme.
 * Production-ready CSS, no Tailwind CDN, no build dependency.
 * =============================================================================*/

/* ——— Design Tokens ——————————————————————————————————————————————————————————— */
.ac-home {
    --ac-primary:        #c19c52;
    --ac-primary-dk:     #9a7b3e;
    --ac-primary-glow:   rgba(193,156,82,.18);
    --ac-bg:             #010101;
    --ac-surface:        #0f0f0f;
    --ac-surface-2:      #161616;
    --ac-border:         #222222;
    --ac-border-light:   rgba(255,255,255,.15);
    --ac-text:           #f0f0f0;
    --ac-text-muted:     #888888;
    --ac-text-faint:     #555555;
    --ac-wa:             #25D366;
    --ac-wa-dk:          #1aab52;
    --ac-radius-sm:      8px;
    --ac-radius:         14px;
    --ac-radius-lg:      20px;
    --ac-padding:        15px;
    --ac-header-h:       60px;
    --ac-bottom-nav-h:   64px;
    --ac-transition:     .22s cubic-bezier(.4,0,.2,1);
    font-family: 'Tajawal', 'Segoe UI', Arial, sans-serif;
    direction: rtl;
}

/* ——— Google Font import (safe, non-blocking) ——————————————————————————————— */
@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@300;400;500;700;900&display=swap');

/* ——— Scoped Reset ———————————————————————————————————————————————————————————— */
.ac-home *, .ac-home *::before, .ac-home *::after {
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.ac-home {
    margin: 0 !important;
    padding: 0 !important;
    background: var(--ac-bg);
    color: var(--ac-text);
    min-height: 100vh;
    overflow-x: hidden !important;
    width: 100%;
}
html {
    overflow-x: hidden !important;
    margin: 0 !important;
    padding: 0 !important;
    width: 100%;
}
.ac-home a {
    color: inherit;
    text-decoration: none;
}
.ac-home img {
    display: block;
    max-width: 100%;
    height: auto;
}
.ac-home h1, .ac-home h2, .ac-home h3 {
    margin: 0;
    font-weight: 700;
    line-height: 1.3;
}
.ac-home p { margin: 0; }
.ac-home button {
    cursor: pointer;
    border: none;
    background: none;
    padding: 0;
    font: inherit;
    color: inherit;
}

/* ——— HEADER ——————————————————————————————————————————————————————————————————— */
.ac-home .ac-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 900;
    height: var(--ac-header-h);
    background: transparent;
    transition: background var(--ac-transition), box-shadow var(--ac-transition);
    will-change: background;
}
.ac-home .ac-header--scrolled {
    background: rgba(1,1,1,.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 1px 0 var(--ac-border);
}
.ac-home .ac-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding: 0 12px;
    position: relative;
}
.ac-home .ac-header-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: var(--ac-radius-sm);
    color: var(--ac-text);
    flex-shrink: 0;
    transition: background var(--ac-transition);
    z-index: 2;
}
.ac-home .ac-header-menu:hover {
    background: var(--ac-primary-glow);
}
.ac-home .ac-header-logo {
    position: absolute !important;
    left: 50% !important;
    top: 50% !important;
    transform: translate(-50%, -50%) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    pointer-events: auto;
    width: auto;
}
.ac-home .ac-header-logo img {
    max-height: 38px;
    width: auto;
}
.ac-home .ac-header-ctas {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    z-index: 2;
}
.ac-home .ac-header-brand {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--ac-primary);
    letter-spacing: .5px;
}
.ac-home .ac-header-ctas {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.ac-home .ac-card-skeleton {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.ac-home .ac-card-skeleton .sk-img {
    aspect-ratio: 16/11;
    border-radius: var(--ac-radius);
    width: 100%;
}
.ac-home .ac-card-skeleton .sk-text {
    padding: 0 12px 14px;
}
.ac-home .ac-card-skeleton .sk-title {
    height: 18px;
    width: 70%;
    margin-bottom: 10px;
}
.ac-home .ac-card-skeleton .sk-meta {
    height: 14px;
    width: 40%;
}

/* ——— BUTTONS ——————————————————————————————————————————————————————————————— */
.ac-home .ac-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 9px 18px;
    border-radius: 100px;
    font-size: .9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--ac-transition);
    white-space: nowrap;
    letter-spacing: .3px;
}
.ac-home .ac-btn--primary {
    background: var(--ac-primary);
    color: #000;
}
.ac-home .ac-btn--primary:hover,
.ac-home .ac-btn--primary:focus-visible {
    background: var(--ac-primary-dk);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px var(--ac-primary-glow);
}
.ac-home .ac-btn--outline {
    background: transparent;
    color: var(--ac-text);
    border: 1.5px solid var(--ac-border-light);
}
.ac-home .ac-btn--outline:hover,
.ac-home .ac-btn--outline:focus-visible {
    border-color: var(--ac-primary);
    color: var(--ac-primary);
    background: var(--ac-primary-glow);
}
.ac-home .ac-btn--wa {
    background: var(--ac-wa);
    color: #fff;
}
.ac-home .ac-btn--wa:hover,
.ac-home .ac-btn--wa:focus-visible {
    background: var(--ac-wa-dk);
    transform: translateY(-1px);
}
.ac-home .ac-btn--icon {
    padding: 9px;
    aspect-ratio: 1;
}
.ac-home .ac-btn--lg {
    padding: 13px 26px;
    font-size: 1rem;
    border-radius: 100px;
}

/* ——— MOBILE NAV OVERLAY —————————————————————————————————————————————————— */
.ac-home .ac-nav-overlay {
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(0,0,0,.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--ac-transition);
}
.ac-home .ac-nav-overlay:not([hidden]) {
    opacity: 1;
    pointer-events: all;
}
.ac-home .ac-nav-overlay[hidden] {
    display: block !important; /* override default hidden so CSS opacity transition works */
    opacity: 0;
    pointer-events: none;
}
.ac-home .ac-nav-panel {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(320px, 85vw);
    background: var(--ac-surface);
    border-left: 1px solid var(--ac-border);
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform var(--ac-transition);
    overflow-y: auto;
}
.ac-home .ac-nav-overlay:not([hidden]) .ac-nav-panel {
    transform: translateX(0);
}
.ac-home .ac-nav-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid var(--ac-border);
    gap: 12px;
}
.ac-home .ac-nav-logo {
    max-width: 110px;
    max-height: 36px;
    object-fit: contain;
}
.ac-home .ac-nav-brand {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--ac-primary);
}
.ac-home .ac-nav-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: var(--ac-text-muted);
    transition: background var(--ac-transition), color var(--ac-transition);
}
.ac-home .ac-nav-close:hover { background: var(--ac-surface-2); color: var(--ac-text); }
.ac-home .ac-nav-links {
    flex: 1;
    padding: 12px 0;
    display: flex;
    flex-direction: column;
}
.ac-home .ac-nav-links a,
.ac-home .ac-nav-links .ac-nav-link {
    display: block;
    padding: 14px 24px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--ac-text);
    border-bottom: 1px solid var(--ac-border);
    transition: background var(--ac-transition), color var(--ac-transition);
}
.ac-home .ac-nav-links a:hover,
.ac-home .ac-nav-links .ac-nav-link:hover {
    background: var(--ac-surface-2);
    color: var(--ac-primary);
}
.ac-home .ac-nav-footer {
    padding: 20px;
    border-top: 1px solid var(--ac-border);
}
.ac-home .ac-nav-footer .ac-btn {
    width: 100%;
    justify-content: center;
}

/* ——— HERO ————————————————————————————————————————————————————————————————— */
.ac-home .ac-hero {
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: var(--ac-header-h);
}
.ac-home .ac-hero-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(160deg, rgba(193,156,82,.12) 0%, transparent 50%),
        linear-gradient(180deg, rgba(1,1,1,.4) 0%, rgba(1,1,1,.85) 60%, #010101 100%),
        url('https://i0.wp.com/acaciaevent.com/wp-content/uploads/2021/05/slide4.jpg') center/cover no-repeat;
    z-index: 0;
}
.ac-home .ac-hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 10px 20px 30px;
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
}
.ac-home .ac-hero-eyebrow {
    font-size: .8rem;
    font-weight: 500;
    color: var(--ac-primary);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 14px;
}
.ac-home .ac-hero-title {
    font-size: clamp(2.2rem, 9vw, 3.4rem);
    font-weight: 900;
    line-height: 1.25;
    color: var(--ac-text);
    margin-bottom: 24px;
}
.ac-home .ac-highlight {
    color: var(--ac-primary);
    display: inline-block;
    position: relative;
    text-shadow: 0 0 20px rgba(193, 156, 82, 0.2);
}
.ac-home .ac-hero-desc {
    font-size: 1rem;
    color: var(--ac-text-muted);
    margin-bottom: 32px;
    line-height: 1.6;
}
.ac-home .ac-hero-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}
.ac-home .ac-hero-chips {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

/* ——— CHIPS ———————————————————————————————————————————————————————————————— */
.ac-home .ac-chip {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    border-radius: 100px;
    border: 1.5px solid var(--ac-primary);
    color: var(--ac-primary);
    font-size: .82rem;
    font-weight: 600;
    background: var(--ac-primary-glow);
    transition: all var(--ac-transition);
    cursor: pointer;
    white-space: nowrap;
}
.ac-home .ac-chip:hover,
.ac-home .ac-chip:focus-visible {
    background: var(--ac-primary);
    color: #000;
    transform: translateY(-1px);
}

/* ——— SECTION SHELLS ——————————————————————————————————————————————————————— */
.ac-home .ac-section {
    padding: 36px 0 20px;
}
.ac-home .ac-section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
    margin-bottom: 18px;
    gap: 12px;
}
.ac-home .ac-section-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--ac-text);
    display: flex;
    align-items: center;
    gap: 8px;
}
.ac-home .ac-section-badge {
    font-size: .72rem;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 100px;
    background: var(--ac-primary-glow);
    color: var(--ac-primary);
    border: 1px solid var(--ac-primary);
    margin-right: 4px;
}
.ac-home .ac-section-more {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: .82rem;
    font-weight: 600;
    color: var(--ac-primary);
    white-space: nowrap;
    transition: color var(--ac-transition);
}
.ac-home .ac-section-more:hover { color: var(--ac-primary-dk); }

/* ——— SCROLL ROW (horizontal scroll) ——————————————————————————————————————— */
.ac-home .ac-scroll-nav {
    position: relative;
    display: flex;
    align-items: center;
}
.ac-home .ac-scroll-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    cursor: pointer;
    transition: all var(--ac-transition);
    z-index: 100;
    position: absolute;
    top: 50%;
    box-shadow: 0 8px 32px rgba(0,0,0,0.5);
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
}
.ac-home .ac-scroll-btn svg {
    width: 24px;
    height: 24px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
}
.ac-home .ac-scroll-btn:hover {
    background: var(--ac-primary);
    border-color: var(--ac-primary);
    color: #000;
}
.ac-home .ac-scroll-btn--prev { 
    left: 8px; 
    transform: translateY(-50%) rotate(180deg);
}
.ac-home .ac-scroll-btn--next { 
    right: 8px; 
    transform: translateY(-50%);
}
.ac-home .ac-scroll-nav .ac-scroll-row {
    flex: 1;
    min-width: 0;
}
.ac-home .ac-scroll-row {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    padding: 4px 16px 16px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.ac-home .ac-scroll-row::-webkit-scrollbar { display: none; }
.ac-home .ac-scroll-row .ac-card {
    flex-shrink: 0;
    width: 220px;
    scroll-snap-align: start;
}

/* ——— GRID ROW (2 columns) —————————————————————————————————————————————————— */
.ac-home .ac-grid-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 0 16px 16px;
}
.ac-home .ac-grid-row .ac-card {
    width: 100%;
}
.ac-home .ac-grid-row .ac-card-title {
    font-size: .82rem; /* Slightly smaller for 2-col grid */
}

/* ——— CHIP ROW ————————————————————————————————————————————————————————————— */
.ac-home .ac-chip-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    padding: 0 16px;
}

/* ——— GRID (Venue sections) ———————————————————————————————————————————————— */
.ac-home .ac-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    padding: 0 16px;
}

/* ——— CARDS ———————————————————————————————————————————————————————————————— */
.ac-home .ac-card {
    background: var(--ac-surface);
    border-radius: var(--ac-radius);
    border: 1px solid var(--ac-border);
    overflow: hidden;
    box-shadow: var(--ac-shadow-card);
    transition: transform var(--ac-transition), box-shadow var(--ac-transition);
}
.ac-home .ac-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(0,0,0,.7);
}
.ac-home .ac-card-link {
    display: flex;
    flex-direction: column;
    height: 100%;
}
.ac-home .ac-card-img-wrap {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: var(--ac-surface-2);
}
.ac-home .ac-card--offer .ac-card-img-wrap {
    aspect-ratio: 16/11;
}
.ac-home .ac-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}
.ac-home .ac-card:hover .ac-card-img {
    transform: scale(1.04);
}
.ac-home .ac-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: .7rem;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 100px;
    letter-spacing: .5px;
    text-transform: uppercase;
}
.ac-home .ac-badge--offer {
    background: var(--ac-primary);
    color: #000;
}
.ac-home .ac-badge--featured {
    background: linear-gradient(135deg, #c19c52, #f5d98b);
    color: #000;
    font-weight: 800;
}
.ac-home .ac-card-body {
    padding: 10px 12px 14px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.ac-home .ac-card-title {
    font-size: .88rem;
    font-weight: 700;
    color: var(--ac-text);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4;
}
.ac-home .ac-card-meta {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: .76rem;
    color: var(--ac-text-muted);
}
.ac-home .ac-card-meta svg {
    flex-shrink: 0;
    color: var(--ac-primary);
    opacity: .8;
}

/* ——— EMPTY STATE ——————————————————————————————————————————————————————————— */
.ac-home .ac-empty {
    padding: 20px 16px;
    color: var(--ac-text-faint);
    font-size: .9rem;
    text-align: center;
}

/* ——— BOTTOM NAV ————————————————————————————————————————————————————————— */
.ac-home .ac-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: var(--ac-bottom-nav-h);
    background: rgba(10,10,10,.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid var(--ac-border);
    display: flex;
    align-items: stretch;
    z-index: 800;
    padding-bottom: env(safe-area-inset-bottom, 0);
}
.ac-home .ac-bottom-nav-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 8px 4px;
    color: var(--ac-text-faint);
    font-size: .65rem;
    font-weight: 600;
    letter-spacing: .5px;
    transition: color var(--ac-transition);
    min-width: 44px;
}
.ac-home .ac-bottom-nav-item:hover {
    color: var(--ac-text-muted);
}
.ac-home .ac-bottom-nav-item--active {
    color: var(--ac-primary);
}
.ac-home .ac-bottom-nav-item svg {
    width: 22px;
    height: 22px;
    stroke-width: 1.8;
}
.ac-home .ac-bottom-spacer {
    height: calc(var(--ac-bottom-nav-h) + env(safe-area-inset-bottom, 0));
}

/* ——— DESKTOP ENHANCEMENTS (768px+) ——————————————————————————————————————— */
@media (min-width: 768px) {
    .ac-home .ac-hero-content {
        text-align: right;
        padding: 80px 48px 120px;
        max-width: 640px;
        margin: 0;
    }
    .ac-home .ac-hero-actions {
        justify-content: flex-start;
    }
    .ac-home .ac-hero-chips {
        justify-content: flex-start;
    }
    .ac-home .ac-scroll-btn {
        display: flex; /* show arrows on desktop */
    }
    .ac-home .ac-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
        padding: 0 24px;
    }
    .ac-home .ac-section {
        padding: 48px 0 24px;
    }
    .ac-home .ac-section-head {
        padding: 0 24px;
        margin-bottom: 24px;
    }
    .ac-home .ac-section-title {
        font-size: 1.3rem;
    }
    .ac-home .ac-chip-row {
        padding: 0 24px;
    }
    .ac-home .ac-scroll-row {
        padding: 4px 24px 20px;
    }
    .ac-home .ac-scroll-row .ac-card {
        width: 260px;
    }
    .ac-home .ac-bottom-nav {
        display: none; /* show proper nav on desktop via header */
    }
    .ac-home .ac-bottom-spacer {
        display: none;
    }
    .ac-home .ac-header--scrolled {
        background: rgba(1,1,1,.97);
    }
}

/* ——— ANIMATIONS & REVEALS ————————————————————————————————————————————— */
.ac-home .ac-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .6s cubic-bezier(.4, 0, .2, 1), transform .6s cubic-bezier(.4, 0, .2, 1);
    will-change: opacity, transform;
}
.ac-home .ac-reveal--active {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* ——— FOCUS VISIBLE (Accessibility) ————————————————————————————————————— */
.ac-home *:focus-visible {
    outline: 2px solid var(--ac-primary);
    outline-offset: 2px;
    border-radius: 4px;
}

/* ——— VENUE DETAIL DRAWER ——————————————————————————————————————————————— */
.ac-home .ac-drawer {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: block !important; /* always in DOM — visibility via hidden attr */
    pointer-events: none;
}
.ac-home .ac-drawer:not([hidden]) {
    pointer-events: all;
}
.ac-home .ac-drawer-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.65);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    opacity: 0;
    transition: opacity .32s ease;
    pointer-events: none;
}
.ac-home .ac-drawer:not([hidden]) .ac-drawer-backdrop {
    opacity: 1;
    pointer-events: all;
}
.ac-home .ac-drawer-sheet {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    max-height: 92svh;
    max-height: 92vh;
    background: var(--ac-surface);
    border-radius: 20px 20px 0 0;
    display: flex;
    flex-direction: column;
    transform: translateY(100%);
    transition: transform .32s cubic-bezier(.4, 0, .2, 1);
    overflow: hidden;
    will-change: transform;
}
.ac-home .ac-drawer-sheet--open {
    transform: translateY(0);
    pointer-events: all;
}
.ac-home .ac-drawer-handle {
    width: 40px;
    height: 4px;
    border-radius: 2px;
    background: var(--ac-border-light);
    margin: 10px auto 6px;
    flex-shrink: 0;
    cursor: grab;
}
.ac-home .ac-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 16px 12px;
    border-bottom: 1px solid var(--ac-border);
    flex-shrink: 0;
    gap: 10px;
}
.ac-home .ac-drawer-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--ac-text);
    line-height: 1.3;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.ac-home .ac-drawer-close {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    color: var(--ac-text-muted);
    transition: background var(--ac-transition), color var(--ac-transition);
}
.ac-home .ac-drawer-close:hover { background: var(--ac-surface-2); color: var(--ac-text); }
.ac-home .ac-drawer-body {
    flex: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    padding-bottom: env(safe-area-inset-bottom, 0);
}
/* Loading / Skeletons */
.ac-home .ac-skeleton {
    background: var(--ac-surface-2);
    background-image: linear-gradient(
        90deg, 
        transparent 0%, 
        rgba(255,255,255,.05) 50%, 
        transparent 100%
    );
    background-size: 200% 100%;
    animation: ac-shimmer 1.5s infinite linear;
    border-radius: var(--ac-radius-sm);
}
@keyframes ac-shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.ac-home .ac-drawer-loading {
    display: flex;
    flex-direction: column;
    padding: 0;
    gap: 0;
}
.ac-home .ac-drawer-loading .sk-gallery {
    width: 100%;
    height: 280px;
    border-radius: 0;
}
.ac-home .ac-drawer-loading .sk-body {
    padding: 20px;
}
.ac-home .ac-drawer-loading .sk-title {
    height: 28px;
    width: 80%;
    margin-bottom: 16px;
}
.ac-home .ac-drawer-loading .sk-line {
    height: 14px;
    width: 100%;
    margin-bottom: 10px;
}
.ac-home .ac-drawer-loading .sk-line.short { width: 60%; }

.ac-home .ac-spinner {
    display: none; /* replaced by skeletons */
}
@keyframes ac-spin { to { transform: rotate(360deg); } }
/* Gallery */
.ac-home .ac-drawer-gallery {
    position: relative;
    background: #000;
    flex-shrink: 0;
    overflow: hidden;
}
.ac-home .ac-drawer-gallery-track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    will-change: scroll-position;
}
.ac-home .ac-drawer-gallery-track::-webkit-scrollbar { display: none; }
.ac-home .ac-drawer-gallery-slide {
    flex: 0 0 100%;
    width: 100%;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    will-change: transform;
}
.ac-home .ac-drawer-gallery-slide img {
    width: 100%;
    height: 280px; /* slightly taller for better mobile visual */
    object-fit: cover;
    display: block;
    user-select: none;
    -webkit-user-drag: none;
}
.ac-home .ac-drawer-gallery-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    padding: 8px 0;
    background: linear-gradient(transparent, rgba(0,0,0,.6));
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}
.ac-home .ac-drawer-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255,255,255,.35);
    transition: all var(--ac-transition);
    padding: 0;
    cursor: pointer;
}
.ac-home .ac-drawer-dot.ac-active {
    background: var(--ac-primary);
    width: 18px;
    border-radius: 3px;
}
/* Info */
.ac-home .ac-drawer-info {
    padding: 16px;
    border-bottom: 1px solid var(--ac-border);
}
.ac-home .ac-drawer-cats {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 12px;
}
.ac-home .ac-drawer-location {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .88rem;
    color: var(--ac-text-muted);
    margin-bottom: 8px;
}
.ac-home .ac-drawer-meta-row {
    font-size: .85rem;
    color: var(--ac-text-muted);
    margin-bottom: 6px;
}
.ac-home .ac-drawer-desc {
    font-size: .9rem;
    line-height: 1.75;
    color: var(--ac-text-muted);
    margin-top: 14px;
    white-space: pre-line;
}
/* Video embed */
.ac-home .ac-drawer-video {
    position: relative;
    padding-top: 56.25%;
    background: #000;
    border-top: 1px solid var(--ac-border);
}
.ac-home .ac-drawer-video iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
/* CTAs */
.ac-home .ac-drawer-footer {
    display: flex;
    gap: 10px;
    padding: 16px;
    background: var(--ac-surface);
    border-top: 1px solid var(--ac-border);
    flex-shrink: 0;
    position: relative;
    z-index: 10;
    box-shadow: 0 -10px 20px rgba(0,0,0,0.3);
}
.ac-home .ac-drawer-ctas {
    display: flex;
    gap: 10px;
    width: 100%;
}
.ac-home .ac-drawer-footer .ac-btn {
    flex: 1;
    min-width: 120px;
    justify-content: center;
}
/* Section title inside drawer (chips) use existing .ac-chip */

/* ——— FILTER BAR ——————————————————————————————————————————————————————————— */
.ac-home .ac-filter-bar {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 16px;
    background: var(--ac-surface-2);
    border-radius: var(--ac-radius);
    margin-bottom: 24px;
    border: 1px solid var(--ac-border);
}
.ac-home .ac-filter-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.ac-home .ac-filter-label {
    font-size: .8rem;
    font-weight: 600;
    color: var(--ac-text-muted);
    margin-right: 4px;
}
.ac-home .ac-filter-select {
    width: 100%;
    padding: 12px 14px;
    border-radius: var(--ac-radius-sm);
    background: var(--ac-bg);
    border: 1.5px solid var(--ac-border);
    color: var(--ac-text);
    font-size: .95rem;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23c19c52' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: left 12px center;
    transition: border-color var(--ac-transition);
}
.ac-home .ac-filter-select:focus {
    border-color: var(--ac-primary);
    outline: none;
}

/* ——— FILTER RESULTS ——————————————————————————————————————————————————————— */
.ac-home .ac-filter-results {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    min-height: 200px;
    position: relative;
    transition: opacity .3s ease;
}
.ac-home .ac-filter-results.ac-loading {
    opacity: .5;
    pointer-events: none;
}
.ac-home .ac-filter-placeholder,
.ac-home .ac-no-results {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px 20px;
    color: var(--ac-text-muted);
    background: var(--ac-surface);
    border-radius: var(--ac-radius);
    border: 1px dashed var(--ac-border);
}

.ac-home .ac-filter-results .ac-card {
    margin-bottom: 0; /* Override default if needed */
}

/* ——— COLLAPSIBLE SECTIONS ————————————————————————————————————————————— */
.ac-home .ac-collapse-toggle {
    cursor: pointer;
    user-select: none;
    background: rgba(255,255,255,0.03);
    margin: 0 !important;
    padding: 16px !important;
    border-top: 1px solid var(--ac-border-light);
    border-bottom: 1px solid var(--ac-border-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.ac-home .ac-collapse-icon {
    transition: transform 0.3s ease;
    display: flex;
}
.ac-home .ac-collapse-icon svg {
    transform: rotate(90deg);
}
.ac-home .ac-collapsible.ac-is-active .ac-collapse-icon svg {
    transform: rotate(270deg);
}
.ac-home .ac-collapse-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: rgba(0,0,0,0.1);
}
.ac-home .ac-collapsible.ac-is-active .ac-collapse-content {
    max-height: 2500px !important;
    padding-top: 20px;
    padding-bottom: 30px;
    overflow: visible;
}
.ac-home .ac-collapsible.ac-is-active .ac-collapse-toggle {
    background: rgba(255,255,255,0.05);
}

/* ——— FOOTER ————————————————————————————————————————————— */
.ac-footer {
    background: #0a0a0a;
    padding: 40px 20px 20px;
    border-top: 1px solid var(--ac-border-light);
    color: #999;
}
.ac-footer-section {
    margin-bottom: 30px;
}
.ac-footer-title {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}
.ac-footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.ac-footer-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #bbb;
    text-decoration: none;
    font-size: 15px;
}
.ac-footer-link svg {
    color: var(--ac-gold);
}
.ac-footer-social {
    display: flex;
    gap: 15px;
}
.ac-social-btn {
    width: 44px;
    height: 44px;
    background: #1a1a1a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: transform 0.2s ease, background 0.2s ease;
}
.ac-social-btn:active {
    transform: scale(0.9);
}
.ac-social-btn.fb:active { background: #1877f2; }
.ac-social-btn.ig:active { background: #e4405f; }
.ac-social-btn.wa:active { background: #25d366; }

.ac-footer-map {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #1a1a1a;
    padding: 12px 15px;
    border-radius: 12px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    border: 1px solid rgba(255,215,0,0.1);
}
.ac-footer-map svg {
    color: var(--ac-gold);
}
.ac-footer-bottom {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.05);
    text-align: center;
    font-size: 12px;
    color: #666;
}


