:root {
    /* Palette: light sky blue, deep sky blue, dark navy, gold */
    --bg: #0F1D36;
    --bg-card: #152642;
    --bg-elevated: #1a2d4a;
    --surface: rgba(145, 223, 255, 0.06);
    --border: rgba(145, 223, 255, 0.12);
    --accent: #00BFFF;
    --accent-light: #91DFFF;
    --accent-glow: rgba(0, 191, 255, 0.3);
    --gold: #F9C850;
    --gold-dim: rgba(249, 200, 80, 0.85);
    --text: #f0f4f8;
    --text-muted: #91DFFF;
    --text-muted-opacity: rgba(145, 223, 255, 0.75);
    --radius: 16px;
    --radius-sm: 10px;
    --bg-page: #0d1b2e;
    --bg-navbar: #0a1628;
    --bg-filter: #f5f5f5;
    --bg-card-hover: #1f3150;
    --accent-cyan: #00e5d1;
    --accent-cyan-dk: #00b8a8;
    --text-primary: #ffffff;
    --text-secondary: #9aacbf;
    --text-dark: #1a2a42;
    --border-color: #2a3f5f;
    --rating-m18: #b85200;
    --rating-r21: #cc0000;
    --rating-nc16: #876100;
    --rating-pg13: #2980b9;
    --rating-pg: #1a7a42;
    --rating-g: #8e44ad;
    --font-main: 'Segoe UI', system-ui, -apple-system, sans-serif;
    --font: 'Outfit', system-ui, sans-serif;
    --font-display: 'Syne', sans-serif;
    --navbar-height: 72.05px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    padding-top: var(--navbar-height);
    margin: 0;
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Header – glass, minimal */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(15, 29, 54, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

body.search-open {
    overflow: hidden;
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.9rem 1.5rem;
    position: relative;
}

.logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.logo span {
    color: var(--gold);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.main-nav a {
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-muted-opacity);
    transition: color 0.2s;
}

.main-nav a:hover {
    color: var(--accent-light);
}

.main-nav a.active {
    color: var(--text-primary);
    border: 1.5px solid var(--accent-light);
    border-radius: 6px;
    padding: 6px 14px;
}

.nav-search {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
    margin: 0;
    padding: 0.5rem 1rem;
    width: auto;
    min-width: auto;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 6px;
    color: var(--text-muted-opacity);
    font-size: 0.9rem;
    font-family: var(--font);
    cursor: pointer;
    box-shadow: none;
    transition: color 0.18s ease, background-color 0.18s ease, transform 0.18s ease, opacity 0.18s ease;
}

.nav-search:hover {
    border-color: var(--accent);
    color: var(--accent-light);
    background: rgba(145, 223, 255, 0.08);
}

.nav-search-trigger-icon {
    width: 1rem;
    height: 1rem;
    stroke: currentColor;
    display: block;
}

.nav-search-wrap {
    display: inline-flex;
    align-items: center;
}

.nav-search-panel {
    flex-basis: 100%;
    width: 100%;
    padding: 0.85rem;
    margin-top: -0.15rem;
    background:
        radial-gradient(circle at top right, rgba(0, 191, 255, 0.12), transparent 35%),
        linear-gradient(180deg, rgba(12, 24, 43, 0.98) 0%, rgba(8, 17, 33, 0.99) 100%);
    border: 1px solid rgba(145, 223, 255, 0.14);
    border-radius: 0.95rem;
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.34);
    opacity: 1;
    transform: translateY(0) scale(1);
    transition:
        opacity 0.34s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.46s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.34s ease;
    transform-origin: top center;
    will-change: transform, opacity;
}

.nav-search-panel.is-hidden {
    opacity: 0;
    transform: translateY(-28px) scale(0.975);
    pointer-events: none;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.16);
}

.nav-search-backdrop {
    position: fixed;
    inset: 0;
    z-index: 90;
    background: linear-gradient(180deg, rgba(7, 15, 29, 0.14) 0%, rgba(7, 15, 29, 0.38) 30%, rgba(7, 15, 29, 0.54) 100%);
    backdrop-filter: blur(12px) saturate(0.9);
    -webkit-backdrop-filter: blur(12px) saturate(0.9);
    opacity: 1;
    transition: opacity 0.3s ease;
}

.nav-search-backdrop.is-hidden {
    opacity: 0;
    pointer-events: none;
}

.nav-search-form {
    margin: 0;
    transition:
        opacity 0.28s ease,
        transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-search-input-shell {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.15rem 0.2rem 0.15rem 0.9rem;
    background: linear-gradient(180deg, rgba(24, 39, 65, 0.96) 0%, rgba(15, 28, 49, 0.98) 100%);
    border: 1px solid rgba(145, 223, 255, 0.24);
    border-radius: 999px;
    box-shadow: inset 0 0 0 1px rgba(0, 191, 255, 0.12), 0 12px 28px rgba(0, 0, 0, 0.22);
}

.nav-search-input-icon {
    font-size: 1.1rem;
    color: var(--accent-light);
    opacity: 0.95;
}

.nav-search-input {
    width: 100%;
    padding: 0.95rem 0.95rem 0.95rem 0;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: var(--text-primary);
    font: inherit;
    font-size: 1rem;
    font-weight: 500;
}

.nav-search-input::placeholder {
    color: rgba(240, 244, 248, 0.45);
}

.nav-search-input:focus {
    outline: none;
}

.nav-search-results {
    display: grid;
    gap: 0;
    margin-top: 0.7rem;
    max-height: 300px;
    overflow-y: auto;
    border-radius: 0.85rem;
    background: rgba(10, 21, 39, 0.55);
    border: 1px solid rgba(145, 223, 255, 0.08);
    transition:
        opacity 0.3s ease,
        transform 0.42s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-search-panel.is-hidden .nav-search-form,
.nav-search-panel.is-hidden .nav-search-results {
    opacity: 0;
    transform: translateY(-10px);
}

.nav-search-panel:not(.is-hidden) .nav-search-form,
.nav-search-panel:not(.is-hidden) .nav-search-results {
    opacity: 1;
    transform: translateY(0);
}

.nav-search-result-item,
.nav-search-empty {
    display: grid;
    gap: 0.15rem;
    padding: 0.7rem 0.9rem;
    border-bottom: 1px solid rgba(145, 223, 255, 0.08);
    background: transparent;
    color: #dff4ff;
    line-height: 1.35;
    transition: background 0.18s ease, color 0.18s ease, transform 0.2s ease;
}

.nav-search-result-item:last-child,
.nav-search-empty:last-child {
    border-bottom: 0;
}

.nav-search-result-label {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(145, 223, 255, 0.62);
}

.nav-search-result-title {
    font-size: 0.92rem;
    font-weight: 600;
    color: #edf8ff;
}

.nav-search-result-item:hover,
.nav-search-result-item.is-active {
    color: #ffffff;
    background: rgba(145, 223, 255, 0.1);
    transform: translateX(3px);
}

.nav-search-result-item:hover .nav-search-result-label,
.nav-search-result-item.is-active .nav-search-result-label {
    color: rgba(255, 255, 255, 0.72);
}

.nav-search-empty {
    padding-block: 0.85rem;
    color: rgba(223, 244, 255, 0.72);
}

.nav-search-result-item--view-all .nav-search-result-title {
    color: var(--accent-light);
}

.nav-search-results::-webkit-scrollbar {
    width: 8px;
}

.nav-search-results::-webkit-scrollbar-thumb {
    background: rgba(145, 223, 255, 0.2);
    border-radius: 999px;
}

.nav-search-results::-webkit-scrollbar-track {
    background: transparent;
}

.main-nav .nav-cta {
    padding: 0.5rem 1.25rem;
    border-radius: 6px;
    background: var(--accent);
    color: #00183E;
    font-weight: 600;
}

.main-nav .nav-cta:hover {
    background: color-mix(in srgb, var(--accent) 80%, black);
    transform: translateY(-1px);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}

.menu-toggle span {
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 1px;
}

@media (max-width: 768px) {
    .header-inner {
        padding: 0.9rem 1rem;
        gap: 0.75rem 1rem;
    }

    .logo {
        font-size: 1.3rem;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
        padding: 1rem;
        max-height: calc(100vh - 72px);
        overflow-y: auto;
        background: rgba(10, 22, 40, 0.96);
        backdrop-filter: blur(20px);
        border-bottom: 1px solid var(--border);
        box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
    }

    .main-nav.is-open {
        display: flex;
    }

    .main-nav a,
    .main-nav .nav-search-wrap,
    .main-nav .nav-cta {
        width: 100%;
    }

    .main-nav a {
        font-size: 0.95rem;
    }

    .main-nav a.active {
        display: block;
        text-align: center;
        padding: 0.75rem 1rem;
    }

    .nav-search {
        width: 100%;
        justify-content: center;
        padding: 0.75rem 1rem;
    }

    .main-nav .nav-cta {
        justify-content: center;
        text-align: center;
        padding: 0.8rem 1rem;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-search span {
        display: inline-block;
    }

    .nav-search-panel {
        margin-top: 0;
        order: 3;
        padding: 0.75rem;
    }

    .nav-search-input-shell {
        padding-left: 0.75rem;
    }

    .nav-search-input {
        font-size: 0.95rem;
        padding-block: 0.85rem;
    }
}

@media (max-width: 576px) {
    .header-inner {
        padding: 0.8rem 0.9rem;
    }

    .logo {
        font-size: 1.2rem;
    }

    .main-nav {
        padding: 0.85rem;
    }

    .nav-search-panel {
        padding: 0.65rem;
        border-radius: 0.8rem;
    }

    .nav-search-results {
        max-height: 240px;
    }
}

.main-content {
    padding-top: 0;
}

body.page-checkout {
    min-height: 100vh;
    background:
        radial-gradient(circle at top left, rgba(0, 191, 255, 0.18), transparent 32%),
        radial-gradient(circle at top right, rgba(249, 200, 80, 0.18), transparent 28%),
        linear-gradient(180deg, #0d1b2e 0%, #0f1d36 100%);
}

.checkout-shell {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1.5rem 4rem;
}

.checkout-wrapper {
    max-width: 1040px;
    margin: 0 auto;
}

.checkout-header {
    text-align: center;
    margin-bottom: 2rem;
}

.checkout-header h1 {
    margin: 0 0 0.75rem;
    font-family: var(--font-display);
    font-size: clamp(2.3rem, 5vw, 3.6rem);
    font-weight: 800;
    letter-spacing: -0.04em;
}

.checkout-header p {
    margin: 0;
    color: var(--text-muted);
    font-size: 1rem;
}

.checkout-card {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
        var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 24px;
    box-shadow: 0 24px 60px rgba(4, 10, 20, 0.34);
}

.checkout-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(0, 191, 255, 0.12), transparent 30%);
    pointer-events: none;
}

.checkout-card > * {
    position: relative;
    z-index: 1;
}

.checkout-card .card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.5rem 1.75rem;
    background: linear-gradient(135deg, rgba(0, 191, 255, 0.16), rgba(249, 200, 80, 0.12));
    border-bottom: 1px solid var(--border);
}

.checkout-card .card-header h3 {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin: 0;
    font-size: 1.2rem;
    font-weight: 700;
}

.checkout-card .card-body {
    padding: 1.75rem;
}

.cart-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.4rem 0.8rem;
    border-radius: 999px;
    background: rgba(249, 200, 80, 0.14);
    border: 1px solid rgba(249, 200, 80, 0.28);
    color: var(--gold);
    font-size: 0.82rem;
    font-weight: 700;
}

.row-custom {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(300px, 1fr);
    gap: 1.5rem;
}

.cart-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cart-item,
.summary-section,
.payment-section {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
}

.cart-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1rem;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.cart-item:hover {
    transform: translateY(-2px);
    border-color: rgba(145, 223, 255, 0.24);
    box-shadow: 0 18px 34px rgba(7, 15, 29, 0.2);
}

.cart-item img {
    width: 84px;
    height: 112px;
    object-fit: cover;
    border-radius: 14px;
    border: 1px solid rgba(145, 223, 255, 0.18);
}

.cart-item-details {
    flex: 1;
}

.cart-item-title {
    margin-bottom: 0.45rem;
    font-size: 1.15rem;
    font-weight: 700;
}

.cart-item-details .text-muted {
    color: var(--text-muted) !important;
    line-height: 1.7;
}

.cart-item-price {
    margin-top: 0.75rem;
    color: var(--gold);
    font-weight: 700;
    font-size: 1.15rem;
}

.summary-section,
.payment-section {
    padding: 1.35rem;
}

.summary-section h5,
.payment-section h5 {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    margin: 0 0 1.1rem;
    font-size: 1rem;
    font-weight: 700;
}

.summary-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.9rem 0;
    color: var(--text-muted);
    border-bottom: 1px dashed rgba(145, 223, 255, 0.18);
}

.summary-row.total {
    color: var(--text-primary);
    font-size: 1.15rem;
    font-weight: 700;
    border-bottom: 0;
}

.summary-row.total span:last-child {
    color: var(--gold);
}

.payment-section {
    margin-top: 1rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-size: 0.92rem;
    font-weight: 500;
}

body.page-checkout .form-control {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1px solid rgba(145, 223, 255, 0.16);
    border-radius: 12px;
    background: rgba(7, 15, 29, 0.42);
    color: var(--text-primary);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

body.page-checkout .form-control::placeholder {
    color: rgba(145, 223, 255, 0.55);
}

body.page-checkout .form-control:focus {
    background: rgba(7, 15, 29, 0.62);
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(0, 191, 255, 0.14);
    color: var(--text-primary);
}

body.page-checkout .form-control.is-invalid {
    border-color: #e74c3c;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.15);
}

body.page-checkout .form-control.is-valid {
    border-color: #27ae60;
    box-shadow: 0 0 0 3px rgba(39, 174, 96, 0.12);
}

body.page-checkout .invalid-feedback {
    display: none;
    color: #e74c3c;
    font-size: 0.82rem;
    margin-top: 0.3rem;
}

body.page-checkout .form-control.is-invalid ~ .invalid-feedback {
    display: block;
}

.btn-pay,
.btn-back,
.btn-browse {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    width: 100%;
    border-radius: 999px;
    padding: 0.95rem 1.2rem;
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.btn-pay {
    margin-top: 1rem;
    border: 0;
    background: linear-gradient(135deg, var(--gold) 0%, #ffdf8a 100%);
    color: #1b2234;
    box-shadow: 0 16px 28px rgba(249, 200, 80, 0.22);
}

.btn-pay:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 20px 34px rgba(249, 200, 80, 0.28);
}

.btn-pay:disabled {
    opacity: 0.55;
    cursor: not-allowed;
    box-shadow: none;
}

.btn-back,
.btn-browse {
    border: 1px solid var(--border);
    background: rgba(145, 223, 255, 0.06);
    color: var(--text-primary);
}

.btn-back:hover,
.btn-browse:hover {
    transform: translateY(-2px);
    background: rgba(145, 223, 255, 0.12);
    border-color: rgba(145, 223, 255, 0.28);
    color: var(--text-primary);
}

.empty-cart {
    padding: 3rem 1.25rem;
    text-align: center;
    background: var(--surface);
    border: 1px dashed rgba(145, 223, 255, 0.18);
    border-radius: 20px;
}

.empty-cart i {
    display: inline-block;
    margin-bottom: 1rem;
    font-size: 4rem;
    color: rgba(145, 223, 255, 0.65);
}

.empty-cart h4 {
    margin-bottom: 0.7rem;
    font-size: 1.35rem;
    font-weight: 700;
}

.empty-cart .text-muted {
    color: var(--text-muted) !important;
}

@media (max-width: 900px) {
    .row-custom {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .checkout-shell {
        padding: 2rem 1rem 3rem;
    }

    .checkout-card .card-header,
    .checkout-card .card-body {
        padding: 1.2rem;
    }

    .checkout-card .card-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .cart-item {
        flex-direction: column;
    }

    .cart-item img {
        width: 100%;
        height: 220px;
    }
}

body.page-success {
    min-height: 100vh;
    background:
        radial-gradient(circle at top left, rgba(0, 191, 255, 0.16), transparent 30%),
        radial-gradient(circle at 85% 15%, rgba(39, 174, 96, 0.18), transparent 22%),
        linear-gradient(180deg, #0d1b2e 0%, #0f1d36 100%);
}

.success-shell {
    max-width: 1240px;
    margin: 0 auto;
    padding: 3rem 1.5rem 4rem;
}

.success-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.9fr);
    gap: 1.5rem;
    align-items: start;
}

.success-hero-card,
.success-summary-card {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    border: 1px solid var(--border);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
        var(--bg-card);
    box-shadow: 0 24px 60px rgba(4, 10, 20, 0.32);
}

.success-hero-card {
    padding: 2rem;
}

.success-hero-card::before,
.success-summary-card::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.success-hero-card::before {
    background:
        radial-gradient(circle at top right, rgba(0, 191, 255, 0.14), transparent 30%),
        radial-gradient(circle at bottom left, rgba(249, 200, 80, 0.12), transparent 28%);
}

.success-summary-card::before {
    background: radial-gradient(circle at top, rgba(39, 174, 96, 0.14), transparent 35%);
}

.success-hero-card > *,
.success-summary-card > * {
    position: relative;
    z-index: 1;
}

.success-icon-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 88px;
    height: 88px;
    margin-bottom: 1.5rem;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(39, 174, 96, 0.22), rgba(0, 191, 255, 0.18));
    border: 1px solid rgba(145, 223, 255, 0.16);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.success-icon {
    font-size: 3.4rem;
    color: #59d98e;
}

.success-kicker {
    margin: 0 0 0.75rem;
    color: var(--accent-light);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.76rem;
    font-weight: 700;
}

.success-hero-card h1 {
    margin: 0 0 1rem;
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 5vw, 4rem);
    line-height: 0.98;
    letter-spacing: -0.04em;
}

.success-lead {
    max-width: 52ch;
    margin: 0 0 1.5rem;
    color: var(--text-muted);
    font-size: 1.05rem;
}

.success-highlight-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-bottom: 1.75rem;
}

.success-highlight {
    padding: 1rem 1.1rem;
    border-radius: 18px;
    background: rgba(145, 223, 255, 0.06);
    border: 1px solid rgba(145, 223, 255, 0.14);
}

.success-highlight span {
    display: block;
    margin-bottom: 0.35rem;
    color: var(--text-muted);
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.success-highlight strong {
    font-size: 1rem;
    line-height: 1.45;
}

.success-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
}

.success-btn-outline {
    border-color: rgba(145, 223, 255, 0.22);
    color: var(--text-primary);
    background: rgba(145, 223, 255, 0.06);
}

.success-btn-outline:hover {
    border-color: rgba(145, 223, 255, 0.34);
    background: rgba(145, 223, 255, 0.12);
}

.success-summary-card {
    padding: 1.5rem;
}

.success-summary-head {
    margin-bottom: 1.25rem;
}

.success-summary-head p {
    margin: 0 0 0.3rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.72rem;
    font-weight: 700;
}

.success-summary-head h2 {
    margin: 0;
    font-size: 1.45rem;
    font-weight: 700;
}

.success-summary-body {
    min-height: 260px;
}

.success-loading,
.success-message-card,
.success-note {
    display: flex;
    gap: 0.8rem;
    align-items: flex-start;
}

.success-loading {
    padding: 1rem;
    border-radius: 18px;
    background: rgba(145, 223, 255, 0.05);
    border: 1px dashed rgba(145, 223, 255, 0.14);
    color: var(--text-muted);
}

.success-message-card {
    padding: 1rem;
    border-radius: 18px;
    border: 1px solid rgba(255, 120, 120, 0.2);
    background: rgba(255, 120, 120, 0.08);
}

.success-message-card--error span,
.success-message-card--error strong {
    color: #ff9f9f;
}

.success-message-card p,
.success-loading p,
.success-note p {
    margin: 0;
}

.success-ticket-meta {
    margin-bottom: 1rem;
    padding: 1rem 1.1rem;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(249, 200, 80, 0.16), rgba(249, 200, 80, 0.08));
    border: 1px solid rgba(249, 200, 80, 0.22);
}

.success-ticket-label {
    display: block;
    margin-bottom: 0.3rem;
    color: rgba(255, 247, 214, 0.78);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.success-ticket-meta strong {
    font-size: 1.2rem;
    color: var(--gold);
}

.success-info-list {
    display: grid;
    gap: 0.85rem;
}

.success-info-row {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.95rem 0;
    border-bottom: 1px dashed rgba(145, 223, 255, 0.14);
}

.success-info-row span {
    color: var(--text-muted);
}

.success-info-row strong {
    text-align: right;
}

.success-total {
    color: var(--gold);
}

.success-status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.28rem 0.7rem;
    border-radius: 999px;
    font-size: 0.82rem;
}

.success-status--confirmed {
    color: #7cf0ab;
    background: rgba(39, 174, 96, 0.14);
    border: 1px solid rgba(39, 174, 96, 0.2);
}

.success-note {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 18px;
    background: rgba(145, 223, 255, 0.06);
    border: 1px solid rgba(145, 223, 255, 0.14);
    color: var(--text-muted);
}

.success-note .material-icons,
.success-loading .material-icons {
    font-size: 1.1rem;
}

.success-summary-foot {
    margin-top: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(145, 223, 255, 0.12);
}

.success-text-link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: var(--accent-light);
    font-weight: 600;
}

.success-text-link:hover {
    color: var(--text-primary);
}

@media (max-width: 900px) {
    .success-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .success-shell {
        padding: 2rem 1rem 3rem;
    }

    .success-hero-card,
    .success-summary-card {
        padding: 1.2rem;
        border-radius: 22px;
    }

    .success-highlight-row {
        grid-template-columns: 1fr;
    }

    .success-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .success-info-row {
        flex-direction: column;
    }

    .success-info-row strong {
        text-align: left;
    }
}

/* Featured movie hero – cinema landing style */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: -5%;
    z-index: 0;
    background: var(--bg) url('https://images.unsplash.com/photo-1489599849927-2ee91cede3ba?w=1920&q=80') center/cover no-repeat;
    animation: hero-kenburns 18s ease-in-out infinite alternate;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgba(15, 29, 54, 0.94) 0%, rgba(15, 29, 54, 0.65) 45%, rgba(15, 29, 54, 0.4) 70%, rgba(15, 29, 54, 0.2) 100%);
    pointer-events: none;
}

@keyframes hero-kenburns {
    0% {
        transform: scale(1) translate(0, 0);
    }

    100% {
        transform: scale(1.06) translate(-1%, -1%);
    }
}

.hero-inner {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 6rem 1.5rem 4rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 900px) {
    .hero-inner {
        grid-template-columns: 1fr 1fr;
        padding: 4rem 2rem 5rem;
    }
}

.hero-content {
    text-align: left;
    max-width: 560px;
}

.hero .eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--accent-light);
    margin-bottom: 1rem;
    opacity: 0;
    animation: hero-fade-up 0.7s ease forwards;
    animation-delay: 0.2s;
    animation-fill-mode: forwards;
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 3.75rem);
    font-weight: 800;
    margin: 0 0 0.75rem;
    letter-spacing: -0.04em;
    line-height: 1.05;
    opacity: 0;
    animation: hero-fade-up 0.7s ease forwards;
    animation-delay: 0.35s;
    animation-fill-mode: forwards;
}

.hero .hero-tagline {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin: 0 0 1.25rem;
    line-height: 1.5;
    opacity: 0;
    animation: hero-fade-up 0.7s ease forwards;
    animation-delay: 0.5s;
    animation-fill-mode: forwards;
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.25rem;
    margin-bottom: 1.75rem;
    opacity: 0;
    animation: hero-fade-up 0.7s ease forwards;
    animation-delay: 0.6s;
    animation-fill-mode: forwards;
}

.hero-meta span {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.hero-meta .rating {
    padding: 0.2rem 0.5rem;
    background: rgba(249, 200, 80, 0.2);
    border-radius: 6px;
    color: var(--gold);
    font-weight: 600;
}

.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    opacity: 0;
    animation: hero-fade-up 0.7s ease forwards;
    animation-delay: 0.75s;
    animation-fill-mode: forwards;
}

@keyframes hero-fade-up {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.75rem;
    font-family: var(--font);
    font-size: 1rem;
    font-weight: 600;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary {
    background: var(--accent);
    color: var(--bg);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px var(--accent-glow);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.06);
    border: 2px solid rgba(255, 255, 255, 0.25);
    color: var(--text);
}

.btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent-light);
    background: rgba(0, 212, 170, 0.08);
}

/* Featured movie poster / image with animation */
.hero-featured {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    animation: hero-fade-up 0.9s ease forwards;
    animation-delay: 0.5s;
    animation-fill-mode: forwards;
}

.hero-featured-inner {
    position: relative;
    width: 100%;
    max-width: 380px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 32px 64px rgba(0, 0, 0, 0.5), 0 0 0 1px var(--border);
    animation: hero-poster-float 5s ease-in-out infinite;
}

.hero-featured-inner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 1;
    pointer-events: none;
}

@keyframes hero-poster-float {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-12px) scale(1.02);
    }
}

.hero-featured img {
    width: 100%;
    aspect-ratio: 2/3;
    object-fit: cover;
    display: block;
    transition: transform 6s ease-out;
}

.hero-featured-inner:hover img {
    transform: scale(1.05);
}

@media (prefers-reduced-motion: reduce) {
    .hero-bg {
        animation: none;
    }

    .hero-featured-inner {
        animation: none;
    }

    .hero .eyebrow,
    .hero h1,
    .hero .hero-tagline,
    .hero-meta,
    .hero-ctas,
    .hero-featured {
        animation: none;
        opacity: 1;
    }
}

.hero-featured-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    padding: 1.5rem 1.25rem;
    color: var(--text);
    font-size: 0.85rem;
    font-weight: 500;
}

.hero-featured-caption strong {
    color: var(--gold);
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.scroll-line {
    width: 1px;
    height: 36px;
    background: linear-gradient(to bottom, var(--accent), transparent);
    opacity: 0.6;
    animation: scroll-pulse 2s ease-in-out infinite;
}

@keyframes scroll-pulse {

    0%,
    100% {
        opacity: 0.4;
    }

    50% {
        opacity: 0.8;
    }
}

/* Sections */
.section {
    padding: 5rem 0;
    position: relative;
}

.section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
    opacity: 0.5;
}

.now-showing {
    background: linear-gradient(180deg, var(--bg) 0%, rgba(21, 38, 66, 0.3) 100%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    margin: 0 0 2.5rem;
    opacity: 0;
    animation: slideInDown 0.8s ease forwards;
    background: linear-gradient(90deg, var(--text-primary) 0%, var(--accent-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Movie grid – cards with hover glow */
.movie-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .movie-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    }
}

.movie-card-link {
    display: block;
    color: inherit;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--bg-card);
    border: 1px solid var(--border);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), border-color 0.3s, box-shadow 0.3s;
    position: relative;
}

.movie-card-link:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(0, 191, 255, 0.5);
    box-shadow: 0 30px 60px rgba(0, 191, 255, 0.2), 0 0 30px rgba(0, 191, 255, 0.1);
}

.movie-card-link:hover .movie-cta {
    color: var(--accent);
}

.movie-poster {
    position: relative;
    overflow: hidden;
    aspect-ratio: 2/3;
    margin-bottom: 0;
}

.movie-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.movie-card-link:hover .movie-poster img {
    transform: scale(1.05);
}

.movie-rating {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    padding: 0.25rem 0.6rem;
    font-size: 0.7rem;
    font-weight: 700;
    background: rgba(0, 0, 0, 0.75);
    border-radius: 999px;
    color: var(--gold);
}

.movie-info {
    padding: 1rem;
}

.movie-info h3 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 0.35rem;
    line-height: 1.3;
}

.movie-meta {
    font-size: 0.85rem;
    color: var(--text-muted-opacity);
    margin: 0 0 0.5rem;
}

.movie-cta {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted-opacity);
    transition: color 0.2s;
}

/* Coming soon – muted cards */
.coming-soon {
    background: var(--bg-elevated);
}

.movie-card--coming .movie-poster img {
    opacity: 0.92;
}

/* Cinemas – pill cards */
.cinema-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.cinema-card {
    padding: 1.75rem;
    background: var(--bg-card);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.cinema-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 191, 255, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cinema-card:hover {
    border-color: rgba(0, 191, 255, 0.5);
    box-shadow: 0 20px 50px rgba(0, 191, 255, 0.15);
    transform: translateY(-4px);
}

.cinema-card:hover::before {
    opacity: 1;
}

.cinema-card h3 {
    font-size: 1.1rem;
    margin: 0 0 0.5rem;
    font-weight: 600;
}

.cinema-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0 0 0.75rem;
}

.link-gold {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gold);
}

.link-gold:hover {
    color: var(--accent-light);
    text-decoration: underline;
}

/* Promotions – gradient strip */
.promotions {
    background: var(--bg-elevated);
}

.promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.promo-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
}

.promo-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(249, 200, 80, 0.15) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.promo-card:hover {
    border-color: rgba(249, 200, 80, 0.5);
    box-shadow: 0 20px 50px rgba(249, 200, 80, 0.15);
    transform: translateY(-6px);
}

.promo-card:hover::after {
    opacity: 1;
}

.promo-placeholder {
    height: 120px;
    background: linear-gradient(135deg, rgba(0, 191, 255, 0.2) 0%, rgba(249, 200, 80, 0.12) 100%);
}

.promo-card h3 {
    font-size: 1.1rem;
    margin: 1rem 1rem 0;
    font-weight: 600;
}

.promo-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0.5rem 1rem 1rem;
}

/* Footer */
.site-footer {
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    padding: 3rem 0 0;
    margin-top: 2rem;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem 2rem;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3rem;
    align-items: start;
}

@media (max-width: 640px) {
    .footer-inner {
        grid-template-columns: 1fr;
    }
}

.footer-brand .logo {
    font-size: 1.25rem;
    display: inline-block;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
    max-width: 280px;
}

.footer-links {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.footer-col {
    h2, h3 {
        font-size: 0.7rem;
        text-transform: uppercase;
        letter-spacing: 0.12em;
        color: var(--text-muted);
        margin: 0 0 1rem;
    }
}

.footer-col a {
    display: block;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.footer-col a:hover {
    color: var(--accent);
}

.footer-bottom {
    padding: 1.5rem 1.5rem;
    border-top: 1px solid var(--border);
}

.footer-bottom p {
    max-width: 1200px;
    margin: 0 auto;
    font-size: 0.8rem;
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .site-footer {
        padding-top: 2.25rem;
    }

    .footer-inner {
        padding: 0 1rem 1.5rem;
        gap: 2rem;
    }

    .footer-links {
        width: 100%;
        gap: 1.5rem;
        justify-content: space-between;
    }

    .footer-col {
        flex: 1 1 180px;
        min-width: 0;
    }

    .footer-brand p {
        max-width: none;
    }

    .footer-bottom {
        padding: 1rem;
    }
}

@media (max-width: 576px) {
    .footer-inner {
        padding: 0 0.9rem 1.25rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 1.25rem;
    }

    .footer-col a {
        margin-bottom: 0.65rem;
    }

    .footer-bottom p {
        font-size: 0.78rem;
        text-align: center;
    }
}

/* ===== PAGE SPECIFIC STYLES ===== */

/* Page Header - Used in FAQ & About pages */
.page-header {
    padding: 4rem 0 4rem;
    background: linear-gradient(135deg, var(--bg-elevated) 0%, var(--bg) 100%);
    text-align: center;
}

.page-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin: 0 0 1rem;
    letter-spacing: -0.03em;
}

.page-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.text-center {
    text-align: center;
}

/* ===== FAQ PAGE STYLES ===== */

.faq-section {
    max-width: 900px;
    margin: 0 auto;
}

.faq-category {
    margin-bottom: 3rem;
}

.faq-category-title {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--accent-light);
    letter-spacing: -0.02em;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color 0.2s;
}

.faq-item:hover {
    border-color: rgba(0, 191, 255, 0.3);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    color: var(--text);
    font-family: var(--font);
    font-size: 1.05rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: color 0.2s;
}

.faq-question:hover {
    color: var(--accent-light);
}

.faq-icon {
    width: 1.25rem;
    height: 1.25rem;
    stroke: currentColor;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    margin: 0;
    color: var(--text-muted);
    line-height: 1.7;
}

.faq-contact {
    margin-top: 4rem;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(0, 191, 255, 0.1) 0%, rgba(249, 200, 80, 0.05) 100%);
    border-radius: var(--radius);
    text-align: center;
}

.faq-contact h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0 0 0.75rem;
}

.faq-contact p {
    color: var(--text-muted);
    margin: 0 0 1.5rem;
}

/* ===== ABOUT PAGE STYLES ===== */

/* Story Section */
.story-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 768px) {
    .story-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.story-content p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.story-image {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Stats Div */
.stats-div {
    padding: 4rem 0;
    background: var(--bg-elevated);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item {
    padding: 2rem 1rem;
}

.stat-number {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.stat-label {
    color: var(--text-muted);
    font-size: 1rem;
    font-weight: 500;
}

/* Values Section */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    padding: 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s;
}

.value-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 191, 255, 0.3);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.value-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 0 0.75rem;
}

.value-card p {
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
}

/* Team Section */
.team-section {
    background: var(--bg-elevated);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.team-card {
    text-align: center;
}

.team-image {
    width: 180px;
    height: 180px;
    margin: 0 auto 1.25rem;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--border);
    transition: border-color 0.3s;
}

.team-card:hover .team-image {
    border-color: var(--accent);
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin: 0 0 0.5rem;
}

.team-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 0;
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(0, 191, 255, 0.1) 0%, rgba(249, 200, 80, 0.05) 100%);
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    margin: 0 0 1rem;
    letter-spacing: -0.02em;
}

.cta-content p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin: 0 0 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ═══════════════════════════════════════════
   ACCESS DENIED PAGE
   ═══════════════════════════════════════════ */

.access-denied-section {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 70vh;
    padding: 2rem 1rem;
}

.access-denied-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 3rem 2.5rem;
    text-align: center;
    max-width: 520px;
    width: 100%;
}

.access-denied-icon .material-icons {
    font-size: 4rem;
    color: #dc3545;
    margin-bottom: 1rem;
}

.access-denied-title {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 1rem;
}

.access-denied-message {
    margin-bottom: 1.5rem;
}

.access-denied-message p {
    color: var(--text-muted);
    margin: 0.3rem 0;
}

.text-muted-light {
    color: var(--text-muted) !important;
}

.access-denied-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.access-denied-help {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.access-denied-help a {
    color: var(--accent);
    text-decoration: underline;
}

/* ═══════════════════════════════════════════
   MY BOOKINGS  &  BOOKING DETAILS
   ═══════════════════════════════════════════ */

/* Filter buttons */
.btn-filter {
    padding: 0.4rem 1rem;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--text-muted);
    font-family: var(--font);
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-filter:hover {
    border-color: var(--accent);
    color: var(--accent-light);
}

.btn-filter.active {
    background: var(--accent);
    color: var(--bg);
    border-color: var(--accent);
    font-weight: 600;
}

/* Empty state */
.booking-empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

/* Booking card */
.booking-card {
    display: flex;
    gap: 1.25rem;
    padding: 1.25rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    margin-bottom: 1rem;
    transition: border-color 0.2s, transform 0.15s;
}

.booking-card:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
}

.booking-card--cancelled .booking-card__poster,
.booking-card--cancelled .booking-card__title,
.booking-card--cancelled .booking-card__meta {
    opacity: 0.65;
}

.booking-card__poster {
    flex-shrink: 0;
    width: 85px;
    height: 120px;
    border-radius: 8px;
    overflow: hidden;
}

.booking-card__poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.booking-card__info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-width: 0;
}

.booking-card__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0.5rem;
}

.booking-card__title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.booking-status {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.2rem 0.7rem;
    border-radius: 999px;
    text-transform: uppercase;
    flex-shrink: 0;
}

.status-confirmed {
    background: rgba(39, 174, 96, 0.15);
    color: #2ecc71;
}

.status-cancelled {
    background: rgba(231, 76, 60, 0.15);
    color: #f87171;
}

.booking-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem 1.2rem;
    margin: 0.5rem 0;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.booking-card__meta .material-icons {
    font-size: 1rem;
    vertical-align: middle;
    margin-right: 2px;
}

.booking-card__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.booking-card__price {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--gold);
}

.booking-card__actions {
    display: flex;
    gap: 0.4rem;
}

.btn-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
}

.btn-action .material-icons { font-size: 1.1rem; }

.btn-action--view:hover   { border-color: var(--accent); color: var(--accent); }
.btn-action--email:hover   { border-color: #3498db; color: #3498db; }
.btn-action--download:hover { border-color: #27ae60; color: #27ae60; }
.btn-action--cancel:hover  { border-color: #e74c3c; color: #e74c3c; }

/* Toast */
.booking-toast {
    position: fixed;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    z-index: 999;
    transition: bottom 0.3s ease;
    pointer-events: none;
    color: #fff;
}

.booking-toast.show {
    bottom: 2rem;
}

.toast-success { background: #27ae60; }
.toast-error   { background: #e74c3c; }

/* Back link */
.back-link {
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: color 0.2s;
}
.back-link:hover { color: var(--accent); }

/* Detail card */
.detail-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}

.detail-card__hero {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.detail-card__poster {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.45);
}

.detail-card__overlay {
    position: absolute;
    bottom: 1rem;
    left: 1.5rem;
    right: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.detail-card__overlay h2 {
    margin: 0;
    font-size: 1.4rem;
}

.detail-card__body {
    padding: 1.5rem;
}

.detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.25rem;
}

.detail-item {
    display: flex;
    gap: 0.6rem;
    align-items: flex-start;
}

.detail-item .material-icons {
    color: var(--accent);
    font-size: 1.3rem;
    margin-top: 2px;
}

.detail-item small {
    display: block;
    margin-bottom: 2px;
}

.detail-item p {
    margin: 0;
    color: var(--text);
    font-weight: 500;
}

/* ═══════════════════════════════════════════
   SEAT SELECTION
   ═══════════════════════════════════════════ */

.seat-movie-bar {
    display: flex;
    gap: 1.25rem;
    align-items: center;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 1rem;
}

.seat-movie-poster {
    width: 60px;
    height: 85px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
}

.seat-movie-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 0.3rem;
}

.seat-movie-meta .material-icons {
    font-size: 1rem;
    vertical-align: middle;
    margin-right: 2px;
}

/* Legend */
.seat-legend {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    font-size: 0.82rem;
    color: var(--text-muted);
}

.seat-legend span {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.seat-legend-box {
    width: 18px;
    height: 18px;
    border-radius: 4px;
    display: inline-block;
}

.seat-available     { background: var(--bg-elevated); border: 1px solid var(--border); }
.seat-selected-demo { background: var(--accent); }
.seat-booked-demo   { background: #555; }
.seat-held-demo     { background: #e67e22; opacity: 0.7; }

/* Grid container */
.seat-grid-container {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem 1rem 2rem;
    overflow-x: auto;
}

/* Screen */
.seat-screen {
    text-align: center;
    margin: 0 auto 2rem;
    max-width: 400px;
    padding: 6px 0;
    background: linear-gradient(180deg, var(--accent) 0%, transparent 100%);
    border-radius: 4px 4px 50% 50%;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--bg);
    opacity: 0.85;
}

/* Seat row */
.seat-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    margin-bottom: 6px;
}

.seat-row-label {
    width: 22px;
    text-align: center;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    flex-shrink: 0;
}

/* Seat button */
.seat-btn {
    width: 36px;
    height: 36px;
    border-radius: 6px;
    border: 1px solid var(--border);
    background: var(--bg-elevated);
    color: var(--text-muted);
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.15s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.seat-btn:hover:not(:disabled) {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(0, 191, 255, 0.08);
}

.seat-btn.seat-selected {
    background: var(--accent);
    color: var(--bg);
    border-color: var(--accent);
    box-shadow: 0 0 10px var(--accent-glow);
}

.seat-btn.seat-booked {
    background: #444;
    color: #777;
    cursor: not-allowed;
    border-color: #555;
}

.seat-btn.seat-held {
    background: rgba(230, 126, 34, 0.3);
    color: #e67e22;
    cursor: not-allowed;
    border-color: rgba(230, 126, 34, 0.4);
}

/* Feature D: Pulsing indicator while AJAX hold is in progress */
.seat-btn.seat-locked-pending {
    animation: seatPulse 0.8s ease-in-out infinite;
}

@keyframes seatPulse {
    0%, 100% { opacity: 1; }
    50%      { opacity: 0.5; }
}

/* Feature F: High-visibility keyboard focus for seat buttons (WCAG) */
.seat-btn:focus-visible {
    outline: 3px solid #FFD700;
    outline-offset: 2px;
    box-shadow: 0 0 0 4px rgba(255, 215, 0, 0.3);
    z-index: 2;
}

/* Feature F: Fieldset wrapper for accessible seat grid */
.seat-fieldset {
    border: none;
    padding: 0;
    margin: 0;
}

/* Visually hidden but accessible to screen readers (Bootstrap compatible) */
.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

/* Summary bar */
.seat-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 1rem 1.25rem;
    margin-top: 1.25rem;
    position: sticky;
    bottom: 1rem;
    z-index: 10;
}

.seat-summary__info p {
    margin: 0;
    font-size: 0.9rem;
}

/* Responsive: stack booking cards on mobile */
@media (max-width: 600px) {
    .booking-card {
        flex-direction: column;
    }
    .booking-card__poster {
        width: 100%;
        height: 140px;
    }
    .seat-btn {
        width: 30px;
        height: 30px;
        font-size: 0.65rem;
    }
    .seat-row {
        gap: 3px;
    }
    .seat-movie-bar {
        flex-direction: column;
        text-align: center;
    }
}

/* ===== PREMIUM ANIMATIONS ===== */

/* Scroll animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeInUp 0.7s ease forwards;
}

.fade-in-down {
    opacity: 0;
    transform: translateY(-40px);
    animation: fadeInDown 0.7s ease forwards;
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-40px);
    animation: fadeInLeft 0.7s ease forwards;
}

.fade-in-right {
    opacity: 0;
    transform: translateX(40px);
    animation: fadeInRight 0.7s ease forwards;
}

.fade-in {
    opacity: 0;
    animation: fadeIn 0.6s ease forwards;
}

.scale-in {
    opacity: 0;
    transform: scale(0.95);
    animation: scaleIn 0.6s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes scaleIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Staggered animations for cards */
.movie-card-link {
    --stagger-delay: 0s;
}

.movie-card-link.staggered {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeInUp 0.7s ease forwards;
    animation-delay: var(--stagger-delay);
}

/* Glow animations */
.glow-on-hover {
    --glow-color: rgba(0, 191, 255, 0.3);
}

.glow-on-hover:hover {
    box-shadow: 0 0 30px var(--glow-color), inset 0 0 30px rgba(0, 191, 255, 0.1);
}

/* Hero section enhancements */
.hero-featured-inner {
    transition: all 0.3s ease;
}

.hero-featured-inner:hover {
    filter: brightness(1.1);
    box-shadow: 0 32px 64px rgba(0, 191, 255, 0.15), 0 0 40px rgba(0, 191, 255, 0.1), 0 0 0 1px var(--border);
}

/* Section title animation */
.section-title {
    opacity: 0;
    animation: slideInDown 0.8s ease forwards;
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Enhanced button animations */
.btn {
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:active::before {
    width: 300px;
    height: 300px;
}

/* Movie card enhanced hover */
.movie-card-link {
    position: relative;
    overflow: hidden;
}

.movie-card-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 191, 255, 0.2) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.movie-card-link:hover::before {
    opacity: 1;
}

/* Cinema card glow */
.cinema-card {
    transition: all 0.3s ease;
    position: relative;
}

.cinema-card:hover {
    box-shadow: 0 12px 30px rgba(0, 191, 255, 0.15);
}

/* Promo card animations */
.promo-card {
    transition: all 0.3s ease;
    position: relative;
}

.promo-card:hover {
    box-shadow: 0 12px 30px rgba(249, 200, 80, 0.1);
    transform: translateY(-4px);
}

.promo-placeholder {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.promo-card:hover .promo-placeholder {
    background: linear-gradient(135deg, rgba(0, 191, 255, 0.3) 0%, rgba(249, 200, 80, 0.2) 100%);
}

/* Floating animation */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.float {
    animation: float 3s ease-in-out infinite;
}

/* Pulse animation */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

.pulse {
    animation: pulse 2s ease-in-out infinite;
}

/* Shimmer animation for loading states */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

.shimmer {
    animation: shimmer 2s infinite;
    background: linear-gradient(90deg, var(--bg-card) 25%, rgba(0, 191, 255, 0.1) 50%, var(--bg-card) 75%);
    background-size: 1000px 100%;
}

/* Cards entrance stagger */
.stagger-1 { animation-delay: 0.1s !important; }
.stagger-2 { animation-delay: 0.2s !important; }
.stagger-3 { animation-delay: 0.3s !important; }
.stagger-4 { animation-delay: 0.4s !important; }
.stagger-5 { animation-delay: 0.5s !important; }
.stagger-6 { animation-delay: 0.6s !important; }

/* Text reveal animation */
.text-reveal {
    display: inline-block;
    animation: textReveal 0.8s ease forwards;
}

@keyframes textReveal {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Respect prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
