/* ============================================
   ROYAL — Luxury Gold on Deep Purple
   Unique: Centered header, Carousel slots,
   Gold-bordered providers, Diamond ornaments
   ============================================ */

:root {
    --ls-accent: #ffd700;
}

/* --- Reset & Base --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 120px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background: var(--color-bg);
    background-image: var(--color-bg-gradient);
    background-attachment: fixed;
    color: var(--color-text);
    line-height: 1.6;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, 'Times New Roman', Times, serif;
    color: var(--color-heading);
    line-height: 1.3;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--color-primary-hover);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 10px 28px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-align: center;
    line-height: 1.4;
    font-family: 'Playfair Display', Georgia, serif;
}

.btn-gold {
    background: var(--gradient-gold);
    color: var(--color-btn-text);
    box-shadow: 0 2px 12px var(--color-shadow);
}

.btn-gold:hover {
    background: var(--gradient-gold-hover);
    color: var(--color-btn-text);
    box-shadow: 0 4px 24px var(--color-shadow-strong);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--color-primary);
    border: 1.5px solid var(--color-primary);
}

.btn-outline:hover {
    background: var(--color-primary-tint-10);
    color: var(--color-primary-hover);
    border-color: var(--color-primary-hover);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 16px 48px;
    font-size: 16px;
    letter-spacing: 2px;
}

.btn-sm {
    padding: 6px 18px;
    font-size: 12px;
}

.btn-full {
    display: block;
    width: 100%;
}

/* --- Section Titles with Serif --- */
.section-title {
    text-align: center;
    font-size: 32px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.title-line {
    border: none;
    height: 2px;
    max-width: 100px;
    margin: 0 auto 44px;
    background: var(--gradient-line);
}

/* --- Gold Section Dividers --- */
.section-divider {
    border: none;
    height: 1px;
    max-width: 600px;
    margin: 0 auto;
    background: var(--gradient-line);
    opacity: 0.4;
}

/* ============================================
   HEADER — Centered Logo with Nav Below
   Two-row desktop / single-row mobile
   ============================================ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--color-header-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--color-border);
    transition: all 0.3s ease;
}

.site-header.scrolled {
    background: var(--color-header-bg-solid);
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header-top-row {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 68px;
    position: relative;
}

.header-side {
    display: flex;
    align-items: center;
    gap: 12px;
    position: absolute;
}

.header-side-left {
    left: 0;
}

.header-side-right {
    right: 0;
}

.header-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-ornament {
    color: var(--color-primary);
    font-size: 14px;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.logo-link:hover .logo-ornament {
    opacity: 1;
}

.logo-img {
    height: 38px;
    width: auto;
}

.btn-header {
    display: none;
}

/* Mobile login button - hidden on desktop */
.btn-mobile-login {
    display: none;
}

/* Header Nav — centered row below logo */
.header-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding-bottom: 10px;
}

.nav-link {
    color: var(--color-text);
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    opacity: 0.75;
    transition: opacity 0.3s ease, color 0.3s ease;
}

.nav-link:hover {
    opacity: 1;
    color: var(--color-primary);
}

.nav-diamond {
    color: var(--color-primary);
    font-size: 8px;
    opacity: 0.3;
}

/* Shrink header on scroll */
.site-header.scrolled .header-top-row {
    height: 54px;
}

.site-header.scrolled .header-nav {
    padding-bottom: 6px;
    gap: 16px;
}

.site-header.scrolled .logo-img {
    height: 30px;
}

/* Burger */
.burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 38px;
    height: 38px;
    background: none;
    border: 1px solid var(--color-border-medium);
    border-radius: 4px;
    cursor: pointer;
    gap: 5px;
    padding: 6px;
}

.burger span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--color-primary);
    transition: all 0.3s ease;
    border-radius: 1px;
}

.burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.burger.active span:nth-child(2) {
    opacity: 0;
}

.burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   MOBILE MENU — Full screen overlay
   OUTSIDE header (backdrop-filter bug fix)
   ============================================ */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
    background: var(--color-bg-deep);
    background-image: radial-gradient(ellipse at 50% 30%, var(--color-bg-mid) 0%, var(--color-bg-deep) 70%);
    padding: 100px 32px 40px;
    flex-direction: column;
    overflow-y: auto;
}

.mobile-menu.open {
    display: flex;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 32px;
}

.mobile-nav-link {
    display: block;
    padding: 18px 0;
    color: var(--color-text);
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    border-bottom: 1px solid var(--color-border-faint);
    text-align: center;
    transition: color 0.3s ease;
}

.mobile-nav-link:hover {
    color: var(--color-primary);
}

.mobile-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.mobile-lang {
    text-align: center;
    padding-top: 16px;
    border-top: 1px solid var(--color-border-faint);
}

/* ============================================
   HERO — Grand Luxury Entrance
   ============================================ */
.hero {
    padding: 100px 20px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-glow {
    position: absolute;
    top: -30%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--color-primary-tint-06) 0%, transparent 60%);
    pointer-events: none;
}

.hero-inner {
    max-width: 750px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-ornaments {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.hero-ornaments-bottom {
    margin-bottom: 0;
    margin-top: 20px;
}

.hero-diamond {
    color: var(--color-primary);
    font-size: 16px;
    opacity: 0.35;
    animation: diamondPulse 3s ease-in-out infinite;
}

.hero-diamond:nth-child(2) {
    font-size: 22px;
    opacity: 0.5;
    animation-delay: 0.3s;
}

.hero-diamond:nth-child(1) { animation-delay: 0s; }
.hero-diamond:nth-child(3) { animation-delay: 0.6s; }

@keyframes diamondPulse {
    0%, 100% { opacity: 0.25; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.15); }
}

.hero-title {
    font-size: 60px;
    letter-spacing: 8px;
    text-transform: uppercase;
    margin-bottom: 16px;
    background: var(--gradient-hero-title);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.hero-line {
    border: none;
    height: 2px;
    max-width: 160px;
    margin: 0 auto 24px;
    background: var(--gradient-hero-line);
}

.hero-subtitle {
    font-size: 17px;
    color: var(--color-text-dim);
    max-width: 540px;
    margin: 0 auto 40px;
    line-height: 1.8;
    font-style: italic;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* ============================================
   SLOTS — Horizontal Carousel
   ============================================ */
.slots-section {
    padding: 64px 0;
}

.slots-carousel-wrap {
    position: relative;
    margin: 0 -20px;
    padding: 0 50px;
}

.slots-carousel {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 8px 4px;
}

.slots-carousel::-webkit-scrollbar {
    display: none;
}

.slot-card {
    flex: 0 0 220px;
    background: var(--color-surface);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--color-border-faint);
    transition: all 0.3s ease;
    display: block;
}

.slot-card:hover {
    border-color: var(--color-border-hover);
    box-shadow: 0 8px 32px var(--color-shadow-soft);
    transform: translateY(-4px);
}

.slot-img-wrap {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.slot-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.slot-card:hover .slot-img {
    transform: scale(1.08);
}

.slot-overlay {
    position: absolute;
    inset: 0;
    background: var(--color-overlay);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.slot-card:hover .slot-overlay {
    opacity: 1;
}

.slot-name {
    padding: 12px 14px;
    font-size: 13px;
    font-weight: 500;
    color: var(--color-text);
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    border-top: 1px solid var(--color-border-subtle);
}

/* Carousel Arrow Buttons */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--color-primary);
    background: var(--color-bg-deep);
    color: var(--color-primary);
    font-size: 24px;
    font-weight: 300;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    line-height: 1;
}

.carousel-btn:hover {
    background: var(--gradient-gold);
    color: var(--color-btn-text);
    border-color: var(--color-primary);
    box-shadow: 0 0 20px var(--color-shadow);
}

.carousel-prev {
    left: 0;
}

.carousel-next {
    right: 0;
}

.section-cta {
    text-align: center;
    margin-top: 32px;
}

/* ============================================
   PROVIDERS — Elegant Gold-Bordered Grid
   ============================================ */
.providers-section {
    padding: 64px 0;
    background: var(--color-section-alt);
}

.providers-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
}

.provider-card {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 22px 16px;
    background: var(--color-surface);
    border-radius: 8px;
    border: 1px solid var(--color-border-accent);
    transition: all 0.35s ease;
    min-height: 80px;
    position: relative;
}

.provider-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 9px;
    background: var(--gradient-gold);
    opacity: 0;
    transition: opacity 0.35s ease;
    z-index: -1;
}

.provider-card:hover {
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px var(--color-shadow-soft);
}

.provider-card:hover::before {
    opacity: 0.15;
}

.provider-img {
    max-height: 34px;
    width: auto;
    filter: brightness(0.8) contrast(0.9);
    transition: filter 0.3s ease;
}

.provider-card:hover .provider-img {
    filter: brightness(1) contrast(1);
}

/* ============================================
   CONTENT SECTIONS
   ============================================ */
.content-section {
    padding: 64px 0;
}

/* BCR Nav Pills */
.bcr-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 28px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--color-border-subtle);
    justify-content: center;
}

.bcr-nav a {
    display: inline-block;
    padding: 7px 20px;
    border: 1px solid var(--color-border-accent);
    border-radius: 2px;
    color: var(--color-primary);
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.bcr-nav a:hover,
.bcr-nav a.active {
    background: var(--color-primary-tint-10);
    border-color: var(--color-border-strong);
    opacity: 1;
    color: var(--color-primary-hover);
}

/* Content blocks */
.content-block {
    background: var(--color-surface);
    border-radius: 10px;
    border-left: 3px solid var(--color-primary);
    padding: 32px 36px;
    margin-bottom: 20px;
    position: relative;
}

.content-block::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle at bottom right, var(--color-primary-tint-04), transparent 70%);
    border-radius: 0 0 10px 0;
    pointer-events: none;
}

.content-block h2,
.content-block h3,
.content-block h4 {
    color: #fff;
    margin-bottom: 14px;
}

.content-block h2 { font-size: 24px; letter-spacing: 1px; }
.content-block h3 { font-size: 19px; }

.content-block p {
    color: var(--color-text-sub);
    margin-bottom: 14px;
    line-height: 1.8;
}

.content-block a {
    color: var(--color-primary);
    text-decoration: underline;
    text-decoration-color: var(--color-border-medium);
    text-underline-offset: 3px;
}

.content-block a:hover {
    text-decoration-color: var(--color-primary);
}

.content-block ul,
.content-block ol {
    margin: 14px 0;
    padding-left: 24px;
}

.content-block li {
    color: var(--color-text-sub);
    margin-bottom: 8px;
    line-height: 1.7;
}

.content-block li::marker {
    color: var(--color-primary);
}

.content-block table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(255,255,255,.2) transparent;
}

.content-block table::-webkit-scrollbar { height: 4px; }
.content-block table::-webkit-scrollbar-track { background: transparent; }
.content-block table::-webkit-scrollbar-thumb { background: rgba(255,255,255,.2); border-radius: 2px; }

.content-block table th {
    background: rgba(255,255,255,.06);
    font-weight: 600;
    text-align: left;
    padding: 10px 14px;
    border: 1px solid rgba(255,255,255,.15);
    font-size: 14px;
    white-space: nowrap;
}

.content-block table td {
    padding: 10px 14px;
    border: 1px solid rgba(255,255,255,.15);
    font-size: 14px;
}

.content-block table td:first-child,
.content-block table th:first-child {
    white-space: normal;
    min-width: 120px;
}

.content-block table tr:hover td {
    background: rgba(255,255,255,.04);
}

.content-body {
    color: var(--color-text-sub);
    line-height: 1.8;
}

.content-body h2,
.content-body h3,
.content-body h4 {
    color: #fff;
    margin-bottom: 14px;
    margin-top: 24px;
}

.content-body p {
    margin-bottom: 14px;
}

.content-body a {
    color: var(--color-primary);
}

/* ============================================
   FAQ
   ============================================ */
.faq-section {
    padding: 64px 0;
    background: var(--color-section-alt);
}

.faq-item {
    background: var(--color-surface);
    border-radius: 8px;
    margin-bottom: 12px;
    border: 1px solid var(--color-border-ghost);
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.faq-item:hover {
    border-color: var(--color-border-accent);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    cursor: pointer;
    user-select: none;
    gap: 14px;
}

.faq-question h3 {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--color-text);
    margin: 0;
    flex: 1;
}

.faq-arrow {
    color: var(--color-primary);
    font-size: 20px;
    opacity: 0.5;
    transition: transform 0.3s ease, opacity 0.3s ease;
    flex-shrink: 0;
}

.faq-item.faq-open .faq-arrow {
    transform: rotate(180deg);
    opacity: 1;
}

.faq-answer {
    padding: 0 24px 18px;
}


.faq-answer,
.faq-answer p {
    color: var(--color-text-soft);
    font-size: 14px;
    line-height: 1.8;
}

.faq-answer a {
    color: var(--color-primary);
}

.faq-answer h2,
.faq-answer h3,
.faq-answer h4 {
    color: var(--color-heading);
}

.faq-answer li {
    color: var(--color-text-soft);
}

.faq-answer table th {
    color: var(--color-primary);
    background: var(--color-primary-tint-06);
}

.faq-answer table td {
    color: var(--color-text-soft);
}

.faq-answer table th,
.faq-answer table td {
    border-color: var(--color-border-subtle);
    padding: 10px 14px;
}

/* ============================================
   REVIEWS
   ============================================ */
.reviews-section {
    padding: 64px 0;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.review-card {
    background: var(--color-surface);
    border-radius: 10px;
    padding: 28px;
    border: 1px solid var(--color-border-ghost);
    transition: all 0.3s ease;
    position: relative;
}

.review-card::before {
    content: '\275D';
    position: absolute;
    top: 16px;
    right: 20px;
    font-size: 36px;
    color: var(--color-primary);
    opacity: 0.08;
    font-family: Georgia, serif;
    line-height: 1;
}

.review-card:hover {
    border-color: var(--color-border-accent);
    box-shadow: 0 4px 24px var(--color-shadow-soft);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.review-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--color-primary-tint-10);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    font-family: 'Playfair Display', Georgia, serif;
    flex-shrink: 0;
    border: 2px solid var(--color-border-light);
}

.review-info {
    flex: 1;
}

.review-name {
    font-weight: 600;
    font-size: 15px;
    color: var(--color-text);
    margin-bottom: 2px;
}

.review-stars {
    color: var(--color-primary);
    font-size: 14px;
    letter-spacing: 2px;
}

.review-text {
    color: var(--color-text-soft);
    font-size: 14px;
    line-height: 1.8;
    font-style: italic;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    padding: 48px 0 32px;
    background: var(--color-bg-deep);
    border-top: 1px solid var(--color-border-light);
    margin-top: 48px;
}

.footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-logo .logo-img {
    height: 32px;
}

.footer-nav {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-link {
    color: var(--color-text-dim);
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--color-primary);
}

.footer-diamond {
    color: var(--color-primary);
    font-size: 8px;
    opacity: 0.25;
}

.footer-lang {
    display: flex;
    align-items: center;
}

.footer-divider {
    border: none;
    height: 1px;
    background: var(--gradient-line);
    margin: 28px 0;
    opacity: 0.3;
}

.footer-bottom {
    text-align: center;
}

.copyright {
    color: var(--color-text-faint);
    font-size: 13px;
    letter-spacing: 0.5px;
}

/* ============================================
   RESPONSIVE — Tablet (max-width: 1024px)
   ============================================ */
@media (max-width: 1024px) {
    .providers-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .slot-card {
        flex: 0 0 200px;
    }
}

/* ============================================
   RESPONSIVE — Tablet (max-width: 768px)
   ============================================ */
@media (max-width: 768px) {
    html {
        scroll-padding-top: 70px;
    }

    /* Header: single row, logo left, burger right */
    .header-top-row {
        height: 58px;
        justify-content: flex-start;
    }

    .header-side {
        position: static;
    }

    .header-side-left {
        display: none;
    }

    .header-center {
        margin-right: auto;
    }

    .header-side-right {
        gap: 10px;
    }

    .header-side-right .btn-gold.btn-header {
        display: none;
    }

    .btn-mobile-login {
        display: inline-block;
        padding: 6px 14px;
        font-size: 11px;
    }

    .logo-ornament {
        display: none;
    }

    .header-nav {
        display: none;
    }

    .burger {
        display: flex;
    }

    .site-header.scrolled .header-top-row {
        height: 52px;
    }

    /* Hero */
    .hero {
        padding: 64px 20px 52px;
    }

    .hero-title {
        font-size: 38px;
        letter-spacing: 4px;
    }

    .hero-subtitle {
        font-size: 15px;
    }

    .hero-diamond {
        font-size: 12px;
    }

    .hero-diamond:nth-child(2) {
        font-size: 16px;
    }

    /* Sections */
    .section-title {
        font-size: 26px;
        letter-spacing: 2px;
    }

    .slots-section,
    .providers-section,
    .content-section,
    .faq-section,
    .reviews-section {
        padding: 48px 0;
    }

    /* Carousel */
    .slot-card {
        flex: 0 0 180px;
    }

    .slots-carousel-wrap {
        padding: 0 44px;
    }

    .carousel-btn {
        width: 38px;
        height: 38px;
        font-size: 20px;
    }

    /* Providers */
    .providers-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    /* Content */
    .content-block {
        padding: 22px 24px;
    }

    /* Reviews */
    .reviews-grid {
        grid-template-columns: 1fr;
    }

    /* Footer */
    .footer-top {
        flex-direction: column;
        text-align: center;
    }

    .footer-nav {
        order: 1;
    }
}

/* ============================================
   RESPONSIVE — Mobile (max-width: 480px)
   ============================================ */
@media (max-width: 480px) {
    .header-top-row {
        height: 52px;
        gap: 8px;
    }

    .logo-img {
        height: 28px;
    }

    .btn-mobile-login {
        padding: 5px 10px;
        font-size: 10px;
    }

    .hero {
        padding: 48px 16px 40px;
    }

    .hero-title {
        font-size: 30px;
        letter-spacing: 3px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .hero-buttons .btn-lg {
        padding: 12px 32px;
        font-size: 14px;
    }

    .section-title {
        font-size: 22px;
        letter-spacing: 1.5px;
    }

    .slot-card {
        flex: 0 0 160px;
    }

    .slots-carousel-wrap {
        padding: 0 36px;
    }

    .carousel-btn {
        width: 32px;
        height: 32px;
        font-size: 18px;
    }

    .providers-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }

    .provider-card {
        padding: 16px 10px;
        min-height: 60px;
    }

    .provider-img {
        max-height: 26px;
    }

    .slot-name {
        font-size: 12px;
        padding: 10px;
    }

    .slots-section,
    .providers-section,
    .content-section,
    .faq-section,
    .reviews-section {
        padding: 40px 0;
    }

    .content-block {
        padding: 18px 16px;
        border-radius: 8px;
    }

    .content-block h2 { font-size: 20px; }
    .content-block h3 { font-size: 17px; }

    .content-block table {
        font-size: 13px;
    }

    .content-block table th,
    .content-block table td {
        padding: 8px 10px;
    }

    .faq-question {
        padding: 14px 16px;
    }

    .faq-question h3 {
        font-size: 14px;
    }

    .faq-answer {
        padding: 0 16px 14px;
    }

    .review-card {
        padding: 20px;
    }

    .bcr-nav a {
        padding: 5px 12px;
        font-size: 12px;
    }

    .footer-logo .logo-img {
        height: 26px;
    }

    .footer-nav {
        gap: 10px;
    }

    .footer-link {
        font-size: 12px;
    }

    .hero-ornaments {
        gap: 12px;
        margin-bottom: 14px;
    }

    .hero-ornaments-bottom {
        margin-top: 14px;
    }

    .section-divider {
        max-width: 200px;
    }
}

/* ============================================
   UTILITY & MISC
   ============================================ */

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--color-scrollbar-track);
}

::-webkit-scrollbar-thumb {
    background: var(--color-scrollbar-thumb);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-scrollbar-thumb-hover);
}

/* Selection */
::selection {
    background: var(--color-primary-tint-25);
    color: var(--color-white);
}

/* Smooth image loading */
img[loading="lazy"] {
    opacity: 0;
    animation: fadeIn 0.5s ease forwards;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

/* Focus styles */
a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

/* Wide screens */
@media (min-width: 1400px) {
    .providers-grid {
        grid-template-columns: repeat(7, 1fr);
    }

    .slot-card {
        flex: 0 0 240px;
    }

    .container {
        max-width: 1320px;
    }
}

/* Slot image type: vertical */
[data-slot-type="vertical"] .slot-img-wrap { aspect-ratio: 3/4; }
[data-slot-type="vertical"] .slot-img-wrap img { object-fit: cover; }

/* Slot image type: horizontal */
[data-slot-type="horizontal"] .slot-img-wrap { aspect-ratio: 16/9; }
[data-slot-type="horizontal"] .slot-img-wrap img { object-fit: cover; }
