#quick-search
{
    z-index: 99;
}

/* Show-detail trailer: subtle film grain (CSS-only noise) */
.trailer-film-grain {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.14;
    mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ── Mobile menu ── */
#mobile-menu {
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

    #mobile-menu.open {
        transform: translateY(0);
    }

/* ── Mobile accordion panel (JS sets max-height) ── */
.mobile-dropdown-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-base);
}

.arrow-icon {
    transition: transform var(--transition-base);
}