/* ============================================================
   TEMPLATE 7 — BIOLUMINESCENT DEEP EDITION
   Electric Teal · Vivid Coral · Luminous Lime
   Full Responsive Business Profile CSS
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=Outfit:wght@300;400;500;600;700;800&family=JetBrains+Mono:wght@400;500;600&display=swap');

/* ============================================================
   DESIGN TOKENS — BIOLUMINESCENT PALETTE
   ============================================================ */
:root {

    /* ── Backgrounds (ocean deep) ─────────────── */
    --bg-void: #03070f;
    --bg-deep: #060d1a;
    --bg-abyss: #091222;
    --bg-surface: #0d1a2e;
    --bg-raised: #111f38;

    /* ── Glass ────────────────────────────────── */
    --glass: rgba(9, 18, 34, 0.75);
    --glass-light: rgba(255, 255, 255, 0.04);
    --glass-border: rgba(255, 255, 255, 0.07);
    --glass-teal: rgba(0, 229, 196, 0.08);
    --glass-teal-border: rgba(0, 229, 196, 0.18);

    /* ── Primary: Electric Teal ───────────────── */
    --teal-200: #5eeadf;
    --teal-300: #00e5cc;
    --teal-400: #00d4bb;
    --teal-500: #00b8a2;
    --teal-600: #008f7e;
    --teal-glow: rgba(0, 212, 187, 0.28);
    --teal-glow-sm: rgba(0, 212, 187, 0.12);

    /* ── Accent: Vivid Coral ──────────────────── */
    --coral-300: #ff8a7a;
    --coral-400: #ff5c4a;
    --coral-500: #f03d2a;
    --coral-glow: rgba(255, 92, 74, 0.25);

    /* ── Pop: Luminous Lime ───────────────────── */
    --lime-300: #d4ff6a;
    --lime-400: #b8ff3c;
    --lime-500: #97ea1e;
    --lime-glow: rgba(184, 255, 60, 0.22);

    /* ── Utility ──────────────────────────────── */
    --success: #22c97a;
    --success-dim: rgba(34, 201, 122, 0.12);

    /* ── Text ─────────────────────────────────── */
    --text-100: #f0f8ff;
    --text-200: #c8ddf0;
    --text-300: #8aaac8;
    --text-400: #4d6a88;

    /* ── Borders ──────────────────────────────── */
    --border-dim: rgba(255, 255, 255, 0.05);
    --border-soft: rgba(255, 255, 255, 0.09);
    --border-teal: rgba(0, 212, 187, 0.22);
    --border-coral: rgba(255, 92, 74, 0.22);

    /* ── Shadows ──────────────────────────────── */
    --shadow-sm: 0 2px 8px rgba(3, 7, 15, 0.5);
    --shadow-md: 0 6px 20px rgba(3, 7, 15, 0.55);
    --shadow-lg: 0 14px 40px rgba(3, 7, 15, 0.6);
    --shadow-xl: 0 24px 64px rgba(3, 7, 15, 0.65);
    --shadow-teal: 0 8px 36px rgba(0, 212, 187, 0.22);
    --shadow-coral: 0 8px 32px rgba(255, 92, 74, 0.22);
    --shadow-lime: 0 8px 32px rgba(184, 255, 60, 0.18);

    /* ── Gradients ────────────────────────────── */
    --grad-teal: linear-gradient(135deg, #00e5cc 0%, #00b8a2 100%);
    --grad-coral: linear-gradient(135deg, #ff5c4a 0%, #ff8a7a 100%);
    --grad-lime: linear-gradient(135deg, #b8ff3c 0%, #d4ff6a 100%);
    --grad-hero: linear-gradient(160deg, rgba(3, 7, 15, 0.98) 0%, rgba(6, 13, 26, 0.95) 45%, rgba(9, 18, 34, 0.90) 100%);
    --grad-card: linear-gradient(145deg, rgba(13, 26, 46, 0.92) 0%, rgba(6, 13, 26, 0.97) 100%);
    --grad-aurora: linear-gradient(135deg, rgba(0, 212, 187, 0.05) 0%, rgba(9, 18, 34, 0) 40%, rgba(184, 255, 60, 0.03) 70%, rgba(255, 92, 74, 0.04) 100%);

    /* ── Radius ───────────────────────────────── */
    --r-xs: 5px;
    --r-sm: 10px;
    --r-md: 14px;
    --r-lg: 20px;
    --r-xl: 28px;
    --r-2xl: 36px;
    --r-full: 9999px;

    /* ── Timing ───────────────────────────────── */
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --ease-out: cubic-bezier(0, 0, 0.2, 1);
    --t-fast: all 0.17s var(--ease);
    --t-base: all 0.27s var(--ease);
    --t-slow: all 0.44s var(--ease);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', system-ui, sans-serif;
    font-size: 15px;
    line-height: 1.65;
    color: var(--text-200);
    background: var(--bg-void);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img {
    display: block;
    max-width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

::-webkit-scrollbar-track {
    background: var(--bg-deep);
}

::-webkit-scrollbar-thumb {
    background: var(--teal-500);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--teal-400);
}

/* ============================================================
   CONTAINERS
   ============================================================ */
.container, .container-contend, .bookingbar-container {
    width: 100%;
    max-width: 1380px;
    margin: 0 auto;
    padding: 0 32px;
}

/* ============================================================
   HERO
   ============================================================ */
.hero-modern-gradient {
    position: relative;
    margin-top: 80px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background: var(--bg-void);
}

.hero-bg-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.07);
    transition: transform 14s ease;
    will-change: transform;
}

.hero-modern-gradient:hover .hero-bg-image {
    transform: scale(1.0);
}

.hero-gradient-overlay {
    position: absolute;
    inset: 0;
    background: var(--grad-hero);
    z-index: 2;
}

/* Teal orb top-right */
.hero-gradient-overlay::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    top: -80px;
    right: 8%;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
    background: radial-gradient(circle, rgba(0, 212, 187, 0.10) 0%, transparent 65%);
    animation: floatOrb1 9s ease-in-out infinite alternate;
}

/* Lime orb bottom-left */
.hero-gradient-overlay::after {
    content: '';
    position: absolute;
    width: 450px;
    height: 450px;
    bottom: -40px;
    left: 6%;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
    background: radial-gradient(circle, rgba(184, 255, 60, 0.07) 0%, transparent 65%);
    animation: floatOrb2 11s ease-in-out infinite alternate;
}

/* Coral orb center */
.hero-modern-gradient::after {
    content: '';
    position: absolute;
    width: 350px;
    height: 350px;
    bottom: 20%;
    right: 20%;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 3;
    background: radial-gradient(circle, rgba(255, 92, 74, 0.07) 0%, transparent 65%);
    animation: floatOrb2 13s ease-in-out infinite alternate-reverse;
}

@keyframes floatOrb1 {
    from {
        transform: translate(0, 0) scale(1);
    }
    to {
        transform: translate(40px, -30px) scale(1.12);
    }
}

@keyframes floatOrb2 {
    from {
        transform: translate(0, 0) scale(1);
    }
    to {
        transform: translate(-30px, 20px) scale(1.08);
    }
}

.hero-content-wrapper {
    position: relative;
    z-index: 10;
    width: 100%;
    padding: 0 0 90px;
}

/* Profile Card */
.business-profile-card {
    background: var(--glass);
    backdrop-filter: blur(36px) saturate(1.6);
    -webkit-backdrop-filter: blur(36px) saturate(1.6);
    border: 1px solid var(--glass-teal-border);
    border-radius: var(--r-2xl);
    padding: 56px 48px 48px;
    max-width: 720px;
    margin: 0 auto;
    box-shadow: var(--shadow-xl), inset 0 1px 0 rgba(0, 229, 196, 0.06), 0 0 80px rgba(0, 212, 187, 0.05);
    animation: cardReveal 0.9s var(--ease-out) both;
    position: relative;
    overflow: hidden;
}

/* Scan shimmer */
.business-profile-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 229, 196, 0.04), transparent);
    animation: scanLine 5s ease-in-out infinite;
    pointer-events: none;
}

/* Top edge glow */
.business-profile-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 20%;
    right: 20%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--teal-400), transparent);
    opacity: 0.6;
}

@keyframes cardReveal {
    from {
        opacity: 0;
        transform: translateY(70px) scale(0.96);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes scanLine {
    0% {
        left: -60%;
        opacity: 0;
    }
    20% {
        opacity: 1;
    }
    80% {
        opacity: 1;
    }
    100% {
        left: 160%;
        opacity: 0;
    }
}

/* Avatar */
.profile-avatar-section {
    position: relative;
    width: 140px;
    height: 140px;
    margin: 0 auto 32px;
}

.avatar-glow {
    position: absolute;
    inset: -18px;
    border-radius: 50%;
    background: conic-gradient(from 0deg, var(--teal-400), var(--lime-400), var(--coral-400), var(--teal-400));
    filter: blur(22px);
    opacity: 0.32;
    animation: spinGlow 7s linear infinite;
}

@keyframes spinGlow {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.business-avatar {
    position: relative;
    width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid rgba(0, 212, 187, 0.45);
    box-shadow: 0 0 0 5px rgba(0, 212, 187, 0.06), var(--shadow-teal);
    transition: var(--t-slow);
    z-index: 1;
}

.business-avatar:hover {
    transform: scale(1.05);
    border-color: var(--teal-300);
}

.verified-badge {
    position: absolute;
    bottom: 6px;
    right: 6px;
    width: 30px;
    height: 30px;
    background: var(--grad-lime);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--bg-deep);
    box-shadow: 0 2px 10px var(--lime-glow);
    z-index: 2;
    animation: stampIn 0.6s var(--ease-spring) 0.8s both;
}

.verified-badge i {
    font-size: 12px;
    color: var(--bg-void);
}

@keyframes stampIn {
    from {
        transform: scale(0) rotate(-180deg);
        opacity: 0;
    }
    to {
        transform: scale(1) rotate(0);
        opacity: 1;
    }
}

/* Business Name */
.business-name {
    font-family: 'Syne', sans-serif;
    font-size: 50px;
    font-weight: 800;
    letter-spacing: -1.5px;
    text-align: center;
    color: var(--text-100);
    margin-bottom: 10px;
    line-height: 1.1;
}

.business-name::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--grad-teal);
    border-radius: var(--r-full);
    margin: 10px auto 0;
    box-shadow: 0 0 12px var(--teal-glow);
}

/* Meta Chips */
.business-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    justify-content: center;
    margin: 26px 0 36px;
}

.meta-item {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 16px;
    background: rgba(0, 212, 187, 0.06);
    border: 1px solid var(--border-teal);
    border-radius: var(--r-full);
    font-size: 12px;
    font-weight: 500;
    color: var(--text-300);
    transition: var(--t-base);
}

.meta-item:hover {
    background: rgba(0, 212, 187, 0.12);
    border-color: var(--teal-400);
    color: var(--teal-300);
    transform: translateY(-2px);
    box-shadow: var(--shadow-teal);
}

.meta-item i {
    color: var(--teal-400);
    font-size: 12px;
}

/* Stats Row */
.stats-row {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.stat-item {
    flex: 1;
    min-width: 130px;
    max-width: 175px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px 14px;
    background: rgba(0, 212, 187, 0.04);
    border: 1px solid var(--border-teal);
    border-radius: var(--r-lg);
    transition: var(--t-base);
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--grad-aurora);
    opacity: 0;
    transition: opacity 0.3s;
}

.stat-item:hover {
    background: rgba(0, 212, 187, 0.08);
    border-color: var(--teal-400);
    transform: translateY(-5px);
    box-shadow: var(--shadow-teal);
}

.stat-item:hover::before {
    opacity: 1;
}

.stat-icon, .stat-icon-wrapper {
    width: 44px;
    height: 44px;
    background: rgba(0, 212, 187, 0.12);
    border-radius: var(--r-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-teal);
    position: relative;
    z-index: 1;
}

.stat-icon i, .stat-icon-wrapper i {
    font-size: 18px;
    color: var(--teal-300);
}

.stat-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.stat-value {
    font-family: 'Syne', sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--text-100);
    line-height: 1;
}

.stat-value.status-open {
    color: var(--lime-400);
    text-shadow: 0 0 14px var(--lime-glow);
}

.stat-value.status-closed {
    color: var(--coral-400);
}

.stat-label {
    font-size: 10px;
    font-weight: 600;
    color: var(--text-400);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-top: 6px;
}

.pulse-dot {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--lime-400);
    margin-right: 5px;
    box-shadow: 0 0 0 0 rgba(184, 255, 60, 0.4);
    animation: pulseDot 1.6s ease infinite;
}

@keyframes pulseDot {
    0% {
        box-shadow: 0 0 0 0 rgba(184, 255, 60, 0.5);
    }
    70% {
        box-shadow: 0 0 0 9px rgba(184, 255, 60, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(184, 255, 60, 0);
    }
}

/* ============================================================
   BOOKING BAR
   ============================================================ */
.booking-bar-sticky {
    position: relative;
    z-index: 100;
    background: rgba(9, 18, 34, 0.88);
    backdrop-filter: blur(36px) saturate(1.7);
    -webkit-backdrop-filter: blur(36px) saturate(1.7);
    border: 1px solid var(--glass-teal-border);
    border-radius: var(--r-2xl);
    padding: 28px 36px;
    width: 84%;
    margin: -36px auto 0;
    box-shadow: var(--shadow-xl), 0 0 50px rgba(0, 212, 187, 0.07);
    animation: barSlide 0.7s var(--ease-out) 0.4s both;
}

.booking-bar-sticky::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 15%;
    right: 15%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--teal-400), transparent);
    opacity: 0.45;
}

@keyframes barSlide {
    from {
        opacity: 0;
        transform: translateY(-18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 20px;
    align-items: end;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.field-label {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 10px;
    font-weight: 700;
    color: var(--text-400);
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

.field-label i {
    color: var(--teal-400);
    font-size: 11px;
}

.field-input {
    width: 100%;
    padding: 13px 18px;
    background: rgba(0, 212, 187, 0.04);
    border: 1px solid var(--border-teal);
    border-radius: var(--r-md);
    font-size: 13px;
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    color: var(--text-100);
    transition: var(--t-base);
    outline: none;
    cursor: pointer;
}

.field-input::placeholder {
    color: var(--text-400);
}

.field-input:focus {
    border-color: var(--teal-400);
    background: rgba(0, 212, 187, 0.07);
    box-shadow: 0 0 0 3px rgba(0, 212, 187, 0.10);
}

.field-input option {
    background: var(--bg-surface);
    color: var(--text-200);
}

.occupancy-field {
    position: relative;
}

.occupancy-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
}

.occupancy-trigger i {
    color: var(--text-400);
    font-size: 11px;
    transition: var(--t-base);
}

.occupancy-dropdown {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    right: 0;
    background: var(--bg-surface);
    border: 1px solid var(--border-teal);
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-xl), var(--shadow-teal);
    padding: 20px 22px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: var(--t-base);
    z-index: 200;
}

.occupancy-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.occupancy-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 13px 0;
    border-bottom: 1px solid var(--border-dim);
}

.occupancy-row:last-of-type {
    border-bottom: none;
}

.occupancy-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-300);
}

.counter-controls {
    display: flex;
    align-items: center;
    gap: 14px;
}

.counter-btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid var(--border-teal);
    background: rgba(0, 212, 187, 0.06);
    color: var(--teal-400);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--t-fast);
    cursor: pointer;
}

.counter-btn:hover {
    background: var(--teal-400);
    color: var(--bg-void);
    border-color: var(--teal-400);
    transform: scale(1.1);
    box-shadow: 0 0 12px var(--teal-glow);
}

.counter-value {
    font-family: 'JetBrains Mono', monospace;
    font-size: 15px;
    font-weight: 600;
    min-width: 28px;
    text-align: center;
    color: var(--text-100);
}

.apply-btn {
    width: 100%;
    padding: 12px;
    background: var(--grad-teal);
    color: var(--bg-void);
    border-radius: var(--r-sm);
    font-weight: 700;
    font-size: 13px;
    margin-top: 14px;
    transition: var(--t-base);
    cursor: pointer;
    border: none;
    box-shadow: var(--shadow-teal);
}

.apply-btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.07);
}

.search-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 13px 28px;
    background: var(--grad-teal);
    color: var(--bg-void);
    border-radius: var(--r-md);
    font-size: 13px;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    white-space: nowrap;
    transition: var(--t-base);
    box-shadow: var(--shadow-teal);
    cursor: pointer;
    border: none;
}

.search-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 44px var(--teal-glow);
    filter: brightness(1.06);
}

.search-btn i {
    font-size: 13px;
}

/* ============================================================
   MAIN CONTENT
   ============================================================ */
.main-content-section {
    padding: 64px 0 0;
}

/* Tabs */
.content-tabs {
    display: flex;
    gap: 4px;
    padding: 5px;
    background: rgba(9, 18, 34, 0.85);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--border-teal);
    border-radius: var(--r-xl);
    margin-bottom: 28px;
    position: sticky;
    top: 14px;
    z-index: 90;
    overflow-x: auto;
    box-shadow: var(--shadow-md);
}

.content-tabs::-webkit-scrollbar {
    height: 2px;
}

.content-tabs::-webkit-scrollbar-thumb {
    background: var(--teal-500);
}

.tab-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 11px 22px;
    border-radius: var(--r-lg);
    font-size: 13px;
    font-weight: 600;
    color: var(--text-400);
    white-space: nowrap;
    transition: var(--t-base);
    cursor: pointer;
    border: none;
    background: none;
}

.tab-link:hover {
    color: var(--teal-300);
    background: rgba(0, 212, 187, 0.07);
}

.tab-link.active {
    background: var(--grad-teal);
    color: var(--bg-void);
    box-shadow: var(--shadow-teal);
}

.tab-link i {
    font-size: 14px;
}

.tab-content-wrapper {
    background: rgba(9, 18, 34, 0.80);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--border-teal);
    border-radius: var(--r-2xl);
    padding: 48px 44px;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.tab-content-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--teal-400), transparent);
    opacity: 0.3;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: tabFade 0.38s var(--ease-out);
}

@keyframes tabFade {
    from {
        opacity: 0;
        transform: translateY(14px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Section Titles */
.section-title-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
}

.section-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Syne', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--text-100);
    margin-bottom: 0;
}

.section-title i {
    color: var(--teal-400);
}

.section-title::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, var(--border-teal), transparent);
    margin-left: 10px;
}

.category-count-badge-v7 {
    background: var(--grad-teal);
    color: white;
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    font-family: 'Syne', sans-serif;
    box-shadow: 0 2px 8px rgba(0, 212, 187, 0.3);
    white-space: nowrap;
    border: 1px solid rgba(0, 212, 187, 0.3);
}

/* ============================================================
   CATEGORIES
   ============================================================ */
.categories-section {
    margin-bottom: 44px;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 14px;
}

.category-card {
    background: rgba(0, 212, 187, 0.04);
    border: 1px solid var(--border-teal);
    border-radius: var(--r-lg);
    padding: 20px 14px;
    text-align: center;
    cursor: pointer;
    transition: var(--t-base);
    position: relative;
    overflow: hidden;
}

.category-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--grad-teal);
    transform: scaleX(0);
    transition: transform 0.3s var(--ease);
}

.category-card:hover {
    border-color: var(--teal-400);
    transform: translateY(-6px);
    background: rgba(0, 212, 187, 0.08);
    box-shadow: var(--shadow-teal);
}

.category-card:hover::after {
    transform: scaleX(1);
}

.category-image {
    width: 62px;
    height: 62px;
    margin: 0 auto 12px;
    border-radius: var(--r-sm);
    overflow: hidden;
    background: rgba(0, 212, 187, 0.08);
    border: 1px solid var(--border-teal);
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: center;
}

.category-name {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-300);
    margin: 0;
}

.category-card:hover .category-name {
    color: var(--teal-300);
}

.product-count-v7 {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 10px;
    font-weight: 500;
    color: var(--text-500);
    background: rgba(0, 212, 187, 0.1);
    padding: 4px 10px;
    border-radius: 12px;
    border: 1px solid rgba(0, 212, 187, 0.2);
}

.product-count-v7 i {
    font-size: 9px;
    color: var(--teal-400);
}

.category-card:hover .product-count-v7 {
    background: rgba(0, 212, 187, 0.15);
    border-color: var(--teal-400);
    color: var(--teal-300);
}

/* ============================================================
   FILTERS
   ============================================================ */
.filters-section {
    border-radius: var(--r-lg);
    padding: 18px 22px;
    margin-bottom: 30px;
    background: rgba(0, 212, 187, 0.03);
    border: 1px solid var(--border-teal);
}

.filters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 14px;
}

.filter-item {
    position: relative;
    display: flex;
    align-items: center;
}

.filter-item > i {
    position: absolute;
    left: 13px;
    color: var(--teal-500);
    font-size: 13px;
    z-index: 2;
}

.filter-select, .filter-input {
    width: 100%;
    padding: 10px 16px 10px 38px;
    background: rgba(0, 212, 187, 0.04);
    border: 1px solid var(--border-teal);
    border-radius: var(--r-sm);
    font-size: 13px;
    font-family: 'Outfit', sans-serif;
    color: var(--text-200);
    outline: none;
    transition: var(--t-base);
}

.filter-select:focus, .filter-input:focus {
    border-color: var(--teal-400);
    box-shadow: 0 0 0 3px rgba(0, 212, 187, 0.08);
}

.filter-select option {
    background: var(--bg-surface);
}

/* ============================================================
   PRODUCT CARDS
   ============================================================ */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
    gap: 22px;
}

.product-list-item {
    margin-bottom: 0;
}

.product-card-modern {
    background: var(--grad-card);
    border: 1px solid var(--border-teal);
    border-radius: var(--r-xl);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: var(--t-base);
    position: relative;
}

.product-card-modern::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: var(--r-xl);
    background: linear-gradient(135deg, rgba(0, 212, 187, 0.25), transparent 50%, rgba(184, 255, 60, 0.10));
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 0;
    pointer-events: none;
}

.product-card-modern:hover {
    transform: translateY(-8px);
    border-color: var(--teal-400);
    box-shadow: var(--shadow-xl), var(--shadow-teal);
}

.product-card-modern:hover::before {
    opacity: 1;
}

.product-image-container {
    position: relative;
    width: 100%;
    padding-top: 66%;
    overflow: hidden;
    background: var(--bg-abyss);
    z-index: 1;
}

.product-image-link {
    position: absolute;
    inset: 0;
    display: block;
}

.product-image-link.no-image-link {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f5f7fa 0%, #e9ecef 100%);
}

.no-image-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: center;
}

.no-image-content i {
    font-size: 52px;
    color: #cbd5e1;
    opacity: 0.6;
}

.no-image-content span {
    font-size: 14px;
    font-weight: 500;
    color: #94a3b8;
    letter-spacing: 0.3px;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s var(--ease);
}

.product-card-modern:hover .product-image {
    transform: scale(1.08);
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(3, 7, 15, 0.88) 0%, transparent 55%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--t-base);
}

.product-card-modern:hover .image-overlay {
    opacity: 1;
}

.overlay-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7px;
    color: #fff;
    transform: translateY(22px);
    transition: var(--t-base);
}

.product-card-modern:hover .overlay-content {
    transform: translateY(0);
}

.overlay-content i {
    font-size: 28px;
    color: var(--teal-300);
}

.overlay-content span {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--teal-300);
}

.product-wishlist-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    background: rgba(3, 7, 15, 0.75);
    backdrop-filter: blur(8px);
    border: 1px solid var(--border-soft);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: var(--t-base);
}

.product-wishlist-btn:hover {
    background: var(--coral-400);
    border-color: var(--coral-400);
    transform: scale(1.12);
    box-shadow: var(--shadow-coral);
}

.product-wishlist-btn i {
    font-size: 14px;
    color: var(--coral-400);
    transition: var(--t-fast);
}

.product-wishlist-btn:hover i {
    color: #fff;
}

.product-wishlist-btn.active {
    background: var(--coral-400);
    border-color: var(--coral-400);
}

.product-wishlist-btn.active i {
    color: #fff;
    font-weight: 900;
}

.featured-ribbon {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--grad-lime);
    color: var(--bg-void);
    padding: 5px 12px;
    border-radius: var(--r-full);
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 10px;
    font-weight: 800;
    z-index: 9;
    box-shadow: 0 3px 16px var(--lime-glow);
    animation: featuredPulse 2.5s ease infinite;
}

@keyframes featuredPulse {
    0%, 100% {
        box-shadow: 0 3px 16px var(--lime-glow);
    }
    50% {
        box-shadow: 0 4px 24px var(--lime-glow), 0 0 30px rgba(184, 255, 60, 0.12);
    }
}

.featured-ribbon i {
    font-size: 10px;
}

.discount-badge {
    position: absolute;
    top: 50px;
    left: 12px;
    background: var(--grad-coral);
    color: #fff;
    padding: 8px 11px;
    border-radius: var(--r-sm);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 9;
    min-width: 50px;
    box-shadow: 0 4px 14px var(--coral-glow);
}

.discount-value {
    font-size: 16px;
    font-weight: 900;
    line-height: 1;
}

.discount-label {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.gallery-indicator {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: rgba(3, 7, 15, 0.82);
    backdrop-filter: blur(8px);
    color: var(--text-300);
    padding: 5px 10px;
    border-radius: var(--r-full);
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    font-weight: 600;
    z-index: 8;
    border: 1px solid var(--border-soft);
}

.gallery-indicator i {
    color: var(--teal-400);
    font-size: 11px;
}

.availability-badge {
    position: absolute;
    bottom: 12px;
    right: 12px;
    padding: 5px 10px;
    border-radius: var(--r-full);
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 10px;
    font-weight: 700;
    z-index: 8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.availability-badge.available {
    background: rgba(34, 201, 122, 0.14);
    color: var(--success);
    border: 1px solid rgba(34, 201, 122, 0.28);
}

.availability-badge.sold-out {
    background: rgba(255, 92, 74, 0.13);
    color: var(--coral-400);
    border: 1px solid var(--border-coral);
}

.availability-badge i {
    font-size: 11px;
}

.deal-timer {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 92, 74, 0.92);
    backdrop-filter: blur(8px);
    color: #fff;
    padding: 5px 13px;
    border-radius: var(--r-full);
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 10px;
    font-weight: 700;
    z-index: 9;
    animation: timerBlink 1.5s ease infinite;
}

@keyframes timerBlink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.72;
    }
}

.product-details-container {
    padding: 22px 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    flex: 1;
    position: relative;
    z-index: 1;
}

.product-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 2px;
}

.product-category-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px;
    background: rgba(0, 212, 187, 0.07);
    color: var(--teal-300);
    border: 1px solid var(--border-teal);
    border-radius: var(--r-full);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    flex-shrink: 0;
}

.product-category-badge i {
    font-size: 9px;
}

.product-title {
    margin: 0;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
    flex: 1;
}

.product-title a {
    color: var(--text-100);
    transition: var(--t-fast);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-title a:hover {
    color: var(--teal-300);
}

.product-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.info-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 11px 5px;
    background: rgba(0, 212, 187, 0.04);
    border: 1px solid var(--border-dim);
    border-radius: var(--r-sm);
    transition: var(--t-base);
}

.info-item:hover {
    background: rgba(0, 212, 187, 0.08);
    border-color: var(--border-teal);
}

.info-item i {
    font-size: 16px;
    color: var(--teal-400);
    margin-bottom: 3px;
}

.info-label {
    font-size: 9px;
    font-weight: 700;
    color: var(--text-400);
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.info-value {
    font-size: 14px;
    font-weight: 800;
    color: var(--text-100);
}

.product-footer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-top: 14px;
    border-top: 1px solid var(--border-dim);
    margin-top: auto;
}

.price-container {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.price-label {
    font-size: 9px;
    font-weight: 700;
    color: var(--text-400);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-amount {
    display: flex;
    align-items: baseline;
    gap: 3px;
}

.currency {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-400);
}

.amount {
    font-size: 22px;
    font-weight: 600;
    color: var(--teal-300);
    line-height: 1;
    text-shadow: 0 0 20px rgba(0, 212, 187, 0.3);
}

.btn-reserve-modern {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 11px 17px;
    background: var(--grad-teal);
    color: var(--bg-void);
    border-radius: var(--r-md);
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    border: none;
    transition: var(--t-base);
    white-space: nowrap;
    box-shadow: var(--shadow-teal);
    font-family: 'Outfit', sans-serif;
}

.btn-reserve-modern:hover {
    transform: translateY(-2px);
    filter: brightness(1.08);
    box-shadow: 0 10px 30px var(--teal-glow);
}

.btn-reserve-modern:active {
    transform: scale(0.97);
}

.btn-reserve-modern i {
    font-size: 12px;
}

.btn-reserve-modern:disabled {
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-400);
    box-shadow: none;
    cursor: not-allowed;
    transform: none;
    filter: none;
}

.empty-state {
    text-align: center;
    padding: 80px 20px;
}

.empty-state i {
    font-size: 50px;
    color: var(--text-400);
    margin-bottom: 16px;
    display: block;
}

.empty-state h3 {
    font-family: 'Syne', sans-serif;
    font-size: 20px;
    color: var(--text-300);
    margin-bottom: 8px;
}

.empty-state p {
    color: var(--text-400);
}

/* ============================================================
   ABOUT
   ============================================================ */
.about-section {
    max-width: 760px;
}

.page-title {
    font-family: 'Syne', sans-serif;
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 26px;
    background: var(--grad-teal);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.about-text {
    font-size: 15px;
    line-height: 1.9;
    color: var(--text-300);
}

.about-text p {
    margin-bottom: 16px;
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 14px;
}

.gallery-item {
    position: relative;
    border-radius: var(--r-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    border: 1px solid var(--border-teal);
    transition: var(--t-base);
}

.gallery-item:hover {
    border-color: var(--teal-400);
    transform: scale(1.02);
    box-shadow: var(--shadow-teal);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 30%, rgba(3, 7, 15, 0.82) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--t-base);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 28px;
    color: var(--teal-300);
    text-shadow: 0 0 16px var(--teal-glow);
}

.gallery-lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    inset: 0;
    background: rgba(3, 7, 15, 0.97);
    backdrop-filter: blur(20px);
}

.gallery-lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.gallery-lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
}

.gallery-lightbox-image {
    width: 100%;
    height: auto;
    max-height: 85vh;
    object-fit: contain;
    border-radius: var(--r-lg);
    border: 1px solid var(--border-teal);
    box-shadow: var(--shadow-xl), var(--shadow-teal);
}

.gallery-lightbox-close {
    position: absolute;
    top: -42px;
    right: 0;
    font-size: 30px;
    color: var(--text-400);
    cursor: pointer;
    transition: var(--t-fast);
    line-height: 1;
}

.gallery-lightbox-close:hover {
    color: var(--teal-300);
}

.gallery-lightbox-prev, .gallery-lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    background: rgba(0, 212, 187, 0.08);
    border: 1px solid var(--border-teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--text-300);
    cursor: pointer;
    transition: var(--t-fast);
    user-select: none;
}

.gallery-lightbox-prev:hover, .gallery-lightbox-next:hover {
    background: var(--teal-400);
    color: var(--bg-void);
    border-color: var(--teal-400);
    box-shadow: var(--shadow-teal);
}

.gallery-lightbox-prev {
    left: -58px;
}

.gallery-lightbox-next {
    right: -58px;
}

.gallery-lightbox-counter {
    position: absolute;
    bottom: -34px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 12px;
    color: var(--text-400);
    font-family: 'JetBrains Mono', monospace;
}

/* ============================================================
   FACILITIES
   ============================================================ */
.facilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 18px;
}

.facility-card {
    background: rgba(0, 212, 187, 0.04);
    border: 1px solid var(--border-teal);
    border-radius: var(--r-lg);
    padding: 24px 14px;
    text-align: center;
    transition: var(--t-base);
}

.facility-card:hover {
    border-color: var(--teal-400);
    transform: translateY(-6px);
    background: rgba(0, 212, 187, 0.07);
    box-shadow: var(--shadow-teal);
}

.facility-icon {
    width: 58px;
    height: 58px;
    margin: 0 auto 13px;
    background: rgba(0, 212, 187, 0.08);
    border: 1px solid var(--border-teal);
    border-radius: var(--r-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.facility-icon img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.facility-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-300);
    margin: 0;
}

.facility-card:hover .facility-name {
    color: var(--teal-300);
}

/* ============================================================
   HOURS
   ============================================================ */
.hours-list {
    border: 1px solid var(--border-teal);
    border-radius: var(--r-lg);
    overflow: hidden;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 17px 22px;
    border-bottom: 1px solid var(--border-dim);
    transition: var(--t-fast);
}

.hours-item:last-child {
    border-bottom: none;
}

.hours-item:hover {
    background: rgba(0, 212, 187, 0.03);
}

.hours-day {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: var(--text-200);
    font-size: 14px;
}

.hours-day i {
    color: var(--teal-400);
}

.hours-time {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
}

.time {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    font-weight: 500;
    color: var(--teal-300);
}

.time i {
    color: var(--text-400);
    font-size: 10px;
}

.badge {
    padding: 4px 14px;
    border-radius: var(--r-full);
    font-size: 11px;
    font-weight: 700;
}

.badge-closed {
    background: rgba(255, 92, 74, 0.10);
    color: var(--coral-400);
    border: 1px solid var(--border-coral);
}

.badge-undefined {
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-400);
    border: 1px solid var(--border-dim);
}

/* ============================================================
   LOCATION
   ============================================================ */
.location-section {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.location-header {
    background: linear-gradient(135deg, rgba(0, 212, 187, 0.10) 0%, rgba(184, 255, 60, 0.05) 50%, rgba(255, 92, 74, 0.04) 100%);
    border: 1px solid var(--border-teal);
    padding: 26px 30px;
    border-radius: var(--r-xl);
}

.location-header-content {
    display: flex;
    align-items: center;
    gap: 18px;
}

.location-icon-wrapper {
    width: 54px;
    height: 54px;
    background: var(--grad-teal);
    border-radius: var(--r-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: var(--shadow-teal);
}

.location-icon-wrapper i {
    font-size: 22px;
    color: var(--bg-void);
}

.location-title {
    font-family: 'Syne', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--text-100);
    margin: 0 0 4px;
}

.location-subtitle {
    font-size: 13px;
    color: var(--text-400);
    margin: 0;
}

.location-info-card {
    background: rgba(0, 212, 187, 0.03);
    border: 1px solid var(--border-teal);
    border-radius: var(--r-xl);
    padding: 28px 30px;
}

.location-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 22px;
    margin-bottom: 26px;
    padding-bottom: 26px;
    border-bottom: 1px solid var(--border-dim);
}

.location-info-item {
    display: flex;
    align-items: center;
    gap: 13px;
}

.location-qr-item {
    justify-content: center;
    gap: 0;
}

.info-content-qr {
    align-items: center;
}

.info-content-qr img {
    margin-bottom: 0 !important;
}

.info-icon {
    width: 42px;
    height: 42px;
    background: rgba(0, 212, 187, 0.08);
    border: 1px solid var(--border-teal);
    border-radius: var(--r-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon i {
    font-size: 17px;
    color: var(--teal-400);
}

.info-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.info-label {
    font-size: 10px;
    font-weight: 700;
    color: var(--text-400);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-value {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-100);
}

.location-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 11px;
}

.location-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: var(--r-md);
    font-size: 13px;
    font-weight: 700;
    transition: var(--t-base);
    cursor: pointer;
    border: none;
    text-decoration: none;
    flex: 1;
    justify-content: center;
    min-width: 145px;
    font-family: 'Outfit', sans-serif;
}

.location-action-btn.primary {
    background: var(--grad-teal);
    color: var(--bg-void);
    box-shadow: var(--shadow-teal);
}

.location-action-btn.primary:hover {
    transform: translateY(-3px);
    filter: brightness(1.06);
}

.location-action-btn.secondary {
    background: rgba(0, 212, 187, 0.06);
    color: var(--text-300);
    border: 1px solid var(--border-teal);
}

.location-action-btn.secondary:hover {
    background: rgba(0, 212, 187, 0.11);
    color: var(--teal-300);
    transform: translateY(-3px);
}

.location-action-btn.tertiary {
    background: rgba(34, 201, 122, 0.10);
    color: var(--success);
    border: 1px solid rgba(34, 201, 122, 0.25);
}

.location-action-btn.tertiary:hover {
    background: rgba(34, 201, 122, 0.17);
    transform: translateY(-3px);
}

.location-action-btn i {
    font-size: 14px;
}

.map-container {
    border: 1px solid var(--border-teal);
    border-radius: var(--r-xl);
    overflow: hidden;
    padding: 6px;
    background: rgba(0, 212, 187, 0.02);
}

.location-map {
    width: 100%;
    height: 480px;
    border: none;
    border-radius: var(--r-lg);
    filter: grayscale(15%) contrast(1.05) brightness(0.9);
}

/* ============================================================
   VIDEO
   ============================================================ */
.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    border-radius: var(--r-xl);
    overflow: hidden;
    border: 1px solid var(--border-teal);
    box-shadow: var(--shadow-lg), var(--shadow-teal);
}

.video-wrapper iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

/* ============================================================
   ADS SECTION
   ============================================================ */
.ads-section {
    padding: 80px 0;
    background: var(--bg-deep);
    position: relative;
    overflow: hidden;
}

.ads-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--teal-400), transparent);
    opacity: 0.25;
}

.section-heading {
    font-family: 'Syne', sans-serif;
    font-size: 34px;
    font-weight: 800;
    letter-spacing: -0.5px;
    text-align: center;
    width: 100%;
    justify-content: center;
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 46px;
    background: var(--grad-teal);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-heading i {
    -webkit-text-fill-color: var(--coral-400);
    font-size: 26px;
}

.ads-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 22px;
}

.ad-card {
    background: var(--grad-card);
    border: 1px solid var(--border-teal);
    border-radius: var(--r-xl);
    overflow: hidden;
    text-decoration: none;
    transition: var(--t-base);
}

.ad-card:hover {
    border-color: var(--teal-400);
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl), var(--shadow-teal);
}

.ad-image-wrapper {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: var(--bg-abyss);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.ad-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ad-image.has-image {
    background: var(--bg-abyss);
}

.ad-image.has-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}

.ad-card:hover .ad-image.has-image img {
    transform: scale(1.08);
}

.ad-image.no-image {
    background: linear-gradient(135deg, rgba(0, 212, 187, 0.08) 0%, rgba(9, 18, 34, 0.5) 100%);
    border: 1px solid var(--border-teal);
}

.no-image-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    height: 100%;
}

.image-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 68px;
    height: 68px;
    background: rgba(0, 212, 187, 0.12);
    border-radius: var(--r-lg);
    border: 1px solid var(--border-teal);
    transition: var(--t-base);
}

.ad-card:hover .image-icon-wrapper {
    background: rgba(0, 212, 187, 0.18);
    border-color: var(--teal-400);
    transform: scale(1.1);
}

.image-icon-wrapper i {
    font-size: 32px;
    color: var(--teal-300);
}

.no-image-text {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-300);
    letter-spacing: 0.3px;
}

.ad-content {
    padding: 18px 20px;
}

.ad-content h4,
.ad-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-100);
    margin-bottom: 8px;
    line-height: 1.4;
    margin: 0 0 8px 0;
}

.ad-date {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--text-400);
    margin: 0;
}

.ad-date i {
    color: var(--teal-500);
    font-size: 11px;
}

/* ============================================================
   UTILITIES
   ============================================================ */
.text-center {
    text-align: center;
}

.hidden {
    display: none !important;
}

.visible {
    display: block !important;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
}

/* ============================================================
   MODAL BACKDROP REMOVAL
   ============================================================ */
/* Remove modal backdrop overlay completely */
.modal-backdrop {
    display: none !important;
    opacity: 0 !important;
    background-color: transparent !important;
    z-index: -1 !important;
}

.modal-backdrop.fade {
    display: none !important;
}

.modal-backdrop.show {
    display: none !important;
    opacity: 0 !important;
}

.modal-backdrop.fade.show {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
}

/* Ensure modal dialog is still visible and accessible */
.modal {
    background-color: transparent;
}

.modal.show {
    background-color: transparent;
}

.modal-dialog {
    position: relative;
    z-index: 1050;
}

button:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible {
    outline: 2px solid var(--teal-400);
    outline-offset: 3px;
}

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

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}

/* ============================================================
   RESPONSIVE — 1024px
   ============================================================ */
@media (max-width: 1024px) {
    .container, .container-contend, .bookingbar-container {
        padding: 0 24px;
    }

    .hero-modern-gradient {
        min-height: 100vh;
        align-items: flex-end;
    }

    /* Adjust animated orbs for tablet */
    .hero-gradient-overlay::before {
        width: 500px;
        height: 500px;
        top: -50px;
        right: 5%;
        filter: blur(90px);
    }

    .hero-gradient-overlay::after {
        width: 400px;
        height: 400px;
        bottom: -30px;
        left: 5%;
        filter: blur(90px);
    }

    .hero-modern-gradient::after {
        width: 300px;
        height: 300px;
        bottom: 22%;
        right: 18%;
        filter: blur(75px);
    }

    .hero-content-wrapper {
        padding: 0 0 80px;
    }

    .business-profile-card {
        padding: 44px 36px;
        max-width: 700px;
    }

    .business-name {
        font-size: 33px;
    }

    .booking-bar-sticky {
        width: 90%;
        padding: 22px 26px;
    }

    .form-grid {
        gap: 14px;
    }

    .field-input {
        padding: 12px 14px;
        font-size: 13px;
    }

    .search-btn {
        padding: 12px 22px;
    }

    .tab-content-wrapper {
        padding: 36px 32px;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
        gap: 18px;
    }

    .location-map {
        height: 420px;
    }

    .location-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-item {
        min-width: 110px;
        max-width: 150px;
    }

    .stat-value {
        font-size: 22px;
    }
}

/* ============================================================
   RESPONSIVE — 768px
   ============================================================ */
@media (max-width: 768px) {
    .container, .container-contend, .bookingbar-container {
        padding: 0 18px;
    }

    .hero-modern-gradient {
        min-height: 90vh;
        align-items: flex-end;
    }

    /* Optimize orbs for small tablets */
    .hero-gradient-overlay::before {
        width: 450px;
        height: 450px;
        top: -40px;
        right: 3%;
        filter: blur(85px);
    }

    .hero-gradient-overlay::after {
        width: 350px;
        height: 350px;
        bottom: -20px;
        left: 3%;
        filter: blur(85px);
    }

    .hero-modern-gradient::after {
        width: 280px;
        height: 280px;
        bottom: 20%;
        right: 16%;
        filter: blur(70px);
    }

    .hero-content-wrapper {
        padding: 0 0 60px;
    }

    .business-profile-card {
        padding: 34px 22px;
        border-radius: var(--r-xl);
        max-width: 680px;
    }

    .profile-avatar-section, .business-avatar {
        width: 108px;
        height: 108px;
    }

    .business-name {
        font-size: 30px;
        letter-spacing: -0.8px;
        margin-bottom: 14px;
    }

    .meta-item {
        padding: 7px 13px;
        font-size: 11px;
    }

    .stats-row {
        gap: 8px;
        flex-wrap: nowrap;
    }

    .stat-item {
        min-width: 0;
        flex: 1;
        padding: 13px 8px;
    }

    .stat-value {
        font-size: 18px;
    }

    .stat-icon, .stat-icon-wrapper {
        width: 36px;
        height: 36px;
    }

    .stat-icon i, .stat-icon-wrapper i {
        font-size: 15px;
    }

    .booking-bar-sticky {
        width: 95%;
        padding: 18px 18px;
        border-radius: var(--r-xl);
        margin: -22px auto 0;
    }

    .form-grid {
        grid-template-columns: 1fr 1fr auto;
        gap: 9px;
    }

    .field-label {
        font-size: 9px;
        font-weight: 600;
    }

    .field-input {
        padding: 10px 12px;
        font-size: 12px;
        border-radius: var(--r-sm);
    }

    .search-btn {
        padding: 10px 15px;
        font-size: 12px;
        gap: 5px;
    }

    .main-content-section {
        padding: 42px 0 0;
    }

    .tab-link {
        padding: 9px 13px;
        font-size: 12px;
    }

    .tab-content-wrapper {
        padding: 22px 16px;
        border-radius: var(--r-xl);
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 13px;
    }

    .product-details-container {
        padding: 13px 11px;
        gap: 9px;
    }

    .product-title {
        font-size: 13px;
    }

    .product-title a {
        font-size: 12px;
    }

    .product-category-badge {
        font-size: 9px;
        padding: 3px 8px;
    }

    .info-item {
        padding: 8px 4px;
    }

    .info-item i {
        font-size: 14px;
    }

    .info-value {
        font-size: 12px;
    }

    .info-label {
        font-size: 8px;
    }

    .amount {
        font-size: 19px;
    }

    .btn-reserve-modern {
        padding: 9px 11px;
        font-size: 11px;
    }

    .featured-ribbon {
        padding: 4px 10px;
        font-size: 9px;
        top: 10px;
        left: 10px;
    }

    .discount-badge {
        top: 42px;
        left: 10px;
        min-width: 43px;
    }

    .discount-value {
        font-size: 13px;
    }

    .product-wishlist-btn {
        width: 33px;
        height: 33px;
        top: 10px;
        right: 10px;
    }

    .product-wishlist-btn i {
        font-size: 13px;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(155px, 1fr));
    }

    .facilities-grid {
        grid-template-columns: repeat(auto-fill, minmax(128px, 1fr));
    }

    .categories-grid {
        grid-template-columns: repeat(auto-fill, minmax(108px, 1fr));
    }

    .location-info-grid {
        grid-template-columns: 1fr;
    }

    .location-header-content {
        flex-direction: column;
        text-align: center;
    }

    .location-actions {
        flex-direction: column;
    }

    .location-action-btn {
        width: 100%;
        min-width: auto;
    }

    .location-map {
        height: 310px;
    }

    .hours-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
        padding: 14px 16px;
    }

    .ads-section {
        padding: 50px 0;
    }

    .section-heading {
        font-size: 24px;
    }

    .ads-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .ad-image-wrapper {
        height: 160px;
    }

    .image-icon-wrapper {
        width: 56px;
        height: 56px;
    }

    .image-icon-wrapper i {
        font-size: 26px;
    }

    .no-image-text {
        font-size: 12px;
    }

    .ad-content {
        padding: 14px 16px;
    }

    .ad-content h4,
    .ad-title {
        font-size: 13px;
    }

    .gallery-lightbox-prev {
        left: -38px;
    }

    .gallery-lightbox-next {
        right: -38px;
    }
}

/* ============================================================
   RESPONSIVE — 480px MOBILE
   ============================================================ */
@media (max-width: 480px) {
    .container, .container-contend, .bookingbar-container {
        padding: 0 13px;
    }

    .hero-modern-gradient {
        min-height: 58vh;
    }

    .hero-content-wrapper {
        padding: 0 0 44px;
    }

    .business-profile-card {
        padding: 26px 16px;
        border-radius: var(--r-xl);
    }

    .profile-avatar-section {
        width: 88px;
        height: 88px;
        margin-bottom: 18px;
    }

    .business-avatar {
        width: 88px;
        height: 88px;
    }

    .verified-badge {
        width: 24px;
        height: 24px;
    }

    .verified-badge i {
        font-size: 10px;
    }

    .business-name {
        font-size: 24px;
        letter-spacing: -0.5px;
    }

    .business-name::after {
        width: 40px;
        height: 2px;
    }

    .business-meta {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 7px;
        margin: 14px 0 22px;
    }

    .meta-item {
        padding: 7px 10px;
        font-size: 11px;
        justify-content: center;
        border-radius: var(--r-sm);
    }

    .stats-row {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 6px;
    }

    .stat-item {
        max-width: 100%;
        padding: 11px 5px;
    }

    .stat-value {
        font-size: 15px;
    }

    .stat-label {
        font-size: 7px;
        letter-spacing: 0.5px;
    }

    .stat-icon, .stat-icon-wrapper {
        width: 30px;
        height: 30px;
    }

    .stat-icon i, .stat-icon-wrapper i {
        font-size: 12px;
    }

    .booking-bar-sticky {
        width: 92%;
        padding: 18px 15px;
        border-radius: var(--r-xl);
        margin: -18px auto 0;
    }

    .form-grid {
        display: flex;
        flex-direction: column;
        gap: 13px;
    }

    .field-label {
        font-size: 11px;
    }

    .field-input {
        padding: 13px 15px;
        font-size: 13px;
    }

    .search-btn {
        width: 100%;
        padding: 13px;
        justify-content: center;
        border-radius: var(--r-md);
    }

    .occupancy-dropdown {
        left: 0;
        right: 0;
    }

    .main-content-section {
        padding: 26px 0 0;
    }

    .content-tabs {
        padding: 4px;
        gap: 2px;
    }

    .tab-link {
        padding: 8px 10px;
        font-size: 11px;
        gap: 5px;
    }

    .tab-link span {
        display: none;
    }

    .tab-link i {
        font-size: 16px;
    }

    .tab-link.active span {
        display: inline;
        font-size: 11px;
    }

    .tab-content-wrapper {
        padding: 16px 13px;
        border-radius: var(--r-lg);
    }

    .section-title {
        font-size: 17px;
        margin-bottom: 18px;
    }

    /* Horizontal cards on mobile */
    .products-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    /*.product-card-modern {*/
    /*    flex-direction: row;*/
    /*    height: auto;*/
    /*    border-radius: var(--r-lg);*/
    /*}*/

    /*.product-image-container {*/
    /*    width: 128px;*/
    /*    flex-shrink: 0;*/
    /*    padding-top: 0;*/
    /*    height: 158px;*/
    /*    position: relative;*/
    /*}*/

    /*.product-image-link {*/
    /*    position: absolute;*/
    /*    inset: 0;*/
    /*    width: 128px;*/
    /*    height: 158px;*/
    /*    display: block;*/
    /*}*/

    .product-details-container {
        padding: 13px 11px;
    }

    .featured-ribbon, .discount-badge, .gallery-indicator {
        display: none;
    }

    .product-wishlist-btn {
        top: 6px;
        right: 6px;
        width: 28px;
        height: 28px;
    }

    .product-wishlist-btn i {
        font-size: 11px;
    }

    .availability-badge {
        bottom: 6px;
        right: 6px;
        padding: 3px 7px;
        font-size: 8px;
    }

    .product-info-grid {
        gap: 5px;
    }

    .info-item {
        padding: 6px 3px;
    }

    .info-item i {
        font-size: 12px;
    }

    .info-value {
        font-size: 11px;
    }

    .amount {
        font-size: 17px;
    }

    .currency {
        font-size: 11px;
    }

    .btn-reserve-modern {
        padding: 7px 9px;
        font-size: 10px;
        gap: 4px;
    }

    .categories-grid {
        grid-template-columns: repeat(auto-fill, minmax(88px, 1fr));
        gap: 9px;
    }

    .category-card {
        padding: 13px 9px;
    }

    .category-image {
        width: 48px;
        height: 48px;
    }

    .category-name {
        font-size: 11px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 9px;
    }

    .facilities-grid {
        grid-template-columns: repeat(auto-fill, minmax(98px, 1fr));
        gap: 11px;
    }

    .facility-card {
        padding: 14px 9px;
    }

    .facility-icon {
        width: 46px;
        height: 46px;
    }

    .facility-name {
        font-size: 11px;
    }

    .location-header {
        padding: 16px 14px;
    }

    .location-info-card {
        padding: 16px 13px;
    }

    .location-map {
        height: 250px;
    }

    .location-title {
        font-size: 19px;
    }

    .page-title {
        font-size: 24px;
    }

    .about-text {
        font-size: 14px;
    }

    .ads-section {
        padding: 38px 0;
    }

    .section-heading {
        font-size: 20px;
        margin-bottom: 24px;
    }

    .ads-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .gallery-lightbox-prev {
        left: 8px;
        top: auto;
        bottom: 56px;
        transform: none;
    }

    .gallery-lightbox-next {
        right: 8px;
        top: auto;
        bottom: 56px;
        transform: none;
    }

    .gallery-lightbox-close {
        position: fixed;
        top: 14px;
        right: 14px;
    }

    .gallery-lightbox-image {
        max-height: 68vh;
        border-radius: var(--r-md);
    }

    .filters-grid {
        display: flex;
        flex-direction: column;
        gap: 9px;
    }

    .filter-select, .filter-input {
        background: rgba(0, 212, 187, 0.04);
        border: 1px solid var(--border-teal);
        border-radius: var(--r-sm);
        color: var(--text-200);
    }
}

/* ============================================================
   RESPONSIVE — 425px SMALL MOBILE
   ============================================================ */
@media (max-width: 425px) {
    .hero-modern-gradient {
        min-height: 52vh;
        align-items: flex-end;
    }

    /* Reduce animated orb sizes */
    .hero-gradient-overlay::before {
        width: 400px;
        height: 400px;
        top: -60px;
        right: 0%;
        filter: blur(80px);
    }

    .hero-gradient-overlay::after {
        width: 320px;
        height: 320px;
        bottom: 0;
        left: 0%;
        filter: blur(80px);
    }

    .hero-modern-gradient::after {
        width: 280px;
        height: 280px;
        bottom: 18%;
        right: 15%;
        filter: blur(70px);
    }

    .hero-content-wrapper {
        padding: 0 0 38px;
    }

    .business-profile-card {
        padding: 22px 14px;
        border-radius: var(--r-lg);
        max-width: 100%;
    }

    .profile-avatar-section {
        width: 80px;
        height: 80px;
        margin-bottom: 16px;
    }

    .business-avatar {
        width: 80px;
        height: 80px;
    }

    .business-name {
        font-size: 22px;
        letter-spacing: -0.5px;
        margin-bottom: 12px;
    }

    .business-meta {
        grid-template-columns: 1fr 1fr;
        gap: 6px;
        margin: 12px 0 16px;
    }

    .meta-item {
        padding: 6px 8px;
        font-size: 10px;
        border-radius: var(--r-sm);
    }

    .meta-item i {
        font-size: 11px;
    }

    .stats-row {
        gap: 5px;
    }

    .stat-item {
        padding: 10px 4px;
    }

    .stat-value {
        font-size: 14px;
    }

    .stat-label {
        font-size: 7px;
    }

    .booking-bar-sticky {
        width: 90%;
        padding: 16px 13px;
        margin: -16px auto 0;
    }

    .form-grid {
        gap: 11px;
        align-items: normal;
    }

    .field-label {
        font-size: 10px;
    }

    .field-input {
        padding: 11px 12px;
        font-size: 12px;
        border-radius: var(--r-sm);
    }

    .search-btn {
        font-size: 12px;
        padding: 11px;
        gap: 4px;
    }

    .search-btn i {
        font-size: 12px;
    }

    .search-btn span {
        font-size: 12px;
    }
}

/* ============================================================
   RESPONSIVE — 320px EXTRA SMALL MOBILE
   ============================================================ */
@media (max-width: 320px) {
    .hero-modern-gradient {
        min-height: 48vh;
    }

    /* Minimize orb effects on ultra-small screens */
    .hero-gradient-overlay::before {
        width: 300px;
        height: 300px;
        top: -40px;
        right: -20%;
        filter: blur(70px);
        opacity: 0.7;
    }

    .hero-gradient-overlay::after {
        width: 250px;
        height: 250px;
        bottom: -20px;
        left: -10%;
        filter: blur(70px);
        opacity: 0.7;
    }

    .hero-modern-gradient::after {
        width: 200px;
        height: 200px;
        bottom: 15%;
        right: 10%;
        filter: blur(60px);
        opacity: 0.6;
    }

    .hero-content-wrapper {
        padding: 0 0 32px;
    }

    .business-profile-card {
        padding: 18px 12px;
        border-radius: var(--r-md);
        margin: 0 auto;
    }

    .profile-avatar-section {
        width: 70px;
        height: 70px;
        margin-bottom: 12px;
    }

    .business-avatar {
        width: 70px;
        height: 70px;
    }

    .verified-badge {
        width: 22px;
        height: 22px;
        bottom: -6px;
        right: -4px;
    }

    .verified-badge i {
        font-size: 9px;
    }

    .business-name {
        font-size: 20px;
        letter-spacing: -0.5px;
        margin-bottom: 10px;
    }

    .business-name::after {
        display: none;
    }

    .business-meta {
        grid-template-columns: 1fr 1fr;
        gap: 5px;
        margin: 10px 0 14px;
    }

    .meta-item {
        padding: 5px 6px;
        font-size: 9px;
        border-radius: var(--r-sm);
    }

    .meta-item i {
        font-size: 10px;
        margin-right: 2px;
    }

    .stats-row {
        gap: 4px;
        flex-wrap: wrap;
    }

    .stat-item {
        flex: 0 0 31%;
        padding: 8px 3px;
    }

    .stat-value {
        font-size: 12px;
    }

    .stat-label {
        font-size: 6px;
        letter-spacing: 0.2px;
    }

    .stat-icon, .stat-icon-wrapper {
        width: 26px;
        height: 26px;
        margin-bottom: 2px;
    }

    .stat-icon i, .stat-icon-wrapper i {
        font-size: 11px;
    }

    .booking-bar-sticky {
        width: 88%;
        padding: 14px 11px;
        margin: -14px auto 0;
        border-radius: var(--r-lg);
    }

    .bookingbar-container {
        padding: 0 10px;
    }

    .form-grid {
        flex-direction: column;
        gap: 10px;
    }

    .form-field {
        width: 100%;
    }

    .field-label {
        font-size: 9px;
        font-weight: 600;
    }

    .field-input {
        padding: 10px 11px;
        font-size: 11px;
        border-radius: var(--r-sm);
    }

    .search-btn {
        width: 100%;
        padding: 10px 12px;
        font-size: 11px;
        gap: 3px;
    }

    .search-btn i {
        font-size: 11px;
    }

    .search-btn span {
        font-size: 11px;
    }

    .tab-content-wrapper {
        padding: 14px 10px;
        border-radius: var(--r-md);
    }

    .section-title {
        font-size: 16px;
        margin-bottom: 16px;
    }

    .content-tabs {
        padding: 3px;
        gap: 1px;
        border-radius: var(--r-lg);
    }

    .tab-link {
        padding: 7px 9px;
        font-size: 10px;
        border-radius: var(--r-sm);
        gap: 3px;
    }

    .tab-link i {
        font-size: 14px;
    }

    .tab-link span {
        display: none;
    }

    .tab-link.active span {
        display: inline;
        font-size: 10px;
    }

    /* Products Grid */
    .products-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    /*.product-card-modern {*/
    /*    flex-direction: row;*/
    /*    height: auto;*/
    /*    border-radius: var(--r-md);*/
    /*}*/

    /*.product-image-container {*/
    /*    width: 110px;*/
    /*    height: 140px;*/
    /*    flex-shrink: 0;*/
    /*}*/

    /*.product-image-link {*/
    /*    width: 110px;*/
    /*    height: 140px;*/
    /*}*/

    .product-details-container {
        padding: 11px 10px;
    }

    .product-title {
        font-size: 12px;
        line-height: 1.3;
    }

    .product-info-grid {
        gap: 4px;
        margin: 6px 0;
    }

    .info-item {
        padding: 5px 2px;
        font-size: 10px;
    }

    .info-item i {
        font-size: 10px;
    }

    .info-value {
        font-size: 10px;
    }

    .amount {
        font-size: 16px;
    }

    .currency {
        font-size: 10px;
    }

    .btn-reserve-modern {
        padding: 6px 8px;
        font-size: 9px;
        gap: 3px;
        border-radius: var(--r-sm);
    }

    .btn-reserve-modern i {
        font-size: 9px;
    }

    /* Categories */
    .categories-grid {
        grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
        gap: 8px;
    }

    .category-card {
        padding: 11px 7px;
        border-radius: var(--r-md);
    }

    .category-image {
        width: 44px;
        height: 44px;
    }

    .category-name {
        font-size: 10px;
        margin-top: 6px;
    }

    /* Gallery */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    /* Facilities */
    .facilities-grid {
        grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
        gap: 10px;
    }

    .facility-card {
        padding: 12px 8px;
    }

    .facility-icon {
        width: 42px;
        height: 42px;
    }

    .facility-name {
        font-size: 10px;
    }

    /* Location */
    .location-header {
        padding: 13px 12px;
    }

    .location-header-content {
        flex-direction: column;
        gap: 10px;
    }

    .location-icon-wrapper {
        width: 40px;
        height: 40px;
    }

    .location-icon-wrapper i {
        font-size: 18px;
    }

    .location-title {
        font-size: 18px;
    }

    .location-subtitle {
        font-size: 12px;
    }

    .location-info-card {
        padding: 14px 12px;
    }

    .location-info-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .location-info-item {
        gap: 8px;
    }

    .info-icon {
        width: 32px;
        height: 32px;
        min-width: 32px;
    }

    .info-icon i {
        font-size: 14px;
    }

    .info-label {
        font-size: 10px;
    }

    .info-value {
        font-size: 12px;
    }

    .location-actions {
        flex-direction: column;
        gap: 8px;
    }

    .location-action-btn {
        padding: 10px 12px;
        font-size: 11px;
        gap: 4px;
    }

    .location-action-btn i {
        font-size: 11px;
    }

    .location-map {
        height: 220px;
        border-radius: var(--r-md);
    }

    /* About */
    .about-section {
        padding: 20px 0;
    }

    .page-title {
        font-size: 22px;
        margin-bottom: 16px;
    }

    .about-text {
        font-size: 13px;
        line-height: 1.6;
    }

    /* Ads Section */
    .ads-section {
        padding: 32px 0;
    }

    .section-heading {
        font-size: 19px;
        margin-bottom: 20px;
    }

    .ads-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .ad-card {
        border-radius: var(--r-md);
    }

    .ad-image-wrapper {
        height: 140px;
        border-radius: var(--r-md);
    }

    .ad-image {
        border-radius: var(--r-md);
    }

    .no-image-content {
        gap: 6px;
    }

    .image-icon-wrapper {
        width: 48px;
        height: 48px;
    }

    .image-icon-wrapper i {
        font-size: 22px;
    }

    .no-image-text {
        font-size: 11px;
    }

    .ad-content {
        padding: 12px 12px;
    }

    .ad-title {
        font-size: 12px;
        line-height: 1.3;
    }

    .ad-date {
        font-size: 10px;
    }

    /* Hours */
    .hours-list {
        gap: 8px;
    }

    .hours-item {
        padding: 12px 14px;
        gap: 8px;
        border-radius: var(--r-md);
    }

    .hours-day {
        font-size: 12px;
        gap: 6px;
    }

    .hours-day i {
        font-size: 12px;
    }

    .hours-time {
        font-size: 12px;
    }

    /* Lightbox */
    .gallery-lightbox-prev {
        left: 4px;
        bottom: 50px;
    }

    .gallery-lightbox-next {
        right: 4px;
        bottom: 50px;
    }

    .gallery-lightbox-image {
        max-height: 60vh;
        border-radius: var(--r-sm);
    }

    .gallery-lightbox-close {
        top: 10px;
        right: 10px;
        font-size: 28px;
        width: 32px;
        height: 32px;
    }

    .gallery-lightbox-counter {
        font-size: 11px;
        bottom: 12px;
    }
}

/* ============================================================
   CUSTOMER REVIEWS SLIDER — NEXT LEVEL UI
   ============================================================ */

/* ── Section wrapper ─────────────────────────────────── */
.reviews-section {
    position: relative;
    padding: 110px 0 120px;
    background: var(--bg-void);
    overflow: hidden;
}

/* Aurora background orbs */
.reviews-section::before {
    content: '';
    position: absolute;
    width: 700px;
    height: 700px;
    top: -100px;
    left: -150px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 212, 187, 0.07) 0%, transparent 65%);
    filter: blur(90px);
    pointer-events: none;
    animation: floatOrb1 11s ease-in-out infinite alternate;
}

.reviews-section::after {
    content: '';
    position: absolute;
    width: 550px;
    height: 550px;
    bottom: -80px;
    right: -80px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(184, 255, 60, 0.05) 0%, transparent 65%);
    filter: blur(80px);
    pointer-events: none;
    animation: floatOrb2 13s ease-in-out infinite alternate-reverse;
}

/* Decorative grid lines */
.reviews-section .reviews-grid-lines {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 212, 187, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 212, 187, 0.025) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

/* ── Section header ──────────────────────────────────── */
.reviews-header {
    text-align: center;
    margin-bottom: 72px;
    position: relative;
    z-index: 2;
}

.reviews-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: var(--glass-teal);
    border: 1px solid var(--glass-teal-border);
    border-radius: var(--r-full);
    color: var(--teal-300);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.reviews-badge i {
    font-size: 11px;
    color: var(--lime-400);
}

.reviews-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(30px, 4vw, 52px);
    font-weight: 800;
    color: var(--text-100);
    margin-bottom: 14px;
    line-height: 1.15;
    background: linear-gradient(135deg, #f0f8ff 0%, var(--teal-300) 60%, var(--lime-300) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.reviews-subtitle {
    font-size: 16px;
    color: var(--text-300);
    margin-bottom: 36px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

/* ── Overall Rating Bar ──────────────────────────────── */
.overall-rating-bar {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    background: var(--glass);
    border: 1px solid var(--glass-teal-border);
    border-radius: var(--r-xl);
    padding: 18px 36px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-md), 0 0 40px rgba(0, 212, 187, 0.06);
}

.overall-score-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    border-right: 1px solid var(--glass-teal-border);
    padding-right: 20px;
}

.overall-score-num {
    font-family: 'Syne', sans-serif;
    font-size: 44px;
    font-weight: 800;
    line-height: 1;
    color: var(--teal-300);
    text-shadow: 0 0 30px var(--teal-glow);
}

.overall-score-max {
    font-size: 13px;
    color: var(--text-400);
}

.overall-right {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
}

.overall-stars {
    display: flex;
    gap: 4px;
}

.overall-stars i {
    font-size: 18px;
    color: var(--lime-400);
    filter: drop-shadow(0 0 6px var(--lime-glow));
}

.overall-count {
    font-size: 13px;
    color: var(--text-300);
    font-weight: 500;
}

.overall-verdict {
    font-size: 12px;
    font-weight: 700;
    color: var(--lime-400);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* ── Slider container ────────────────────────────────── */
.reviews-slider-outer {
    position: relative;
    z-index: 2;
    padding: 0 64px;
}

.reviews-slider-track-wrapper {
    overflow: hidden;
    border-radius: var(--r-xl);
}

.reviews-track {
    display: flex;
    gap: 24px;
    transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

/* ── Individual Review Card ──────────────────────────── */
.review-card {
    flex: 0 0 calc(33.333% - 16px);
    min-width: calc(33.333% - 16px);
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--r-xl);
    padding: 36px 32px;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease), opacity 0.4s var(--ease);
    opacity: 0.72;
    transform: scale(0.97);
    cursor: default;
    display: flex;
    flex-direction: column;
    gap: 20px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

/* Shimmer sweep */
.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -80%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 187, 0.04), transparent);
    pointer-events: none;
    transition: left 0.8s ease;
}

/* Top edge glow */
.review-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 20%;
    right: 20%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--teal-400), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.review-card.active {
    opacity: 1;
    transform: scale(1.03);
    border-color: var(--glass-teal-border);
    box-shadow: var(--shadow-xl), 0 0 60px rgba(0, 212, 187, 0.12), inset 0 1px 0 rgba(0, 229, 196, 0.07);
}

.review-card.active::after {
    opacity: 0.7;
}

.review-card.active::before {
    animation: scanLine 4s ease-in-out infinite;
}

/* Color variants for top border */
.review-card[data-color="teal"].active {
    box-shadow: var(--shadow-xl), var(--shadow-teal), inset 0 1px 0 rgba(0, 229, 196, 0.07);
}

.review-card[data-color="teal"]::after {
    background: linear-gradient(90deg, transparent, var(--teal-400), transparent);
}

.review-card[data-color="coral"].active {
    box-shadow: var(--shadow-xl), var(--shadow-coral), inset 0 1px 0 rgba(255, 92, 74, 0.07);
    border-color: var(--border-coral);
}

.review-card[data-color="coral"]::after {
    background: linear-gradient(90deg, transparent, var(--coral-400), transparent);
}

.review-card[data-color="lime"].active {
    box-shadow: var(--shadow-xl), var(--shadow-lime), inset 0 1px 0 rgba(184, 255, 60, 0.07);
    border-color: rgba(184, 255, 60, 0.2);
}

.review-card[data-color="lime"]::after {
    background: linear-gradient(90deg, transparent, var(--lime-400), transparent);
}

/* ── Quote Icon ──────────────────────────────────────── */
.review-quote-icon {
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 56px;
    line-height: 1;
    font-family: Georgia, serif;
    color: rgba(0, 212, 187, 0.09);
    font-weight: 900;
    pointer-events: none;
    transition: color 0.4s ease;
}

.review-card.active .review-quote-icon {
    color: rgba(0, 212, 187, 0.16);
}

.review-card[data-color="coral"] .review-quote-icon {
    color: rgba(255, 92, 74, 0.09);
}

.review-card[data-color="coral"].active .review-quote-icon {
    color: rgba(255, 92, 74, 0.16);
}

.review-card[data-color="lime"] .review-quote-icon {
    color: rgba(184, 255, 60, 0.08);
}

.review-card[data-color="lime"].active .review-quote-icon {
    color: rgba(184, 255, 60, 0.14);
}

/* ── Stars Row ───────────────────────────────────────── */
.review-stars {
    display: flex;
    gap: 5px;
    align-items: center;
}

.review-stars i {
    font-size: 14px;
    color: var(--text-400);
    transition: color 0.3s ease, filter 0.3s ease;
}

.review-stars i.filled {
    color: var(--lime-400);
    filter: drop-shadow(0 0 4px rgba(184, 255, 60, 0.5));
}

.review-rating-num {
    margin-left: 6px;
    font-size: 12px;
    font-weight: 700;
    color: var(--lime-400);
    font-family: 'JetBrains Mono', monospace;
}

/* ── Review Text ─────────────────────────────────────── */
.review-text {
    font-size: 15px;
    line-height: 1.75;
    color: var(--text-300);
    flex: 1;
    transition: color 0.4s ease;
}

.review-card.active .review-text {
    color: var(--text-200);
}

/* ── Divider ─────────────────────────────────────────── */
.review-divider {
    height: 1px;
    background: var(--border-dim);
    border-radius: 1px;
    transition: background 0.4s ease;
}

.review-card.active .review-divider {
    background: var(--glass-teal-border);
}

/* ── Reviewer Info ───────────────────────────────────── */
.review-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Syne', sans-serif;
    font-size: 16px;
    font-weight: 800;
    color: #fff;
    position: relative;
    border: 2px solid transparent;
    transition: transform 0.3s var(--ease-spring), box-shadow 0.3s ease;
}

.review-avatar.color-teal {
    background: linear-gradient(135deg, var(--teal-400), var(--teal-600));
    border-color: rgba(0, 212, 187, 0.3);
}

.review-avatar.color-coral {
    background: linear-gradient(135deg, var(--coral-400), var(--coral-500));
    border-color: rgba(255, 92, 74, 0.3);
}

.review-avatar.color-lime {
    background: linear-gradient(135deg, var(--lime-500), var(--lime-400));
    border-color: rgba(184, 255, 60, 0.3);
    color: #0d1a2e;
}

.review-avatar.color-purple {
    background: linear-gradient(135deg, #a855f7, #7c3aed);
    border-color: rgba(168, 85, 247, 0.3);
}

.review-avatar.color-orange {
    background: linear-gradient(135deg, #f97316, #ea580c);
    border-color: rgba(249, 115, 22, 0.3);
}

.review-card.active .review-avatar {
    transform: scale(1.08);
}

.review-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.review-author-info {
    flex: 1;
    min-width: 0;
}

.review-author-name {
    font-family: 'Syne', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--text-100);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.review-author-role {
    font-size: 12px;
    color: var(--text-400);
    margin-top: 2px;
}

.review-date {
    font-size: 11px;
    color: var(--text-400);
    font-family: 'JetBrains Mono', monospace;
    flex-shrink: 0;
}

/* ── Verified badge on card ──────────────────────────── */
.review-verified {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 3px 10px;
    background: var(--success-dim);
    border: 1px solid rgba(34, 201, 122, 0.18);
    border-radius: var(--r-full);
    font-size: 10px;
    font-weight: 700;
    color: var(--success);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.review-verified i {
    font-size: 9px;
}

/* ── Navigation Arrows ───────────────────────────────── */
.reviews-slider-outer .slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    background: var(--glass);
    border: 1px solid var(--glass-teal-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--teal-300);
    font-size: 18px;
    transition: var(--t-base);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: var(--shadow-md), 0 0 20px rgba(0, 212, 187, 0.08);
    z-index: 10;
}

.reviews-slider-outer .slider-arrow:hover {
    background: var(--glass-teal);
    border-color: var(--teal-400);
    color: var(--teal-200);
    box-shadow: var(--shadow-lg), var(--shadow-teal);
    transform: translateY(-50%) scale(1.1);
}

.reviews-slider-outer .slider-arrow:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    transform: translateY(-50%) scale(1);
}

.reviews-slider-outer .slider-arrow-prev {
    left: 0;
}

.reviews-slider-outer .slider-arrow-next {
    right: 0;
}

/* ── Dots + Progress ─────────────────────────────────── */
.reviews-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    margin-top: 48px;
    position: relative;
    z-index: 2;
}

.reviews-dots {
    display: flex;
    gap: 10px;
    align-items: center;
}

.reviews-dot {
    width: 8px;
    height: 8px;
    border-radius: var(--r-full);
    background: var(--text-400);
    cursor: pointer;
    transition: all 0.35s var(--ease);
    border: none;
    padding: 0;
    opacity: 0.4;
}

.reviews-dot.active {
    width: 28px;
    background: var(--grad-teal);
    opacity: 1;
    box-shadow: 0 0 10px var(--teal-glow);
}

/* ── Auto-play Progress Bar ──────────────────────────── */
.reviews-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--border-dim);
    overflow: hidden;
    border-radius: 1px;
}

.reviews-progress-fill {
    height: 100%;
    background: var(--grad-teal);
    border-radius: 1px;
    width: 0%;
    transition: width 0.1s linear;
    box-shadow: 0 0 8px var(--teal-glow);
}

/* ── Play/Pause toggle ───────────────────────────────── */
.reviews-play-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--glass-teal);
    border: 1px solid var(--glass-teal-border);
    color: var(--teal-300);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--t-base);
    font-size: 13px;
    flex-shrink: 0;
}

.reviews-play-btn:hover {
    background: var(--teal-glow-sm);
    border-color: var(--teal-400);
    color: var(--teal-200);
    box-shadow: 0 0 18px var(--teal-glow-sm);
}

/* ── Stats Row below slider ──────────────────────────── */
.reviews-stats {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-top: 72px;
    background: var(--glass);
    border: 1px solid var(--glass-teal-border);
    border-radius: var(--r-xl);
    overflow: hidden;
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.reviews-stat-item {
    flex: 1;
    padding: 32px 24px;
    text-align: center;
    border-right: 1px solid var(--border-dim);
    transition: background 0.3s ease;
    position: relative;
}

.reviews-stat-item:last-child {
    border-right: none;
}

.reviews-stat-item:hover {
    background: var(--glass-teal);
}

.reviews-stat-num {
    font-family: 'Syne', sans-serif;
    font-size: 36px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 6px;
    background: var(--grad-teal);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.reviews-stat-item:nth-child(2) .reviews-stat-num {
    background: var(--grad-coral);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.reviews-stat-item:nth-child(3) .reviews-stat-num {
    background: var(--grad-lime);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.reviews-stat-item:nth-child(4) .reviews-stat-num {
    background: linear-gradient(135deg, #a855f7, #7c3aed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.reviews-stat-label {
    font-size: 12px;
    color: var(--text-400);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}

/* ── Touch drag cursor ───────────────────────────────── */
.reviews-track.dragging {
    cursor: grabbing;
    transition: none;
}

.reviews-track {
    cursor: grab;
}

.w-100px{
    width: 100px;
}


/* ============================================================
   REVIEWS — RESPONSIVE 1024px
   ============================================================ */
@media (max-width: 1024px) {
    .reviews-section {
        padding: 80px 0 90px;
    }

    .reviews-header {
        margin-bottom: 56px;
    }

    .reviews-slider-outer {
        padding: 0 52px;
    }

    .review-card {
        flex: 0 0 calc(50% - 12px);
        min-width: calc(50% - 12px);
        padding: 28px 24px;
    }

    .reviews-stats {
        max-width: 700px;
        margin-top: 56px;
    }

    .reviews-stat-num {
        font-size: 30px;
    }

    .reviews-stat-item {
        padding: 26px 16px;
    }

    .overall-rating-bar {
        padding: 16px 28px;
        gap: 16px;
    }

    .overall-score-num {
        font-size: 38px;
    }
}

/* ============================================================
   REVIEWS — RESPONSIVE 768px
   ============================================================ */
@media (max-width: 768px) {
    .reviews-section {
        padding: 64px 0 72px;
    }

    .reviews-title {
        font-size: 28px;
    }

    .reviews-subtitle {
        font-size: 14px;
    }

    .reviews-header {
        margin-bottom: 44px;
    }

    .reviews-slider-outer {
        padding: 0 44px;
    }

    .reviews-slider-outer .slider-arrow {
        width: 42px;
        height: 42px;
        font-size: 15px;
    }

    .review-card {
        flex: 0 0 calc(100% - 0px);
        min-width: calc(100% - 0px);
        padding: 28px 24px;
        opacity: 1;
        transform: scale(1);
    }

    .review-card.active {
        transform: scale(1);
    }

    .reviews-stats {
        flex-wrap: wrap;
        max-width: 100%;
        margin-top: 44px;
    }

    .reviews-stat-item {
        flex: 1 1 50%;
        border-right: none;
        border-bottom: 1px solid var(--border-dim);
        padding: 22px 16px;
    }

    .reviews-stat-item:nth-child(1),
    .reviews-stat-item:nth-child(2) {
        border-right: none;
    }

    .reviews-stat-item:nth-child(odd) {
        border-right: 1px solid var(--border-dim);
    }

    .reviews-stat-item:nth-child(3),
    .reviews-stat-item:nth-child(4) {
        border-bottom: none;
    }

    .reviews-stat-num {
        font-size: 28px;
    }

    .overall-rating-bar {
        flex-direction: column;
        gap: 12px;
        padding: 18px 24px;
        text-align: center;
    }

    .overall-score-block {
        border-right: none;
        border-bottom: 1px solid var(--glass-teal-border);
        padding-right: 0;
        padding-bottom: 12px;
        width: 100%;
        justify-content: center;
    }

    .overall-right {
        align-items: center;
    }
}

/* ============================================================
   REVIEWS — RESPONSIVE 425px
   ============================================================ */
@media (max-width: 425px) {
    .reviews-section {
        padding: 52px 0 60px;
    }

    .reviews-badge {
        font-size: 10px;
        padding: 6px 14px;
        letter-spacing: 1.5px;
    }

    .reviews-title {
        font-size: 24px;
    }

    .reviews-subtitle {
        font-size: 13px;
    }

    .reviews-header {
        margin-bottom: 36px;
    }

    .reviews-slider-outer {
        padding: 0 38px;
    }

    .reviews-slider-outer .slider-arrow {
        width: 36px;
        height: 36px;
        font-size: 13px;
    }

    .review-card {
        padding: 22px 18px;
        gap: 16px;
        border-radius: var(--r-lg);
    }

    .review-text {
        font-size: 14px;
        line-height: 1.65;
    }

    .review-avatar {
        width: 44px;
        height: 44px;
        font-size: 14px;
    }

    .review-author-name {
        font-size: 14px;
    }

    .review-quote-icon {
        font-size: 44px;
        top: 16px;
        right: 18px;
    }

    .reviews-controls {
        gap: 18px;
        margin-top: 36px;
    }

    .reviews-stats {
        margin-top: 36px;
    }

    .reviews-stat-num {
        font-size: 24px;
    }

    .reviews-stat-label {
        font-size: 10px;
    }

    .reviews-stat-item {
        padding: 18px 10px;
    }

    .overall-rating-bar {
        padding: 16px 18px;
    }

    .overall-score-num {
        font-size: 34px;
    }

    .overall-stars i {
        font-size: 15px;
    }
}

/* ============================================================
   REVIEWS — RESPONSIVE 375px
   ============================================================ */
@media (max-width: 375px) {
    .reviews-title {
        font-size: 22px;
    }

    .reviews-slider-outer {
        padding: 0 34px;
    }

    .reviews-slider-outer .slider-arrow {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }

    .review-card {
        padding: 20px 16px;
        gap: 14px;
    }

    .review-text {
        font-size: 13px;
    }

    .review-avatar {
        width: 40px;
        height: 40px;
        font-size: 13px;
    }

    .reviews-stat-num {
        font-size: 22px;
    }

    .overall-score-num {
        font-size: 30px;
    }
}

/* ============================================================
   REVIEWS — RESPONSIVE 320px
   ============================================================ */
@media (max-width: 320px) {
    .reviews-section {
        padding: 44px 0 52px;
    }

    .reviews-title {
        font-size: 20px;
    }

    .reviews-subtitle {
        font-size: 12px;
    }

    .reviews-badge {
        font-size: 9px;
        padding: 5px 12px;
    }

    .reviews-slider-outer {
        padding: 0 30px;
    }

    .reviews-slider-outer .slider-arrow {
        width: 28px;
        height: 28px;
        font-size: 11px;
    }

    .review-card {
        padding: 18px 14px;
    }

    .review-text {
        font-size: 12px;
    }

    .review-avatar {
        width: 36px;
        height: 36px;
        font-size: 12px;
    }

    .review-author-name {
        font-size: 13px;
    }

    .reviews-stat-num {
        font-size: 20px;
    }

    .reviews-stat-label {
        font-size: 9px;
        letter-spacing: 1px;
    }

    .overall-score-num {
        font-size: 28px;
    }

    .overall-stars i {
        font-size: 13px;
    }
}

/* ============================================================
   PRINT
   ============================================================ */
@media print {
    .booking-bar-sticky, .content-tabs, .filters-section, .location-actions {
        display: none !important;
    }

    body {
        background: #fff;
        color: #000;
    }
}
