/* ================================================
   MKAirsoft - Main Stylesheet
   Tactical, Modern, Clean Design
   ================================================ */

/* CSS Variables - Dark Theme (Default) */
:root {
    /* Theme-specific colors - Dark Mode */
    --bg-primary: #1a1a1a;
    --bg-secondary: #0d0d0d;
    --bg-tertiary: #2a2a2a;
    --bg-card: #252525;
    --bg-card-hover: #2d2d2d;
    --bg-input: #333333;

    --text-primary: #ffffff;
    --text-secondary: #e8e8e8;
    --text-muted: #a3a3a3;
    --text-inverse: #1a1a1a;

    --border-color: #404040;
    --border-light: #525252;

    /* Primary Colors - Tactical/Military Theme */
    --primary: #1a1a1a;
    --primary-dark: #0d0d0d;
    --primary-light: #2a2a2a;

    /* Accent Colors */
    --accent: #22c55e; /* Green tactical accent */
    --accent-hover: #4ade80;
    --accent-dark: #16a34a;

    /* Secondary Colors */
    --secondary: #3d5a3d; /* Military green */
    --secondary-light: #4a6b4a;
    --secondary-dark: #2d452d;

    /* Neutral Colors */
    --white: #ffffff;
    --off-white: #f5f5f5;
    --gray-100: #e8e8e8;
    --gray-200: #d1d1d1;
    --gray-300: #a3a3a3;
    --gray-400: #737373;
    --gray-500: #525252;
    --gray-600: #404040;
    --gray-700: #333333;

    /* Dark theme specific */
    --dark-bg: #1a1a1a;
    --dark-lighter: #252525;

    /* Status Colors */
    --success: #22c55e;
    --warning: #f59e0b;
    --error: #ef4444;
    --info: #3b82f6;

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Bebas Neue', 'Impact', sans-serif;
    --font-mono: 'JetBrains Mono', 'Fira Code', monospace;

    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.2);
    --shadow-xl: 0 20px 50px rgba(0, 0, 0, 0.3);

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 400ms ease;

    /* Container */
    --container-max: 1400px;
    --container-padding: 1.5rem;

    /* Z-Index Scale - Organized hierarchy to prevent conflicts */
    --z-behind: -1;
    --z-base: 0;
    --z-above: 1;
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-fixed-nav: 1000;
    --z-mobile-menu: 1001;
    --z-modal-backdrop: 5000;
    --z-modal: 5001;
    --z-toast: 9000;
    --z-tooltip: 9500;
    --z-max: 10000;
}

/* Theme transition - smooth color changes when toggling themes */
.theme-transitioning,
.theme-transitioning *,
.theme-transitioning *::before,
.theme-transitioning *::after {
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, fill 0.3s ease !important;
}

/* Light Theme - Override colors for light backgrounds */
[data-theme="light"] {
    /* Background colors for light theme */
    --bg-primary: #f8f9fa;
    --bg-secondary: #ffffff;
    --bg-tertiary: #e9ecef;
    --bg-card: #ffffff;
    --bg-card-hover: #f1f3f4;
    --bg-input: #ffffff;

    /* Text colors for light theme - dark text on light backgrounds */
    --text-primary: #1a1a1a;
    --text-secondary: #333333;
    --text-muted: #6c757d;
    --text-inverse: #ffffff;

    /* Neutral color overrides for light theme text */
    --white: #1a1a1a;
    --off-white: #212529;
    --gray-100: #212529;
    --gray-200: #333333;
    --gray-300: #495057;
    --gray-400: #6c757d;
    --gray-500: #868e96;
    --gray-600: #adb5bd;
    --gray-700: #ced4da;

    /* Border colors */
    --border-color: #dee2e6;
    --border-light: #e9ecef;

    /* Primary backgrounds */
    --primary: #f8f9fa;
    --primary-dark: #e9ecef;
    --primary-light: #ffffff;

    /* Dark-bg overrides for light theme */
    --dark-bg: #f8f9fa;
    --dark-lighter: #ffffff;

    /* Shadows - lighter for light theme */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 50px rgba(0, 0, 0, 0.15);
}

/* ================================================
   Reset & Base Styles
   ================================================ */

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    scrollbar-gutter: stable;
    overflow-y: scroll;
}

body {
    font-family: var(--font-primary);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transition: background-color var(--transition-base), color var(--transition-base);
}

/* Theme Toggle Button */
.theme-toggle {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    transition: all var(--transition-fast);
}

.theme-toggle:hover {
    background: var(--bg-tertiary);
}

.theme-toggle svg {
    width: 20px;
    height: 20px;
}

/* Hide appropriate icon based on theme */
.theme-toggle .sun-icon {
    display: none;
}

.theme-toggle .moon-icon {
    display: block;
}

[data-theme="light"] .theme-toggle .sun-icon {
    display: block;
}

[data-theme="light"] .theme-toggle .moon-icon {
    display: none;
}

[data-theme="light"] .theme-toggle {
    color: #212529;
}

[data-theme="light"] .theme-toggle:hover {
    background: rgba(0, 0, 0, 0.1);
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}

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

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

ul, ol {
    list-style: none;
}

/* ================================================
   Typography
   ================================================ */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

.text-accent { color: var(--accent); }
.text-muted { color: var(--gray-300); }

/* ================================================
   Layout
   ================================================ */

.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.section {
    padding: var(--spacing-3xl) 0;
}

.section--dark {
    background-color: var(--primary-dark);
}

.section--light {
    background-color: var(--primary-light);
}

.grid {
    display: grid;
    gap: var(--spacing-lg);
}

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

@media (max-width: 1024px) {
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
    .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; }
}

/* ================================================
   Navigation
   ================================================ */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #1a1a1a;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all var(--transition-base);
}

.nav.scrolled {
    background: #0d0d0d;
    box-shadow: var(--shadow-lg);
}

.nav__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.nav__logo {
    font-family: var(--font-display);
    font-size: 2rem;
    letter-spacing: 0.05em;
    color: var(--white);
    display: flex;
    align-items: center;
}

.nav__logo img {
    height: 50px;
    width: auto;
}

.nav__logo span {
    color: var(--accent);
}

.nav__menu {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-left: var(--spacing-xl);
}

.nav__link {
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--gray-200);
    padding: var(--spacing-sm) 0;
    position: relative;
    transition: color var(--transition-fast);
    background: transparent;
    background-color: transparent;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width var(--transition-base);
}

.nav__link:hover,
.nav__link.active {
    color: var(--accent);
    background: transparent !important;
    background-color: transparent !important;
}

.nav__link:hover::after,
.nav__link.active::after {
    width: 100%;
}

/* Dropdown Menu Styles */
.nav__dropdown {
    position: relative;
}

.nav__dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
}

.nav__dropdown-toggle svg {
    width: 12px;
    height: 12px;
    transition: transform var(--transition-fast);
}

.nav__dropdown:hover .nav__dropdown-toggle svg {
    transform: rotate(180deg);
}

.nav__dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    min-width: 160px;
    padding: var(--spacing-sm) 0;
    padding-top: calc(var(--spacing-sm) + 10px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all var(--transition-fast);
    box-shadow: var(--shadow-lg);
    z-index: 1001;
    margin-top: 0;
}

/* Invisible bridge to prevent hover gap */
.nav__dropdown-menu::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    right: 0;
    height: 10px;
    background: transparent;
}

.nav__dropdown:hover .nav__dropdown-menu,
.nav__dropdown.keyboard-open .nav__dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.nav__dropdown-menu .nav__link {
    display: block;
    padding: 0.625rem var(--spacing-lg);
    font-size: 1rem;
    white-space: nowrap;
}

.nav__dropdown-menu .nav__link::after {
    display: none;
}

.nav__dropdown-menu .nav__link:hover {
    background: rgba(34, 197, 94, 0.1);
}

/* Light theme dropdown */
[data-theme="light"] .nav__dropdown-menu {
    background: #ffffff;
    border-color: #dee2e6;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .nav__dropdown-menu .nav__link {
    color: #333333;
}

[data-theme="light"] .nav__dropdown-menu .nav__link:hover {
    background: rgba(22, 163, 74, 0.1);
    color: #16a34a;
}

/* Mobile dropdown styles */
@media (max-width: 1024px) {
    .nav__dropdown {
        width: 100%;
    }

    .nav__dropdown-toggle {
        -webkit-tap-highlight-color: transparent;
    }

    .nav__dropdown-menu {
        position: static;
        transform: none;
        background: transparent;
        border: none;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        min-width: auto;
        padding: 0;
        margin-top: 0;
        padding-left: var(--spacing-lg);
        display: none;
    }

    .nav__dropdown.open .nav__dropdown-menu {
        display: block;
    }

    .nav__dropdown-toggle svg {
        margin-left: 8px;
    }

    .nav__dropdown.open .nav__dropdown-toggle svg {
        transform: rotate(180deg);
    }

    .nav__dropdown-menu .nav__link {
        padding: var(--spacing-sm) 0;
        font-size: 1rem;
        -webkit-tap-highlight-color: transparent;
    }

    .nav__dropdown-menu .nav__link:hover {
        color: var(--accent);
    }

    [data-theme="light"] .nav__dropdown-menu {
        background: transparent;
    }

    [data-theme="light"] .nav__dropdown-menu .nav__link {
        color: #333333;
    }

    [data-theme="light"] .nav__dropdown-menu .nav__link:hover {
        color: #16a34a;
        background-color: transparent !important;
    }
}

.nav__cta {
    background: var(--accent);
    color: var(--primary);
    padding: 0.625rem 1.5rem;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    white-space: nowrap;
    flex-shrink: 0;
}

.nav__cta:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: var(--spacing-sm);
}

.nav__toggle span {
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all var(--transition-fast);
}

@media (max-width: 1024px) {
    .nav__toggle {
        display: flex;
    }
    
    .nav__menu {
        display: flex !important;
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        width: 100%;
        height: calc(100vh - 80px);
        min-height: calc(100vh - 80px);
        background-color: #0d0d0d !important;
        flex-direction: column;
        align-items: flex-start;
        padding: var(--spacing-2xl);
        gap: var(--spacing-lg);
        transform: translateX(100%);
        transition: transform var(--transition-base);
        z-index: var(--z-mobile-menu);
        overflow-y: auto;
    }

    .nav__menu.open,
    .nav__menu.active {
        transform: translateX(0);
    }

    /* Ensure mobile nav links are always visible */
    .nav__menu .nav__link {
        display: block !important;
        color: #ffffff !important;
        opacity: 1 !important;
        visibility: visible !important;
        font-size: 1.25rem;
        position: relative !important;
        transform: none !important;
    }

    /* Hide Book Now button on mobile - redundant with Tickets link */
    .nav__menu .nav__cta {
        display: none !important;
    }

    /* Light mode mobile menu */
    [data-theme="light"] .nav__menu {
        background-color: #ffffff !important;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.15);
    }

    [data-theme="light"] .nav__menu .nav__link {
        color: #1a1a1a !important;
    }
}

/* ================================================
   Hero Section
   ================================================ */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 80px;
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero__bg img,
.hero__bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(26, 26, 26, 0.7) 0%,
        rgba(26, 26, 26, 0.5) 50%,
        rgba(26, 26, 26, 0.9) 100%
    );
}

.hero__content {
    text-align: center;
    max-width: 900px;
    padding: var(--spacing-2xl);
    z-index: 1;
}

.hero__badge {
    display: inline-block;
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid var(--accent);
    color: var(--accent);
    padding: var(--spacing-xs) var(--spacing-md);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: var(--radius-sm);
    margin-bottom: var(--spacing-lg);
}

.hero__title {
    margin-bottom: var(--spacing-lg);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.hero__subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--gray-200);
    margin-bottom: var(--spacing-2xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero__actions {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
}

/* ================================================
   Buttons
   ================================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md) var(--spacing-xl);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    cursor: pointer;
    border: 2px solid transparent;
}

.btn--primary {
    background: var(--accent);
    color: var(--primary);
}

.btn--primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(34, 197, 94, 0.3);
}

.btn--secondary {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn--secondary:hover {
    background: var(--white);
    color: var(--primary);
}

.btn--outline {
    background: transparent;
    color: var(--accent);
    border-color: var(--accent);
}

.btn--outline:hover {
    background: var(--accent);
    color: var(--primary);
}

.btn--ghost {
    background: transparent;
    color: var(--gray-300);
    border-color: transparent;
}

.btn--ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.btn--large {
    padding: var(--spacing-lg) var(--spacing-2xl);
    font-size: 1rem;
}

.btn--small {
    padding: var(--spacing-sm) var(--spacing-md);
    font-size: 0.75rem;
}

.btn--full {
    width: 100%;
}

/* ================================================
   Cards
   ================================================ */

.card {
    background: var(--primary-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-base);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(34, 197, 94, 0.3);
}

.card__image {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.card:hover .card__image img {
    transform: scale(1.05);
}

.card__badge {
    position: absolute;
    top: var(--spacing-md);
    left: var(--spacing-md);
    background: var(--accent);
    color: var(--primary);
    padding: var(--spacing-xs) var(--spacing-sm);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
}

.card__content {
    padding: var(--spacing-lg);
    display: flex;
    flex-direction: column;
    flex: 1;
}

.card__title {
    font-family: var(--font-primary);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    text-transform: none;
    letter-spacing: normal;
}

.card__description {
    color: var(--gray-300);
    font-size: 0.875rem;
    margin-bottom: var(--spacing-md);
}

.card__price {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: #22c55e;
}

.card__meta {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    color: var(--gray-400);
    font-size: 0.8rem;
}

/* ================================================
   Location Cards
   ================================================ */

.location-card {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all var(--transition-base);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.location-card:hover {
    border-color: var(--accent);
    box-shadow: 0 0 30px rgba(34, 197, 94, 0.1);
}

.location-card > .btn {
    margin-top: auto;
}

.location-card__name {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-md);
    color: var(--accent);
}

.location-card__address {
    color: var(--gray-300);
    margin-bottom: var(--spacing-lg);
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
}

.location-card__hours {
    margin-bottom: var(--spacing-lg);
    flex-grow: 1;
}

.location-card__hours h4 {
    font-family: var(--font-primary);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--spacing-sm);
    color: var(--gray-300);
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.hours-item {
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem;
    padding: var(--spacing-xs) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    gap: var(--spacing-sm);
}

@media (max-width: 480px) {
    .hours-item {
        flex-direction: column;
        gap: 2px;
        padding: var(--spacing-sm) 0;
    }

    .hours-item__time {
        font-size: 0.8rem;
    }
}

.hours-item__day {
    color: var(--gray-300);
    flex-shrink: 0;
}

.hours-item__time {
    color: var(--white);
    font-weight: 500;
    text-align: right;
}

@media (max-width: 480px) {
    .hours-item__time {
        text-align: left;
    }
}

/* ================================================
   CTA Box - Used for Membership promo on Home page
   ================================================ */

.cta-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
    align-items: center;
    background: linear-gradient(135deg, var(--primary-light) 0%, rgba(61, 90, 61, 0.3) 100%);
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .cta-box {
        grid-template-columns: 1fr;
    }
}

.cta-box__content {
    padding: var(--spacing-3xl);
}

.cta-box__content h2 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
}

.cta-box__content p {
    color: var(--gray-300);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: var(--spacing-xl);
}

.cta-box__pricing {
    margin-bottom: var(--spacing-xl);
}

.cta-box__price {
    display: flex;
    align-items: baseline;
    gap: var(--spacing-sm);
}

.cta-box__price-label {
    font-size: 0.875rem;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.cta-box__price-value {
    font-family: var(--font-display);
    font-size: 3.5rem;
    color: #22c55e;
    line-height: 1;
}

.cta-box__price-value span {
    font-family: var(--font-primary);
    font-size: 1.25rem;
    color: var(--gray-300);
}

.cta-box__image {
    height: 100%;
    min-height: 350px;
    background: var(--primary);
    position: relative;
    overflow: hidden;
}

.cta-box__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .cta-box__content {
        padding: var(--spacing-2xl);
    }

    .cta-box__image {
        min-height: 250px;
        order: -1;
    }
}

/* ================================================
   Testimonials Slider - Home page
   ================================================ */

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
}

@media (max-width: 1024px) {
    .testimonials-slider {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .testimonials-slider {
        grid-template-columns: 1fr;
    }
}

.testimonial {
    background: var(--primary-light);
    border-radius: var(--radius-xl);
    padding: var(--spacing-2xl);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all var(--transition-base);
}

.testimonial:hover {
    border-color: rgba(34, 197, 94, 0.3);
    transform: translateY(-5px);
}

.testimonial::before {
    content: '"';
    position: absolute;
    top: var(--spacing-lg);
    left: var(--spacing-xl);
    font-family: Georgia, serif;
    font-size: 5rem;
    line-height: 1;
    color: var(--accent);
    opacity: 0.15;
}

.testimonial__stars {
    color: var(--accent);
    font-size: 1.25rem;
    margin-bottom: var(--spacing-md);
    letter-spacing: 0.1em;
}

.testimonial__text {
    position: relative;
    z-index: 1;
    font-size: 1rem;
    font-style: italic;
    color: var(--gray-200);
    line-height: 1.7;
    margin-bottom: var(--spacing-xl);
}

.testimonial__author {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.testimonial__author strong {
    font-weight: 600;
    color: var(--white);
}

.testimonial__author span {
    font-size: 0.875rem;
    color: var(--gray-400);
}

/* ================================================
   Section Headers
   ================================================ */

.section-header {
    margin-bottom: var(--spacing-2xl);
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: 3rem;
    letter-spacing: 0.02em;
}

.section-header p {
    margin-top: var(--spacing-sm);
}

/* ================================================
   Stat Card Styles (for home page)
   ================================================ */

.stat-card {
    text-align: center;
    padding: var(--spacing-xl);
    background: var(--primary-light);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all var(--transition-base);
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: rgba(34, 197, 94, 0.3);
}

.stat-card__number {
    font-family: var(--font-display);
    font-size: 3.5rem;
    color: var(--accent);
    line-height: 1;
    margin-bottom: var(--spacing-sm);
}

.stat-card__label {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gray-400);
}

/* ================================================
   Grid System Enhancement
   ================================================ */

.grid {
    display: grid;
    gap: var(--spacing-xl);
}

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

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1024px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 640px) {
    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }
}

/* Stagger animation for grid items */
.stagger > * {
    opacity: 0;
    animation: slideUp 0.6s ease forwards;
}

.stagger > *:nth-child(1) { animation-delay: 0.1s; }
.stagger > *:nth-child(2) { animation-delay: 0.2s; }
.stagger > *:nth-child(3) { animation-delay: 0.3s; }
.stagger > *:nth-child(4) { animation-delay: 0.4s; }
.stagger > *:nth-child(5) { animation-delay: 0.5s; }
.stagger > *:nth-child(6) { animation-delay: 0.6s; }

/* ================================================
   Section Variants
   ================================================ */

.section--dark {
    background: var(--primary-dark);
}

.section--light {
    background: var(--primary-light);
}

.section--accent {
    background: linear-gradient(135deg, rgba(61, 90, 61, 0.4) 0%, var(--primary) 100%);
}

/* ================================================
   Loading Spinner
   ================================================ */

.loading {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-3xl);
}

.spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ================================================
   Ticket Section
   ================================================ */

.ticket-card {
    background: var(--primary-light);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
}

.ticket-card__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: var(--spacing-md);
}

.ticket-card__name {
    font-family: var(--font-primary);
    font-size: 1.125rem;
    font-weight: 600;
}

.ticket-card__price {
    font-family: var(--font-display);
    font-size: 1.75rem;
    color: #22c55e;
}

.ticket-card__availability {
    font-size: 0.875rem;
    color: var(--gray-300);
    margin-bottom: var(--spacing-md);
}

.ticket-card__availability.low {
    color: var(--warning);
}

.ticket-card__availability.sold-out {
    color: var(--error);
}

.ticket-card__actions {
    margin-top: auto;
}

/* ================================================
   Membership Section
   ================================================ */

.membership-card {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--secondary-dark) 100%);
    border-radius: var(--radius-xl);
    padding: var(--spacing-2xl);
    text-align: center;
    border: 2px solid transparent;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.membership-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--accent);
}

.membership-card:hover {
    border-color: var(--accent);
    transform: translateY(-10px);
}

.membership-card--featured {
    border-color: var(--accent);
    transform: scale(1.05);
}

.membership-card--featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.membership-card__badge {
    position: absolute;
    top: var(--spacing-lg);
    right: var(--spacing-lg);
    background: var(--accent);
    color: var(--primary);
    padding: var(--spacing-xs) var(--spacing-sm);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
}

.membership-card__name {
    font-size: 1.75rem;
    margin-bottom: var(--spacing-md);
}

.membership-card__price {
    font-family: var(--font-display);
    font-size: 3.5rem;
    color: #22c55e;
    line-height: 1;
    margin-bottom: var(--spacing-xs);
}

.membership-card__period {
    color: var(--gray-400);
    font-size: 0.875rem;
    margin-bottom: var(--spacing-xl);
}

.membership-card__features {
    text-align: left;
    margin-bottom: var(--spacing-xl);
}

.membership-card__feature {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm) 0;
    color: var(--gray-200);
}

.membership-card__feature svg {
    color: var(--success);
    flex-shrink: 0;
}

/* ================================================
   Party Packages
   ================================================ */

.party-card {
    background: var(--primary-light);
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 2px solid transparent;
    transition: all var(--transition-base);
}

.party-card:hover {
    border-color: var(--accent);
}

.party-card__header {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
    padding: var(--spacing-xl);
    text-align: center;
}

.party-card__name {
    font-size: 2rem;
    margin-bottom: var(--spacing-sm);
}

.party-card__price {
    font-family: var(--font-display);
    font-size: 3rem;
    color: #22c55e;
}

.party-card__content {
    padding: var(--spacing-xl);
}

.party-card__features {
    margin-bottom: var(--spacing-xl);
}

.party-card__feature {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.party-card__feature:last-child {
    border-bottom: none;
}

/* ================================================
   Forms
   ================================================ */

.form-group {
    margin-bottom: var(--spacing-lg);
}

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: var(--spacing-sm);
    color: var(--gray-200);
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: var(--spacing-md);
    font-size: 1rem;
    font-family: inherit;
    background: var(--primary-dark);
    border: 1px solid var(--gray-600);
    border-radius: var(--radius-md);
    color: var(--white);
    transition: all var(--transition-fast);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
}

.form-input::placeholder {
    color: var(--gray-500);
}

.form-textarea {
    min-height: 150px;
    resize: vertical;
}

.form-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23a3a3a3' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right var(--spacing-md) center;
    background-size: 1rem;
    padding-right: var(--spacing-2xl);
}

/* ================================================
   Footer
   ================================================ */

.footer {
    background: var(--primary-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: var(--spacing-3xl) 0 var(--spacing-xl);
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: var(--spacing-2xl);
    margin-bottom: var(--spacing-2xl);
}

.footer__brand {
    max-width: 320px;
    margin: 0 auto;
}

.footer__logo {
    font-family: var(--font-display);
    font-size: 2rem;
    margin-bottom: var(--spacing-md);
}

.footer__description {
    color: var(--gray-400);
    font-size: 0.875rem;
    line-height: 1.7;
}

.footer__heading {
    font-family: var(--font-primary);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--spacing-lg);
    color: var(--accent);
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.footer__link {
    color: var(--gray-400);
    font-size: 0.875rem;
    transition: color var(--transition-fast);
}

.footer__link:hover {
    color: var(--accent);
}

.footer__social {
    display: flex;
    gap: var(--spacing-md);
}

.footer__social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-light);
    border-radius: var(--radius-md);
    color: var(--gray-300);
    transition: all var(--transition-fast);
}

.footer__social-link:hover {
    background: var(--accent);
    color: var(--primary);
}

.footer__bottom {
    padding-top: var(--spacing-xl);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: var(--gray-500);
}

@media (max-width: 1024px) {
    .footer__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .footer__grid {
        grid-template-columns: 1fr;
    }
    
    .footer__bottom {
        flex-direction: column;
        gap: var(--spacing-md);
        text-align: center;
    }
}

/* ================================================
   Ecwid Store Styling
   ================================================ */

.ecwid-store {
    padding: var(--spacing-2xl) 0;
}

/* Override Ecwid styles for dark theme */
.ec-store .ec-cart-widget {
    color: var(--white) !important;
}

/* ================================================
   Ecwid Checkout & Cart Dark Theme Overrides
   PROPERLY SCOPED - Only targets actual Ecwid classes
   ================================================ */

/* General store background and text - explicit Ecwid classes only */
.ec-store,
.ec-store__body,
.ec-cart,
.ec-cart__body,
.ec-cart__sidebar,
.ec-cart__sidebar-inner,
.ecwid-productBrowser {
    background-color: var(--dark-bg) !important;
    color: var(--gray-100) !important;
}

/* Ecwid page-level wrappers - prevent white border/background */
[id*="ecwid_html"],
[id*="ecwid-html"],
[id*="my-store"],
.ec-page,
.ec-page-body,
.ec-wrapper,
.ec-cart-page,
.ec-size,
.ec-store__content-wrapper,
[class*="ec-cart"][class*="page"],
[class*="ec-checkout"][class*="page"],
[class*="Ecwid"],
[class*="ecwid"] {
    background-color: var(--dark-bg) !important;
    color: var(--gray-100) !important;
    border-color: transparent !important;
    box-shadow: none !important;
}

/* Ecwid root containers - aggressive override for auto-created elements */
body > [id*="ecwid"],
body > [class*="ecwid"],
body > div[class*="ec-"],
div[id*="ecwid_html"] > *,
div[id*="my-store"] > *,
.ecwid-productBrowser > *,
.ec-store > div:first-child,
.ec-cart > div:first-child {
    background-color: var(--dark-bg) !important;
    border-color: transparent !important;
    box-shadow: none !important;
}

/* Ecwid cart sidebar/minicart - these are the popup cart only */
/* NOTE: Only target actual cart popup containers, NOT checkout pages */
.ec-minicart,
.ec-minicart > * {
    background-color: var(--dark-bg) !important;
}

/* Cart item styling - only for mini cart items, colors only */
.ec-cart-item,
.ec-cart-item__wrap,
.ec-cart-item__title,
.ec-cart-item__sku,
.ec-cart-item__options {
    color: var(--gray-100) !important;
}

/* Input fields - colors only, NO layout changes */
/* IMPORTANT: Removed padding, border-radius overrides that break Ecwid layout */
.ec-store input:not([type="radio"]):not([type="checkbox"]),
.ec-store textarea,
.ec-store select {
    background-color: var(--dark-lighter) !important;
    color: var(--gray-100) !important;
    border-color: var(--gray-600) !important;
}

.ec-store input::placeholder,
.ec-cart input::placeholder,
.ec-form input::placeholder {
    color: var(--gray-500) !important;
}

/* Hide placeholder text when input is focused and user is typing */
.ec-store input:focus::placeholder,
.ec-cart input:focus::placeholder,
.ec-form input:focus::placeholder,
.ec-checkout input:focus::placeholder,
.ec-cart__body input:focus::placeholder {
    color: transparent !important;
}

/* Labels */
.ec-store label,
.ec-cart label,
.ec-form label,
.ec-form__label {
    color: var(--gray-200) !important;
}

/* Ecwid floating labels - allow Ecwid's transform/transition to work */
/* Do NOT override position, transform, top, or font-size on labels */
/* Only override color. Let Ecwid handle the floating animation. */

/* When input is focused or has a value, make the floating label less prominent */
/* This prevents the label text from overlapping the typed text */
.ec-form [class*="--focus"] label,
.ec-form [class*="--filled"] label,
.ec-form [class*="--active"] label,
.ec-form [class*="focused"] label,
.ec-cart [class*="--focus"] label,
.ec-cart [class*="--filled"] label,
.ec-cart [class*="--active"] label,
.ec-cart [class*="focused"] label,
.ec-checkout [class*="--focus"] label,
.ec-checkout [class*="--filled"] label,
.ec-checkout [class*="--active"] label,
.ec-checkout [class*="focused"] label,
.ec-cart__body [class*="--focus"] label,
.ec-cart__body [class*="--filled"] label,
.ec-cart__body [class*="--active"] label,
.ec-cart__body [class*="focused"] label {
    font-size: 0.75em !important;
    opacity: 0.7 !important;
}

/* CSS-only fix: when an input has content (not showing placeholder), hide the label behind it */
/* Uses :not(:placeholder-shown) which triggers when input has a typed value */
.ec-store input:not(:placeholder-shown) ~ label,
.ec-cart input:not(:placeholder-shown) ~ label,
.ec-form input:not(:placeholder-shown) ~ label,
.ec-checkout input:not(:placeholder-shown) ~ label,
.ec-cart__body input:not(:placeholder-shown) ~ label,
.ec-store input:not(:placeholder-shown) + label,
.ec-cart input:not(:placeholder-shown) + label,
.ec-form input:not(:placeholder-shown) + label,
.ec-checkout input:not(:placeholder-shown) + label,
.ec-cart__body input:not(:placeholder-shown) + label {
    font-size: 0.75em !important;
    opacity: 0.65 !important;
}

/* When input is focused, also handle the label */
.ec-store input:focus ~ label,
.ec-cart input:focus ~ label,
.ec-form input:focus ~ label,
.ec-checkout input:focus ~ label,
.ec-cart__body input:focus ~ label,
.ec-store input:focus + label,
.ec-cart input:focus + label,
.ec-form input:focus + label,
.ec-checkout input:focus + label,
.ec-cart__body input:focus + label {
    font-size: 0.75em !important;
    opacity: 0.65 !important;
}

/* Payment form - Stripe/credit card inputs */
.ec-cart__checkout,
.ec-cart__checkout-section,
.ec-checkout,
.ec-checkout__section {
    background-color: var(--dark-bg) !important;
    color: var(--gray-100) !important;
}

/* Stripe iframe container */
.ec-form__cell--card,
.ec-form__row--card,
.__PrivateStripeElement,
.ElementsApp {
    background-color: var(--dark-lighter) !important;
    border-radius: 8px !important;
}

/* Order summary and totals */
.ec-cart__summary,
.ec-cart__total,
.ec-cart-summary,
.ec-cart-summary__row,
.ec-cart-summary__cell {
    background-color: var(--dark-bg) !important;
    color: var(--gray-100) !important;
}

/* Buttons styling to match site theme - using accent colors for visibility */
/* Scoped to Ecwid containers only, excludes nav and site buttons */
.ec-store .ec-btn,
.ec-store button:not(.nav__toggle):not(.theme-toggle),
.ec-cart .ec-btn,
.ec-cart button:not(.nav__toggle):not(.theme-toggle):not([class*="close"]),
.ec-form .ec-btn,
.ec-form button:not(.nav__toggle):not(.theme-toggle),
.ecwid-productBrowser .ec-btn,
.ecwid-productBrowser button:not(.nav__toggle):not(.theme-toggle) {
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%) !important;
    color: #ffffff !important;
    border: none !important;
    font-weight: 600 !important;
}

.ec-store .ec-btn:hover,
.ec-cart .ec-btn:hover,
.ec-form .ec-btn:hover,
.ecwid-productBrowser .ec-btn:hover {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%) !important;
}

/* Ecwid Pay/Place Order/Checkout buttons - ensure high visibility */
/* Properly scoped to Ecwid containers */
.ec-cart button.ec-btn--primary,
.ec-cart button[class*="primary"],
.ec-cart button[class*="submit"],
.ec-store button.ec-btn--primary,
.ec-store button[class*="primary"],
.ec-store button[class*="submit"],
.ec-form button.ec-btn--primary,
.ec-form button[class*="primary"],
.ec-form button[class*="submit"],
.ecwid-productBrowser button.ec-btn--primary,
.ecwid-productBrowser button[class*="primary"],
.ecwid-productBrowser button[class*="submit"] {
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%) !important;
    color: #ffffff !important;
    border: none !important;
    font-weight: 600 !important;
    text-shadow: none !important;
    -webkit-text-fill-color: #ffffff !important;
    min-height: 44px !important;
    padding: 12px 24px !important;
}

.ec-cart button.ec-btn--primary:hover,
.ec-store button.ec-btn--primary:hover,
.ec-form button.ec-btn--primary:hover,
.ecwid-productBrowser button.ec-btn--primary:hover {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%) !important;
}

/* Cart close button - ensure X icon is visible in dark mode */
/* PROPERLY SCOPED - Only targets Ecwid close buttons */
.ec-cart button[class*="close"],
.ec-cart__sidebar button[class*="close"],
.ec-store button[class*="close"],
.ec-form button[class*="close"],
.ecwid-productBrowser button[class*="close"] {
    background-color: var(--accent) !important;
    border: none !important;
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
}

/* Close button SVG icon - force white fill for visibility */
.ec-cart button[class*="close"] svg,
.ec-cart button[class*="close"] svg *,
.ec-cart__sidebar button[class*="close"] svg,
.ec-cart__sidebar button[class*="close"] svg *,
.ec-store button[class*="close"] svg,
.ec-store button[class*="close"] svg *,
.ecwid-productBrowser button[class*="close"] svg,
.ecwid-productBrowser button[class*="close"] svg * {
    fill: #ffffff !important;
    stroke: #ffffff !important;
    color: #ffffff !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Close button SVG paths - ensure visibility */
.ec-cart button[class*="close"] svg path,
.ec-store button[class*="close"] svg path,
.ecwid-productBrowser button[class*="close"] svg path {
    fill: #ffffff !important;
    stroke: #ffffff !important;
    opacity: 1 !important;
}

/* Close button inner text/icon content */
.ec-cart button[class*="close"] *,
.ec-cart__sidebar button[class*="close"] *,
.ec-store button[class*="close"] *,
.ecwid-productBrowser button[class*="close"] * {
    color: #ffffff !important;
    fill: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Close button pseudo-elements (::before and ::after) for X icon */
.ec-cart button[class*="close"]::before,
.ec-cart button[class*="close"]::after,
.ec-store button[class*="close"]::before,
.ec-store button[class*="close"]::after,
.ecwid-productBrowser button[class*="close"]::before,
.ecwid-productBrowser button[class*="close"]::after {
    color: #ffffff !important;
    background-color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Light mode close button styling */
[data-theme="light"] .ec-cart button[class*="close"],
[data-theme="light"] .ec-cart__sidebar button[class*="close"],
[data-theme="light"] .ec-store button[class*="close"],
[data-theme="light"] .ecwid-productBrowser button[class*="close"] {
    background-color: #16a34a !important;
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
}

[data-theme="light"] .ec-cart button[class*="close"] svg,
[data-theme="light"] .ec-cart button[class*="close"] svg *,
[data-theme="light"] .ec-store button[class*="close"] svg,
[data-theme="light"] .ec-store button[class*="close"] svg *,
[data-theme="light"] .ecwid-productBrowser button[class*="close"] svg,
[data-theme="light"] .ecwid-productBrowser button[class*="close"] svg * {
    fill: #ffffff !important;
    stroke: #ffffff !important;
    color: #ffffff !important;
    opacity: 1 !important;
    visibility: visible !important;
}

[data-theme="light"] .ec-cart button[class*="close"] svg path,
[data-theme="light"] .ec-store button[class*="close"] svg path,
[data-theme="light"] .ecwid-productBrowser button[class*="close"] svg path {
    fill: #ffffff !important;
    stroke: #ffffff !important;
    opacity: 1 !important;
}

[data-theme="light"] .ec-cart button[class*="close"]::before,
[data-theme="light"] .ec-cart button[class*="close"]::after,
[data-theme="light"] .ec-store button[class*="close"]::before,
[data-theme="light"] .ec-store button[class*="close"]::after,
[data-theme="light"] .ecwid-productBrowser button[class*="close"]::before,
[data-theme="light"] .ecwid-productBrowser button[class*="close"]::after {
    color: #ffffff !important;
    background-color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Secondary/outline buttons */
.ec-store .ec-btn--outline,
.ec-cart .ec-btn--outline {
    background: transparent !important;
    border: 2px solid var(--primary) !important;
    color: var(--primary) !important;
}

/* Links */
.ec-store a,
.ec-cart a,
.ec-form a {
    color: var(--accent) !important;
}

/* Continue shopping, coupon, and other action links */
.ec-cart a[href],
.ec-store a[href],
[class*="ec-cart"] a,
[class*="ec-"] [class*="link"],
[class*="ec-"] [class*="Link"],
[class*="coupon"],
[class*="Coupon"],
.ec-cart__continue,
.ec-cart__coupon,
.ec-link {
    color: var(--accent) !important;
}

.ec-cart a:hover,
.ec-store a:hover {
    color: var(--accent-hover) !important;
}

/* Ecwid product footer menu icons (My Account, Track Orders, Favorites, Shopping Bag) */
/* Make SVG icons match the green accent color */
.ec-store [class*="footer"] svg,
.ec-store [class*="footer"] svg path,
.ec-store [class*="footer"] svg circle,
.ec-store [class*="footer"] svg rect,
.ec-store [class*="Footer"] svg,
.ec-store [class*="Footer"] svg path,
.ec-store [class*="Footer"] svg circle,
.ec-store [class*="Footer"] svg rect,
.ecwid-productBrowser [class*="footer"] svg,
.ecwid-productBrowser [class*="footer"] svg path,
.ecwid-productBrowser [class*="Footer"] svg,
.ecwid-productBrowser [class*="Footer"] svg path,
/* Specific targeting for link icons in product details footer */
/* Excludes buttons, close buttons, and button-like links */
.ec-store a:not([class*="button"]):not(.ec-btn):not([class*="close"]) svg,
.ec-store a:not([class*="button"]):not(.ec-btn):not([class*="close"]) svg path,
.ec-store .ec-link svg,
.ec-store .ec-link svg path,
.ecwid-productBrowser a:not([class*="button"]):not(.ec-btn):not([class*="close"]) svg,
.ecwid-productBrowser a:not([class*="button"]):not(.ec-btn):not([class*="close"]) svg path {
    fill: var(--accent) !important;
    stroke: var(--accent) !important;
    color: var(--accent) !important;
}

/* Hover state for footer icons */
.ec-store [class*="footer"] a:hover svg,
.ec-store [class*="footer"] a:hover svg path,
.ec-store [class*="Footer"] a:hover svg,
.ec-store [class*="Footer"] a:hover svg path,
.ecwid-productBrowser [class*="footer"] a:hover svg,
.ecwid-productBrowser [class*="footer"] a:hover svg path,
.ecwid-productBrowser [class*="Footer"] a:hover svg,
.ecwid-productBrowser [class*="Footer"] a:hover svg path {
    fill: var(--accent-hover) !important;
    stroke: var(--accent-hover) !important;
    color: var(--accent-hover) !important;
}

/* Light mode - footer icons should still be green */
[data-theme="light"] .ec-store [class*="footer"] svg,
[data-theme="light"] .ec-store [class*="footer"] svg path,
[data-theme="light"] .ec-store [class*="Footer"] svg,
[data-theme="light"] .ec-store [class*="Footer"] svg path,
[data-theme="light"] .ecwid-productBrowser [class*="footer"] svg,
[data-theme="light"] .ecwid-productBrowser [class*="footer"] svg path,
[data-theme="light"] .ecwid-productBrowser [class*="Footer"] svg,
[data-theme="light"] .ecwid-productBrowser [class*="Footer"] svg path,
[data-theme="light"] .ec-store a:not([class*="button"]):not(.ec-btn):not([class*="close"]) svg,
[data-theme="light"] .ec-store a:not([class*="button"]):not(.ec-btn):not([class*="close"]) svg path,
[data-theme="light"] .ecwid-productBrowser a:not([class*="button"]):not(.ec-btn):not([class*="close"]) svg,
[data-theme="light"] .ecwid-productBrowser a:not([class*="button"]):not(.ec-btn):not([class*="close"]) svg path {
    fill: var(--accent) !important;
    stroke: var(--accent) !important;
    color: var(--accent) !important;
}

/* Cart item backgrounds */
.ec-cart-item,
.ec-cart__products,
.ec-cart-item__wrap-primary {
    background-color: var(--dark-lighter) !important;
    border-color: var(--gray-700) !important;
}

/* Product titles in cart - scoped to Ecwid only */
.ec-cart-item__title a,
.ec-cart-item__title,
.ec-cart-item__title span,
.ec-cart-item__name,
.ec-cart-item__name a,
.ec-cart-item__name span,
.ec-cart__products-item-name,
.ec-cart__products-item-title,
.ecwid-productBrowser [class*="cart-item"] a,
.ecwid-productBrowser [class*="cart-item"] span,
#ec-cart-widget [class*="product-name"],
#ec-cart-widget [class*="product-title"] {
    color: var(--gray-100) !important;
}

/* Cart item details and descriptions */
.ec-cart-item__details,
.ec-cart-item__description,
.ec-cart-item__info {
    color: var(--gray-300) !important;
}

/* Price displays - Ecwid specific only */
.ec-cart-item__price,
.ec-cart__total-value,
.ec-price {
    color: #22c55e !important;
}

/* Remove white backgrounds from all cards/sections */
.ec-store .ec-wrapper,
.ec-store .ec-wrapper__inner,
.ec-cart .ec-wrapper,
.ec-cart .ec-wrapper__inner,
[class*="ec-wrapper"],
[class*="ec-panel"],
[class*="ec-section"] {
    background-color: var(--dark-bg) !important;
}

/* Breadcrumbs */
.ec-breadcrumbs,
.ec-breadcrumbs a,
.ec-breadcrumbs__item {
    color: var(--gray-400) !important;
}

/* Radio buttons and checkboxes */
.ec-store input[type="radio"],
.ec-store input[type="checkbox"],
.ec-cart input[type="radio"],
.ec-cart input[type="checkbox"] {
    accent-color: var(--primary) !important;
}

/* Tables */
.ec-store table,
.ec-store th,
.ec-store td,
.ec-cart table,
.ec-cart th,
.ec-cart td {
    background-color: var(--dark-bg) !important;
    color: var(--gray-100) !important;
    border-color: var(--gray-700) !important;
}

/* Error and validation messages - Ecwid scoped only */
.ec-form__error,
.ec-error,
.ec-store .error,
.ec-cart .error,
.ec-form .error {
    color: var(--error) !important;
}

/* Success messages - Ecwid scoped only */
.ec-success,
.ec-store .success,
.ec-cart .success,
.ec-form .success {
    color: var(--success) !important;
}

/* Shipping method cards */
.ec-radiogroup__item,
.ec-radiogroup__item-inner {
    background-color: var(--dark-lighter) !important;
    border-color: var(--gray-700) !important;
    color: var(--gray-100) !important;
}

.ec-radiogroup__item--checked,
.ec-radiogroup__item:hover {
    border-color: var(--primary) !important;
}

/* Modal/popup backgrounds (for checkout steps) - Ecwid scoped only */
.ec-modal,
.ec-modal__content,
.ec-popup,
.ec-store .modal,
.ec-cart .modal {
    background-color: var(--dark-bg) !important;
    color: var(--gray-100) !important;
}

/* ================================================
   Ecwid Mini-Cart Sidebar - Colors Only
   IMPORTANT: Do not override layout properties as this breaks checkout
   ================================================ */

/* Mini-cart sidebar background color */
.ec-minicart__body,
.ec-cart-widget__body {
    background-color: var(--dark-bg) !important;
}

/* Mini-cart close button colors */
.ec-minicart button[class*="close"],
.ec-cart-widget button[class*="close"] {
    background-color: var(--dark-lighter) !important;
    border-color: var(--gray-600) !important;
}

/* Mini-cart product item colors only */
.ec-minicart__products-item {
    border-color: var(--gray-700) !important;
}

/* Product details text color */
.ec-minicart__products-item-name {
    color: var(--gray-100) !important;
}

/* Dropdown menus (for Ecwid store widgets only - excludes nav dropdowns) */
.ec-store .dropdown,
.ec-store .dropdown-menu,
.ec-cart .dropdown,
.ec-cart .dropdown-menu,
.ec-form .dropdown,
.ec-form .dropdown-menu,
.ecwid-productBrowser .dropdown,
.ecwid-productBrowser .dropdown-menu {
    background-color: var(--dark-lighter) !important;
    color: var(--gray-100) !important;
    border-color: var(--gray-700) !important;
}

/* Quantity selectors - Ecwid scoped only */
.ec-cart-item__count,
.ec-cart-item__qty,
.ec-cart .quantity,
.ec-store .quantity,
.ec-form .quantity {
    background-color: var(--dark-lighter) !important;
    color: var(--gray-100) !important;
    border-color: var(--gray-700) !important;
}

/* Progress steps in checkout - Ecwid scoped only */
.ec-cart__steps,
.ec-cart__step,
.ec-checkout__steps,
.ec-checkout__step {
    color: var(--gray-300) !important;
}

.ec-cart__step--active,
.ec-cart__step--current,
.ec-checkout__step--active,
.ec-checkout__step--current {
    color: var(--primary) !important;
}

/* Notification bars - Ecwid scoped only */
.ec-notice,
.ec-notification,
.ec-cart .notice,
.ec-cart .notification,
.ec-store .notice,
.ec-store .notification {
    background-color: var(--dark-lighter) !important;
    color: var(--gray-100) !important;
    border-color: var(--gray-600) !important;
}

/* Cart popup/banner at bottom after adding item - colors only */
.ec-cart-widget,
.ec-minicart,
.ec-cart-added {
    background-color: var(--dark-bg) !important;
    color: var(--gray-100) !important;
}

/* Mini-cart text color - specific elements only, NOT wildcard */
.ec-minicart a {
    color: #22c55e !important;
}

/* Footer of checkout */
.ec-cart__footer,
.ec-checkout__footer {
    background-color: var(--dark-bg) !important;
    border-color: var(--gray-700) !important;
}

/* Light Mode - Complete Ecwid Overrides */
[data-theme="light"] .ec-store,
[data-theme="light"] .ec-store__body,
[data-theme="light"] .ec-cart,
[data-theme="light"] .ec-cart__body,
[data-theme="light"] .ec-cart__sidebar,
[data-theme="light"] .ec-cart__sidebar-inner,
[data-theme="light"] .ecwid-productBrowser {
    background-color: #ffffff !important;
    color: #212529 !important;
}

[data-theme="light"] .ec-store input,
[data-theme="light"] .ec-store textarea,
[data-theme="light"] .ec-store select,
[data-theme="light"] .ec-cart input,
[data-theme="light"] .ec-cart textarea,
[data-theme="light"] .ec-cart select,
[data-theme="light"] .ec-form input,
[data-theme="light"] .ec-form textarea,
[data-theme="light"] .ec-form select {
    background-color: #ffffff !important;
    color: #212529 !important;
    border-color: #ced4da !important;
}

[data-theme="light"] .ec-cart-item,
[data-theme="light"] .ec-cart__products,
[data-theme="light"] .ec-cart__summary,
[data-theme="light"] .ec-cart-summary {
    background-color: #f8f9fa !important;
    border-color: #dee2e6 !important;
    color: #212529 !important;
}

[data-theme="light"] .ec-store label,
[data-theme="light"] .ec-cart label,
[data-theme="light"] .ec-form label {
    color: #495057 !important;
}

/* Light mode - hide placeholder text when input is focused */
[data-theme="light"] .ec-store input:focus::placeholder,
[data-theme="light"] .ec-cart input:focus::placeholder,
[data-theme="light"] .ec-form input:focus::placeholder,
[data-theme="light"] .ec-checkout input:focus::placeholder,
[data-theme="light"] .ec-cart__body input:focus::placeholder {
    color: transparent !important;
}

[data-theme="light"] .ec-cart-item__count,
[data-theme="light"] .ec-cart-item__qty,
[data-theme="light"] .ec-cart .quantity,
[data-theme="light"] .ec-store .quantity {
    background-color: #ffffff !important;
    color: #212529 !important;
    border-color: #dee2e6 !important;
}

[data-theme="light"] .ec-store span,
[data-theme="light"] .ec-store p,
[data-theme="light"] .ec-store div:not(.nav):not(.nav *),
[data-theme="light"] .ec-cart span,
[data-theme="light"] .ec-cart p,
[data-theme="light"] .ec-cart div {
    color: #212529 !important;
}

[data-theme="light"] .ec-store a,
[data-theme="light"] .ec-cart a,
[data-theme="light"] .ec-form a {
    color: #16a34a !important;
}

/* ================================================
   reCAPTCHA Visibility Fix
   PROPERLY SCOPED - Only targets actual CAPTCHA elements
   ================================================ */

/* Ensure reCAPTCHA checkbox is visible in dark theme */
.g-recaptcha,
.grecaptcha-badge,
.cf-turnstile,
.h-captcha {
    background-color: #f9f9f9 !important;
    border-radius: 4px !important;
    padding: 2px !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    min-height: 78px !important;
    overflow: visible !important;
    position: relative !important;
    z-index: 100 !important;
}

/* Ensure reCAPTCHA iframe is visible */
.g-recaptcha iframe,
.cf-turnstile iframe,
.h-captcha iframe,
iframe[src*="recaptcha"],
iframe[src*="google.com/recaptcha"],
iframe[title*="reCAPTCHA"],
iframe[src*="turnstile"],
iframe[src*="challenges.cloudflare"],
iframe[src*="hcaptcha"] {
    visibility: visible !important;
    opacity: 1 !important;
    display: block !important;
    position: relative !important;
    z-index: 101 !important;
    height: 74px !important;
    min-height: 74px !important;
    width: 304px !important;
    min-width: 304px !important;
    border: none !important;
    overflow: visible !important;
}

/* reCAPTCHA container in Ecwid forms */
.ec-form__row--recaptcha,
.ec-form__cell--recaptcha {
    background-color: transparent !important;
    min-height: 78px !important;
    overflow: visible !important;
}

/* Reset any parent container that might hide CAPTCHA */
*:has(> .g-recaptcha),
*:has(> .cf-turnstile),
*:has(> .h-captcha),
*:has(> iframe[src*="recaptcha"]),
*:has(> iframe[src*="turnstile"]),
*:has(> iframe[src*="hcaptcha"]) {
    overflow: visible !important;
    height: auto !important;
    min-height: 78px !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* ================================================
   Ecwid Account/Sign-In Page Fixes
   PROPERLY SCOPED - Only targets Ecwid account pages
   ================================================ */

/* Account page containers - Ecwid specific classes only */
.ec-account,
.ec-account__body,
.ec-signin,
.ec-signin__form,
.ec-store .ec-account,
.ec-store .ec-signin,
.ecwid-productBrowser .ec-account,
.ecwid-productBrowser .ec-signin {
    background-color: var(--dark-bg) !important;
    color: var(--gray-100) !important;
}

/* ================================================
   Ecwid Account Page Section Cards/Boxes
   Adds visible containers around form sections
   ================================================ */

/* Account page section headers (Legal, Account, etc.) */
.ec-account [class*="header"],
.ec-account [class*="title"],
.ec-signin [class*="header"],
.ec-signin [class*="title"],
.ec-store [class*="section-title"],
.ec-store [class*="block-title"],
.ec-store h2,
.ec-store h3,
.ec-store h4 {
    color: var(--white) !important;
    font-weight: 600 !important;
    margin-bottom: 12px !important;
    padding-bottom: 8px !important;
    border-bottom: 1px solid var(--gray-600) !important;
}

/* Account page sections/cards with visible borders */
/* NOTE: Excludes checkout/cart elements to prevent breaking payment form layout */
.ec-account [class*="section"]:not([class*="checkout"]):not([class*="Checkout"]):not([class*="payment"]):not([class*="Payment"]),
.ec-account [class*="block"]:not([class*="checkout"]):not([class*="Checkout"]):not([class*="payment"]):not([class*="Payment"]),
.ec-account [class*="card"]:not([class*="checkout"]):not([class*="Checkout"]):not([class*="payment"]):not([class*="Payment"]),
.ec-account [class*="panel"]:not([class*="checkout"]):not([class*="Checkout"]):not([class*="payment"]):not([class*="Payment"]),
.ec-signin [class*="section"]:not([class*="checkout"]):not([class*="Checkout"]):not([class*="payment"]):not([class*="Payment"]),
.ec-signin [class*="block"]:not([class*="checkout"]):not([class*="Checkout"]):not([class*="payment"]):not([class*="Payment"]),
.ec-signin [class*="card"]:not([class*="checkout"]):not([class*="Checkout"]):not([class*="payment"]):not([class*="Payment"]),
.ec-signin [class*="panel"]:not([class*="checkout"]):not([class*="Checkout"]):not([class*="payment"]):not([class*="Payment"]) {
    background-color: var(--primary-light) !important;
    border: 1px solid var(--gray-600) !important;
    border-radius: 8px !important;
    padding: 16px !important;
    margin-bottom: 16px !important;
}

/* NOTE: Removed .ec-store selectors for section/block/card/panel as they
   break checkout form layout. Only apply to account/signin pages. */

/* Account page list items (Terms, Privacy Policy, etc.) */
.ec-account ul,
.ec-account ol,
.ec-signin ul,
.ec-signin ol,
.ec-store ul:not(.nav__list),
.ec-store ol {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.ec-account li,
.ec-signin li,
.ec-store li:not(.nav__item) {
    padding: 12px 16px !important;
    margin-bottom: 4px !important;
    background-color: var(--primary-light) !important;
    border: 1px solid var(--gray-700) !important;
    border-radius: 6px !important;
    transition: all 0.2s ease !important;
}

.ec-account li:hover,
.ec-signin li:hover,
.ec-store li:not(.nav__item):hover {
    border-color: var(--accent) !important;
    background-color: var(--dark-lighter) !important;
}

/* Account page links in lists */
.ec-account li a,
.ec-signin li a,
.ec-store li:not(.nav__item) a {
    color: var(--accent) !important;
    text-decoration: none !important;
    display: block !important;
    width: 100% !important;
}

/* Form containers with visible borders */
.ec-account form,
.ec-signin form,
.ec-store form:not(.contact-form) {
    background-color: var(--primary-light) !important;
    border: 1px solid var(--gray-600) !important;
    border-radius: 8px !important;
    padding: 20px !important;
    margin-bottom: 16px !important;
}

/* Input fields with proper borders */
.ec-account input[type="text"],
.ec-account input[type="email"],
.ec-account input[type="password"],
.ec-account input[type="tel"],
.ec-signin input[type="text"],
.ec-signin input[type="email"],
.ec-signin input[type="password"],
.ec-signin input[type="tel"],
.ec-store input[type="text"]:not(.nav *),
.ec-store input[type="email"]:not(.nav *),
.ec-store input[type="password"]:not(.nav *),
.ec-store input[type="tel"]:not(.nav *) {
    background-color: var(--dark-lighter) !important;
    color: var(--white) !important;
    border: 1px solid var(--gray-600) !important;
    border-radius: 6px !important;
    padding: 12px 16px !important;
    width: 100% !important;
    box-sizing: border-box !important;
    font-size: 1rem !important;
}

.ec-account input:focus,
.ec-signin input:focus,
.ec-store input:not(.nav *):focus {
    border-color: var(--accent) !important;
    outline: none !important;
    box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.2) !important;
}

/* Description/info text */
.ec-account [class*="description"],
.ec-account [class*="info"],
.ec-account [class*="hint"],
.ec-signin [class*="description"],
.ec-signin [class*="info"],
.ec-signin [class*="hint"],
.ec-store [class*="description"],
.ec-store [class*="info"],
.ec-store [class*="hint"] {
    color: var(--gray-300) !important;
    font-size: 0.9rem !important;
    line-height: 1.5 !important;
}

/* Error messages */
.ec-account [class*="error"],
.ec-signin [class*="error"],
.ec-store [class*="error"]:not(.ticket-item__availability--low) {
    color: var(--error) !important;
    background-color: rgba(239, 68, 68, 0.1) !important;
    border: 1px solid rgba(239, 68, 68, 0.3) !important;
    border-radius: 6px !important;
    padding: 10px 14px !important;
    margin-top: 8px !important;
}

/* Breadcrumbs navigation on account page */
.ec-account [class*="breadcrumb"],
.ec-signin [class*="breadcrumb"],
.ec-store [class*="breadcrumb"] {
    color: var(--gray-400) !important;
    padding: 8px 0 !important;
    margin-bottom: 16px !important;
    font-size: 0.9rem !important;
}

.ec-account [class*="breadcrumb"] a,
.ec-signin [class*="breadcrumb"] a,
.ec-store [class*="breadcrumb"] a {
    color: var(--accent) !important;
}

/* Footer text and links */
.ec-account [class*="footer"],
.ec-signin [class*="footer"],
.ec-store [class*="footer"]:not(.footer) {
    margin-top: 20px !important;
    padding-top: 16px !important;
    border-top: 1px solid var(--gray-700) !important;
    text-align: center !important;
}

/* Checkbox and radio styling */
.ec-account input[type="checkbox"],
.ec-account input[type="radio"],
.ec-signin input[type="checkbox"],
.ec-signin input[type="radio"],
.ec-store input[type="checkbox"]:not(.nav *),
.ec-store input[type="radio"]:not(.nav *) {
    accent-color: var(--accent) !important;
    width: 18px !important;
    height: 18px !important;
    margin-right: 8px !important;
}

/* Label styling */
.ec-account label,
.ec-signin label,
.ec-store label:not(.nav *) {
    color: var(--gray-200) !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    margin-bottom: 8px !important;
    cursor: pointer !important;
}

/* Sign-in form buttons - ensure white text */
/* Properly scoped to Ecwid containers only */
.ec-account button,
.ec-signin button,
.ec-store .ec-account button,
.ec-store .ec-signin button,
.ec-store button.ec-btn--primary,
.ec-store button[class*="submit"],
.ecwid-productBrowser button:not(.nav__toggle):not(.theme-toggle) {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%) !important;
    color: #ffffff !important;
    border: none !important;
    font-weight: 600 !important;
}

/* Ensure button text is always white/visible - Ecwid scoped */
.ec-store button *,
.ec-cart button *,
.ec-form button *,
.ecwid-productBrowser button * {
    color: #ffffff !important;
}

/* Account page text - Ecwid scoped */
.ec-account span,
.ec-account p,
.ec-account div,
.ec-signin span,
.ec-signin p,
.ec-signin div {
    color: var(--gray-100) !important;
}

/* Account page links - Ecwid scoped */
.ec-account a,
.ec-signin a {
    color: var(--accent) !important;
}

/* Ecwid button styling - PROPERLY SCOPED */
/* Only targets actual Ecwid containers, excludes nav and site buttons */
.ec-store button:not(.nav__toggle):not(.theme-toggle):not([class*="close"]),
.ec-cart button:not(.nav__toggle):not(.theme-toggle):not([class*="close"]),
.ec-form button:not(.nav__toggle):not(.theme-toggle):not([class*="close"]),
.ecwid-productBrowser button:not(.nav__toggle):not(.theme-toggle):not([class*="close"]) {
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%) !important;
    color: #ffffff !important;
    border: none !important;
    font-weight: 600 !important;
    text-shadow: none !important;
    -webkit-text-fill-color: #ffffff !important;
}

/* Force ALL text inside Ecwid buttons to be white - properly scoped */
.ec-store button:not(.nav__toggle):not(.theme-toggle) *,
.ec-store button:not(.nav__toggle):not(.theme-toggle) span,
.ec-cart button:not(.nav__toggle):not(.theme-toggle) *,
.ec-cart button:not(.nav__toggle):not(.theme-toggle) span,
.ec-form button:not(.nav__toggle):not(.theme-toggle) *,
.ec-form button:not(.nav__toggle):not(.theme-toggle) span,
.ecwid-productBrowser button:not(.nav__toggle):not(.theme-toggle) *,
.ecwid-productBrowser button:not(.nav__toggle):not(.theme-toggle) span {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    text-shadow: none !important;
}

/* Links styled as buttons in Ecwid - properly scoped */
.ec-store a.ec-btn,
.ec-store a[class*="button"],
.ec-cart a.ec-btn,
.ec-cart a[class*="button"],
.ecwid-productBrowser a.ec-btn,
.ecwid-productBrowser a[class*="button"] {
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%) !important;
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
}

/* ================================================
   Ecwid Mobile Responsive Styles - Colors Only
   IMPORTANT: Only color overrides, no layout changes
   ================================================ */

@media (max-width: 768px) {
    /* Mobile button styling - colors only */
    .ec-store button.ec-btn--primary,
    .ec-form button.ec-btn--primary {
        font-size: 1rem !important;
    }

    /* Mini-cart text size on mobile */
    .ec-minicart__products-item-name {
        font-size: 13px !important;
    }
}

/* ================================================
   Ecwid Mobile Mini-Cart Styling
   IMPORTANT: Only target the popup mini-cart, NOT checkout pages
   ================================================ */

@media (max-width: 768px) {
    /* Only style the minicart popup - NOT full checkout */
    .ec-minicart {
        z-index: 99999 !important;
    }

    /* Mini-cart close button styling */
    .ec-minicart button[class*="close"],
    .ec-minicart [class*="close-button"],
    .ec-minicart__close {
        background-color: var(--accent) !important;
        border: none !important;
        border-radius: 50% !important;
        width: 44px !important;
        height: 44px !important;
    }

    /* Close button icon */
    .ec-minicart button[class*="close"] svg {
        color: #ffffff !important;
        fill: #ffffff !important;
    }

    /* Mini-cart product items only */
    .ec-minicart__products-item {
        background-color: var(--dark-lighter) !important;
        border: 1px solid var(--gray-600) !important;
        border-radius: 12px !important;
        margin: 0 16px 12px 16px !important;
    }

    /* Product image in mini-cart */
    .ec-minicart__products-item-image {
        width: 72px !important;
        height: 72px !important;
        min-width: 72px !important;
        border-radius: 10px !important;
        overflow: hidden !important;
        background-color: var(--dark-bg) !important;
        margin: 0 !important;
    }

    .ec-minicart__products-item-image img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        border-radius: 10px !important;
    }

    /* Mini-cart product name */
    .ec-minicart__products-item-name {
        font-size: 15px !important;
        font-weight: 600 !important;
        color: var(--gray-100) !important;
    }

    /* Mini-cart product price */
    .ec-minicart__products-item-price {
        font-size: 16px !important;
        font-weight: 700 !important;
        color: #22c55e !important;
    }

    /* Mini-cart products list */
    .ec-minicart__products {
        padding: 8px 0 !important;
        overflow-y: auto !important;
    }
}

/* ================================================
   Page Headers
   ================================================ */

.page-header {
    padding: calc(80px + var(--spacing-3xl)) 0 var(--spacing-2xl);
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.page-header__content {
    position: relative;
    z-index: 1;
}

.page-header__title {
    margin-bottom: var(--spacing-md);
}

.page-header__subtitle {
    color: var(--gray-300);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ================================================
   Utilities
   ================================================ */

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--spacing-sm); }
.mb-2 { margin-bottom: var(--spacing-md); }
.mb-3 { margin-bottom: var(--spacing-lg); }
.mb-4 { margin-bottom: var(--spacing-xl); }
.mb-5 { margin-bottom: var(--spacing-2xl); }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: var(--spacing-sm); }
.mt-2 { margin-top: var(--spacing-md); }
.mt-3 { margin-top: var(--spacing-lg); }
.mt-4 { margin-top: var(--spacing-xl); }
.mt-5 { margin-top: var(--spacing-2xl); }

.hidden { display: none !important; }
.visible { display: block !important; }

@media (max-width: 640px) {
    .hide-mobile { display: none !important; }
}

@media (min-width: 641px) {
    .hide-desktop { display: none !important; }
}

/* ================================================
   Animations
   ================================================ */

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

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

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.animate-fade-in {
    animation: fadeIn 0.6s ease forwards;
}

.animate-slide-up {
    animation: slideUp 0.6s ease forwards;
}

.animate-pulse {
    animation: pulse 2s ease-in-out infinite;
}

/* Stagger animations */
.stagger > * {
    opacity: 0;
    animation: slideUp 0.6s ease forwards;
}

.stagger > *:nth-child(1) { animation-delay: 0.1s; }
.stagger > *:nth-child(2) { animation-delay: 0.2s; }
.stagger > *:nth-child(3) { animation-delay: 0.3s; }
.stagger > *:nth-child(4) { animation-delay: 0.4s; }
.stagger > *:nth-child(5) { animation-delay: 0.5s; }
.stagger > *:nth-child(6) { animation-delay: 0.6s; }

/* ================================================
   Loading States
   ================================================ */

.loading {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-2xl);
}

.spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--gray-600);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ================================================
   Toast Notifications
   ================================================ */

.toast-container {
    position: fixed;
    top: var(--spacing-xl);
    right: var(--spacing-xl);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.toast {
    background: var(--primary-light);
    border-radius: var(--radius-md);
    padding: var(--spacing-md) var(--spacing-lg);
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    min-width: 300px;
    animation: slideIn 0.3s ease;
    border-left: 4px solid var(--accent);
}

.toast--success { border-left-color: var(--success); }
.toast--error { border-left-color: var(--error); }
.toast--warning { border-left-color: var(--warning); }

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ================================================
   Enhanced Animations & Micro-interactions
   ================================================ */

/* Reveal on Scroll Animation */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(60px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-scale.visible {
    opacity: 1;
    transform: scale(1);
}

/* Float Animation */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.animate-float {
    animation: float 4s ease-in-out infinite;
}

/* Glow Pulse Animation */
@keyframes glowPulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(34, 197, 94, 0.2);
    }
    50% {
        box-shadow: 0 0 40px rgba(34, 197, 94, 0.4);
    }
}

.animate-glow {
    animation: glowPulse 3s ease-in-out infinite;
}

/* Shimmer Effect */
@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

.shimmer {
    background: linear-gradient(
        90deg,
        var(--primary-light) 0%,
        var(--gray-600) 50%,
        var(--primary-light) 100%
    );
    background-size: 200% 100%;
    animation: shimmer 2s infinite;
}

/* ================================================
   Glass Morphism Components
   ================================================ */

.glass {
    background: rgba(26, 26, 26, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.glass-light {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.glass-accent {
    background: rgba(34, 197, 94, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(34, 197, 94, 0.2);
}

/* ================================================
   Enhanced Button Styles
   ================================================ */

.btn {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    z-index: -1;
}

.btn:active::before {
    width: 300%;
    height: 300%;
}

.btn--primary {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
}

.btn--primary:hover {
    background: linear-gradient(135deg, var(--accent-hover) 0%, var(--accent) 100%);
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.4);
}

.btn--glow {
    animation: glowPulse 2s ease-in-out infinite;
}

.btn--3d {
    transform-style: preserve-3d;
    box-shadow:
        0 4px 0 var(--accent-dark),
        0 6px 20px rgba(0, 0, 0, 0.3);
}

.btn--3d:hover {
    transform: translateY(-2px);
    box-shadow:
        0 6px 0 var(--accent-dark),
        0 10px 30px rgba(0, 0, 0, 0.4);
}

.btn--3d:active {
    transform: translateY(2px);
    box-shadow:
        0 2px 0 var(--accent-dark),
        0 4px 10px rgba(0, 0, 0, 0.3);
}

/* Icon Button Animation */
.btn svg,
.btn i {
    transition: transform var(--transition-fast);
}

.btn:hover svg,
.btn:hover i {
    transform: translateX(4px);
}

/* ================================================
   Enhanced Card Styles
   ================================================ */

.card {
    position: relative;
    background: linear-gradient(145deg, var(--primary-light) 0%, rgba(42, 42, 42, 0.8) 100%);
}

.card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 60px rgba(34, 197, 94, 0.1);
}

.card--interactive {
    cursor: pointer;
}

.card--interactive::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(34, 197, 94, 0.1) 100%);
    opacity: 0;
    transition: opacity var(--transition-base);
    border-radius: inherit;
    pointer-events: none;
}

.card--interactive:hover::after {
    opacity: 1;
}

/* ================================================
   Enhanced Hero Section
   ================================================ */

.hero {
    position: relative;
}

.hero__bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse at center,
        transparent 0%,
        rgba(0, 0, 0, 0.4) 100%
    );
    z-index: 1;
}

.hero__content {
    animation: heroReveal 1.2s ease forwards;
}

@keyframes heroReveal {
    0% {
        opacity: 0;
        transform: translateY(40px) scale(0.98);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.hero__badge {
    animation: badgePop 0.6s ease 0.3s both;
}

@keyframes badgePop {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.hero__title {
    background: linear-gradient(135deg, var(--white) 0%, var(--gray-200) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero__actions .btn {
    animation: slideUp 0.6s ease forwards;
    opacity: 0;
}

.hero__actions .btn:nth-child(1) {
    animation-delay: 0.5s;
}

.hero__actions .btn:nth-child(2) {
    animation-delay: 0.7s;
}

/* Animated Background Gradient */
.hero--animated-bg .hero__overlay {
    background: linear-gradient(
        45deg,
        rgba(26, 26, 26, 0.9) 0%,
        rgba(61, 90, 61, 0.3) 25%,
        rgba(26, 26, 26, 0.9) 50%,
        rgba(34, 197, 94, 0.2) 75%,
        rgba(26, 26, 26, 0.9) 100%
    );
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* ================================================
   Enhanced Navigation
   ================================================ */

.nav__link {
    position: relative;
}

.nav__cta {
    position: relative;
    overflow: hidden;
}

.nav__cta::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to right,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transform: rotate(45deg) translateX(-100%);
    transition: transform 0.6s;
}

.nav__cta:hover::after {
    transform: rotate(45deg) translateX(100%);
}

/* Mobile Nav Animation - disabled opacity animation to ensure links are always visible */
.nav__menu {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ================================================
   Enhanced Membership Cards
   ================================================ */

.membership-card {
    position: relative;
    overflow: hidden;
}

.membership-card::after {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: conic-gradient(
        from 0deg,
        transparent 0deg 90deg,
        rgba(34, 197, 94, 0.1) 90deg 180deg,
        transparent 180deg 270deg,
        rgba(34, 197, 94, 0.1) 270deg 360deg
    );
    animation: rotateBg 10s linear infinite;
    z-index: 0;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.membership-card:hover::after {
    opacity: 1;
}

@keyframes rotateBg {
    to { transform: rotate(360deg); }
}

.membership-card__price {
    position: relative;
    display: inline-block;
}

.membership-card__price::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(34, 197, 94, 0.3);
    transform: skewX(-15deg);
    z-index: -1;
}

/* ================================================
   Feature Icons & Stats
   ================================================ */

.feature-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    border-radius: var(--radius-xl);
    margin-bottom: var(--spacing-lg);
    position: relative;
    transition: all var(--transition-base);
}

.feature-icon::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: calc(var(--radius-xl) + 3px);
    background: linear-gradient(135deg, var(--accent) 0%, transparent 50%);
    z-index: -1;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.feature-icon:hover {
    transform: scale(1.1) rotate(5deg);
}

.feature-icon:hover::before {
    opacity: 1;
}

.stat-card {
    text-align: center;
    padding: var(--spacing-xl);
    background: var(--primary-light);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all var(--transition-base);
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: rgba(34, 197, 94, 0.3);
}

.stat-card__number {
    font-family: var(--font-display);
    font-size: 3.5rem;
    color: var(--accent);
    line-height: 1;
    margin-bottom: var(--spacing-sm);
}

.stat-card__label {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gray-400);
}

/* Counter Animation */
.stat-card__number[data-count] {
    transition: all 0.5s ease;
}

/* ================================================
   Image Gallery Enhancements
   ================================================ */

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
}

.gallery__item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    cursor: pointer;
    aspect-ratio: 4/3;
}

.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery__item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.8) 0%,
        transparent 60%
    );
    opacity: 0;
    transition: opacity var(--transition-base);
    z-index: 1;
}

.gallery__item::after {
    content: 'View';
    position: absolute;
    bottom: var(--spacing-lg);
    left: var(--spacing-lg);
    color: var(--white);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.875rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all var(--transition-base);
    z-index: 2;
}

.gallery__item:hover img {
    transform: scale(1.1);
}

.gallery__item:hover::before,
.gallery__item:hover::after {
    opacity: 1;
}

.gallery__item:hover::after {
    transform: translateY(0);
}

/* ================================================
   Testimonial Cards
   ================================================ */

.testimonial-card {
    background: var(--primary-light);
    border-radius: var(--radius-xl);
    padding: var(--spacing-2xl);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: var(--spacing-lg);
    left: var(--spacing-xl);
    font-family: Georgia, serif;
    font-size: 6rem;
    line-height: 1;
    color: var(--accent);
    opacity: 0.2;
}

.testimonial-card__content {
    position: relative;
    z-index: 1;
    font-size: 1.125rem;
    font-style: italic;
    color: var(--gray-200);
    line-height: 1.8;
    margin-bottom: var(--spacing-xl);
}

.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.testimonial-card__avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent);
}

.testimonial-card__name {
    font-weight: 600;
    margin-bottom: 2px;
}

.testimonial-card__role {
    font-size: 0.875rem;
    color: var(--gray-400);
}

/* ================================================
   Progress Bars
   ================================================ */

.progress {
    height: 8px;
    background: var(--primary-dark);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.progress__bar {
    height: 100%;
    background: linear-gradient(90deg, var(--accent) 0%, var(--accent-hover) 100%);
    border-radius: var(--radius-sm);
    transition: width 1s ease;
    position: relative;
}

.progress__bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    animation: shimmer 2s infinite;
}

/* ================================================
   Countdown Timer
   ================================================ */

.countdown {
    display: flex;
    gap: var(--spacing-lg);
    justify-content: center;
}

.countdown__item {
    text-align: center;
}

.countdown__value {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: var(--primary-light);
    border-radius: var(--radius-lg);
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: var(--spacing-sm);
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.countdown__label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gray-400);
}

/* ================================================
   Accordion
   ================================================ */

.accordion {
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.accordion__item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.accordion__item:last-child {
    border-bottom: none;
}

.accordion__header {
    width: 100%;
    padding: var(--spacing-lg);
    background: var(--primary-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--white);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.accordion__header:hover {
    background: var(--primary);
    color: var(--accent);
}

.accordion__icon {
    transition: transform var(--transition-fast);
}

.accordion__item.active .accordion__icon {
    transform: rotate(180deg);
}

.accordion__content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: var(--primary-dark);
}

.accordion__item.active .accordion__content {
    max-height: 500px;
}

.accordion__body {
    padding: var(--spacing-lg);
    color: var(--gray-300);
}

/* ================================================
   Tabs
   ================================================ */

.tabs {
    margin-bottom: var(--spacing-xl);
}

.tabs__nav {
    display: flex;
    gap: var(--spacing-xs);
    background: var(--primary-dark);
    padding: var(--spacing-xs);
    border-radius: var(--radius-lg);
    overflow-x: auto;
}

.tabs__btn {
    padding: var(--spacing-md) var(--spacing-xl);
    font-weight: 500;
    color: var(--gray-400);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
    white-space: nowrap;
}

.tabs__btn:hover {
    color: var(--white);
}

.tabs__btn.active {
    background: var(--accent);
    color: var(--primary);
}

.tabs__content {
    display: none;
    animation: fadeIn 0.4s ease;
}

.tabs__content.active {
    display: block;
}

/* ================================================
   Badges & Tags
   ================================================ */

.badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-xs) var(--spacing-sm);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--radius-sm);
    background: var(--gray-600);
    color: var(--white);
}

.badge--success {
    background: rgba(34, 197, 94, 0.2);
    color: var(--success);
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.badge--warning {
    background: rgba(245, 158, 11, 0.2);
    color: var(--warning);
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.badge--error {
    background: rgba(239, 68, 68, 0.2);
    color: var(--error);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.badge--accent {
    background: rgba(34, 197, 94, 0.2);
    color: var(--accent);
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.badge--pulse {
    position: relative;
}

.badge--pulse::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 8px;
    width: 6px;
    height: 6px;
    background: currentColor;
    border-radius: 50%;
    transform: translateY(-50%);
    animation: pulse 1.5s ease-in-out infinite;
}

.badge--pulse {
    padding-left: calc(var(--spacing-sm) + 12px);
}

.badge--blue {
    background: rgba(59, 130, 246, 0.2);
    color: #3b82f6;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.badge--purple {
    background: rgba(168, 85, 247, 0.2);
    color: #a855f7;
    border: 1px solid rgba(168, 85, 247, 0.3);
}

.badge--orange {
    background: rgba(249, 115, 22, 0.2);
    color: #f97316;
    border: 1px solid rgba(249, 115, 22, 0.3);
}

.badge--green {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.badge--teal {
    background: rgba(20, 184, 166, 0.2);
    color: #14b8a6;
    border: 1px solid rgba(20, 184, 166, 0.3);
}

.badge--cyan {
    background: rgba(6, 182, 212, 0.2);
    color: #06b6d4;
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.badge--red {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.badge--gray {
    background: rgba(107, 114, 128, 0.2);
    color: #6b7280;
    border: 1px solid rgba(107, 114, 128, 0.3);
}

/* ================================================
   Scrollbar Styling
   ================================================ */

::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: var(--primary-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--gray-600);
    border-radius: 5px;
    border: 2px solid var(--primary-dark);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gray-500);
}

/* Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--gray-600) var(--primary-dark);
}

/* ================================================
   Selection Styling
   ================================================ */

::selection {
    background: var(--accent);
    color: var(--primary);
}

::-moz-selection {
    background: var(--accent);
    color: var(--primary);
}

/* ================================================
   Focus States (Accessibility)
   ================================================ */

:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

/* ================================================
   Reduced Motion Preference
   ================================================ */

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

/* ================================================
   Print Styles
   ================================================ */

@media print {
    .nav,
    .footer,
    .btn,
    .toast-container {
        display: none !important;
    }

    body {
        background: white !important;
        color: black !important;
    }

    .hero {
        min-height: auto;
        padding: 20px 0;
    }

    /* Ecwid store content should be printable */
    .ec-store,
    .ec-store *,
    .ec-cart,
    .ec-cart *,
    .ec-checkout,
    .ec-checkout * {
        color: black !important;
        background: white !important;
        -webkit-text-fill-color: black !important;
    }

    /* Hide non-essential Ecwid elements during print */
    .ec-store [class*="footer-menu"],
    .ec-store [class*="FooterMenu"],
    .ec-store [class*="footer-nav"],
    .ec-store [class*="FooterNav"] {
        display: none !important;
    }
}

/* ================================================
   Light Theme Component Overrides
   Using proper CSS syntax (not nested)
   ================================================ */

/* Body and base */
[data-theme="light"] body {
    background-color: #f8f9fa;
    color: #1a1a1a;
}

/* Navigation */
[data-theme="light"] .nav {
    background: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
}

[data-theme="light"] .nav.scrolled {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .nav__logo {
    color: #1a1a1a;
}

[data-theme="light"] .nav__link {
    color: #1a1a1a;
}

[data-theme="light"] .nav__link:hover,
[data-theme="light"] .nav__link.active {
    color: #16a34a;
}

[data-theme="light"] .nav__toggle span {
    background: #1a1a1a;
}

/* Light mode nav__menu styles moved to mobile media query above */

/* Hero section */
[data-theme="light"] .hero__bg video,
[data-theme="light"] .hero__bg img {
    filter: brightness(0.7) saturate(0.9);
}

[data-theme="light"] .hero__overlay {
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.75) 0%,
        rgba(255, 255, 255, 0.65) 50%,
        rgba(248, 249, 250, 0.9) 100%
    );
}

[data-theme="light"] .hero__content {
    background: rgba(255, 255, 255, 0.7);
    padding: 2rem 3rem;
    border-radius: 16px;
    backdrop-filter: blur(8px);
}

[data-theme="light"] .hero__title {
    color: #1a1a1a;
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: #1a1a1a;
    background-clip: unset;
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.5);
}

[data-theme="light"] .hero__title .text-accent {
    -webkit-text-fill-color: #16a34a;
    color: #16a34a;
}

[data-theme="light"] .hero__subtitle {
    color: #333333;
    text-shadow: 0 1px 3px rgba(255, 255, 255, 0.6);
}

[data-theme="light"] .hero__badge {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid #22c55e;
    color: #16a34a;
}

[data-theme="light"] .hero__actions .btn--secondary {
    background: rgba(255, 255, 255, 0.9);
    border-color: #1a1a1a;
    color: #1a1a1a;
}

[data-theme="light"] .hero__actions .btn--secondary:hover {
    background: #1a1a1a;
    color: #ffffff;
}

/* Page headers - banners on all pages */
[data-theme="light"] .page-header {
    background: linear-gradient(135deg, #e9ecef 0%, #f8f9fa 100%);
}

[data-theme="light"] .page-header__title {
    color: #1a1a1a;
}

[data-theme="light"] .page-header__subtitle {
    color: #495057;
}

/* All headings in light mode */
[data-theme="light"] h1,
[data-theme="light"] h2,
[data-theme="light"] h3,
[data-theme="light"] h4,
[data-theme="light"] h5,
[data-theme="light"] h6 {
    color: #1a1a1a;
}

/* Section headers */
[data-theme="light"] .section-header h2 {
    color: #1a1a1a;
}

[data-theme="light"] .section-header p {
    color: #495057;
}

/* Cards - general */
[data-theme="light"] .card {
    background: #ffffff;
    border: 1px solid #dee2e6;
}

[data-theme="light"] .card__title {
    color: #1a1a1a;
}

[data-theme="light"] .card__description {
    color: #6c757d;
}

/* Ticket cards */
[data-theme="light"] .ticket-card {
    background: #ffffff;
    border: 1px solid #dee2e6;
}

[data-theme="light"] .ticket-card__name {
    color: #1a1a1a;
}

[data-theme="light"] .ticket-card__availability {
    color: #6c757d;
}

/* Membership cards */
[data-theme="light"] .membership-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 2px solid #dee2e6;
}

[data-theme="light"] .membership-card:hover {
    border-color: #22c55e;
}

[data-theme="light"] .membership-card__name {
    color: #1a1a1a;
}

[data-theme="light"] .membership-card__period {
    color: #6c757d;
}

[data-theme="light"] .membership-card__feature {
    color: #495057;
}

/* Party cards */
[data-theme="light"] .party-card {
    background: #ffffff;
    border: 2px solid #dee2e6;
}

[data-theme="light"] .party-card__header {
    background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
}

[data-theme="light"] .party-card__name {
    color: #1a1a1a;
}

[data-theme="light"] .party-card__content {
    background: #ffffff;
}

[data-theme="light"] .party-card__feature {
    color: #495057;
    border-bottom-color: #dee2e6;
}

/* Location cards */
[data-theme="light"] .location-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 1px solid #dee2e6;
}

[data-theme="light"] .location-card__address {
    color: #6c757d;
}

[data-theme="light"] .location-card__hours h4 {
    color: #495057;
}

[data-theme="light"] .hours-item {
    border-bottom-color: #dee2e6;
}

[data-theme="light"] .hours-item__day {
    color: #6c757d;
}

[data-theme="light"] .hours-item__time {
    color: #1a1a1a;
}

/* CTA Box */
[data-theme="light"] .cta-box {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border: 1px solid #dee2e6;
}

[data-theme="light"] .cta-box__content h2 {
    color: #1a1a1a;
}

[data-theme="light"] .cta-box__content p {
    color: #6c757d;
}

[data-theme="light"] .cta-box__price-label {
    color: #6c757d;
}

/* Stat cards */
[data-theme="light"] .stat-card {
    background: #ffffff;
    border: 1px solid #dee2e6;
}

[data-theme="light"] .stat-card__label {
    color: #6c757d;
}

/* Testimonials */
[data-theme="light"] .testimonial {
    background: #ffffff;
    border: 1px solid #dee2e6;
}

[data-theme="light"] .testimonial__text {
    color: #495057;
}

[data-theme="light"] .testimonial__author strong {
    color: #1a1a1a;
}

[data-theme="light"] .testimonial__author span {
    color: #6c757d;
}

/* Footer */
[data-theme="light"] .footer {
    background: #e9ecef;
    border-top: 1px solid #dee2e6;
}

[data-theme="light"] .footer__heading {
    color: #16a34a;
}

[data-theme="light"] .footer__description {
    color: #6c757d;
}

[data-theme="light"] .footer__link {
    color: #6c757d;
}

[data-theme="light"] .footer__link:hover {
    color: #16a34a;
}

[data-theme="light"] .footer__social-link {
    background: #dee2e6;
    color: #495057;
}

[data-theme="light"] .footer__social-link:hover {
    background: #22c55e;
    color: #ffffff;
}

[data-theme="light"] .footer__bottom {
    border-top-color: #dee2e6;
    color: #6c757d;
}

/* Forms */
[data-theme="light"] .form-input,
[data-theme="light"] .form-select,
[data-theme="light"] .form-textarea {
    background: #ffffff;
    border-color: #dee2e6;
    color: #1a1a1a;
}

[data-theme="light"] .form-input::placeholder {
    color: #adb5bd;
}

[data-theme="light"] .form-label {
    color: #495057;
}

/* Buttons */
[data-theme="light"] .btn--secondary {
    color: #1a1a1a;
    border-color: #1a1a1a;
}

[data-theme="light"] .btn--secondary:hover {
    background: #1a1a1a;
    color: #ffffff;
}

[data-theme="light"] .btn--outline {
    border-color: #16a34a;
    color: #16a34a;
}

[data-theme="light"] .btn--outline:hover {
    background: #16a34a;
    color: #ffffff;
}

[data-theme="light"] .btn--ghost {
    color: #495057;
}

[data-theme="light"] .btn--ghost:hover {
    background: rgba(0, 0, 0, 0.05);
    color: #212529;
}

/* Text utilities */
[data-theme="light"] .text-muted {
    color: #6c757d;
}

/* Section variants */
[data-theme="light"] .section--dark {
    background-color: #e9ecef;
}

[data-theme="light"] .section--light {
    background-color: #ffffff;
}

[data-theme="light"] .section--accent {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, #f8f9fa 100%);
}

/* Glass morphism for light theme */
[data-theme="light"] .glass {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .glass-light {
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

/* Accordion */
[data-theme="light"] .accordion__header {
    background: #f8f9fa;
    color: #1a1a1a;
}

[data-theme="light"] .accordion__header:hover {
    background: #e9ecef;
    color: #16a34a;
}

[data-theme="light"] .accordion__content {
    background: #ffffff;
}

[data-theme="light"] .accordion__body {
    color: #495057;
}

/* Tabs */
[data-theme="light"] .tabs__nav {
    background: #e9ecef;
}

[data-theme="light"] .tabs__btn {
    color: #6c757d;
}

[data-theme="light"] .tabs__btn:hover {
    color: #1a1a1a;
}

/* Toast */
[data-theme="light"] .toast {
    background: #ffffff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Spinner */
[data-theme="light"] .spinner {
    border-color: #dee2e6;
    border-top-color: #22c55e;
}

/* Scrollbar for light theme */
[data-theme="light"] ::-webkit-scrollbar-track {
    background: #f8f9fa;
}

[data-theme="light"] ::-webkit-scrollbar-thumb {
    background: #adb5bd;
    border: 2px solid #f8f9fa;
}

[data-theme="light"] ::-webkit-scrollbar-thumb:hover {
    background: #6c757d;
}

/* Progress bar */
[data-theme="light"] .progress {
    background: #e9ecef;
}

/* Countdown */
[data-theme="light"] .countdown__value {
    background: #ffffff;
    border-color: rgba(34, 197, 94, 0.3);
}

[data-theme="light"] .countdown__label {
    color: #6c757d;
}

/* Badges in light mode - keep colored badges visible */
[data-theme="light"] .badge {
    background: #e9ecef;
    color: #495057;
}

/* Testimonial card */
[data-theme="light"] .testimonial-card {
    background: #ffffff;
    border: 1px solid #dee2e6;
}

[data-theme="light"] .testimonial-card__content {
    color: #495057;
}

[data-theme="light"] .testimonial-card__name {
    color: #1a1a1a;
}

[data-theme="light"] .testimonial-card__role {
    color: #6c757d;
}

/* ================================================
   High Contrast Mode Support
   ================================================ */

@media (prefers-contrast: high) {
    :root {
        --gray-300: #c0c0c0;
        --gray-400: #909090;
    }

    .card,
    .btn {
        border-width: 2px;
    }
}

/* ================================================
   Ecwid Checkout/Payment Form - Dark Theme Colors Only
   IMPORTANT: DO NOT override display, position, flex, padding, margin
   as this breaks Ecwid's internal layout. Only style colors/backgrounds.
   ================================================ */

/* Checkout container backgrounds - dark theme */
.ec-cart__body,
.ec-cart__sidebar,
.ec-cart__sidebar-inner,
.ec-checkout,
.ec-checkout__section,
.ec-cart__checkout,
.ec-cart__checkout-section {
    background-color: var(--dark-bg) !important;
}

/* Text colors in checkout */
.ec-cart__body,
.ec-cart__body p,
.ec-cart__body span,
.ec-cart__body div,
.ec-cart__body label,
.ec-checkout,
.ec-checkout p,
.ec-checkout span,
.ec-checkout div,
.ec-checkout label {
    color: var(--gray-100) !important;
}

/* Form inputs - only colors and borders, no layout changes */
.ec-cart__body input,
.ec-cart__body textarea,
.ec-cart__body select,
.ec-checkout input,
.ec-checkout textarea,
.ec-checkout select {
    background-color: var(--dark-lighter) !important;
    color: var(--gray-100) !important;
    border-color: var(--gray-600) !important;
}

/* Primary action buttons in checkout */
.ec-cart__body button.ec-btn--primary,
.ec-cart__body button[class*="primary"],
.ec-checkout button.ec-btn--primary,
.ec-checkout button[class*="primary"] {
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%) !important;
    color: #ffffff !important;
    border: none !important;
}

/* Price elements should be green */
.ec-cart__body [class*="price"],
.ec-cart__body [class*="Price"],
.ec-cart__body [class*="total"],
.ec-cart__body [class*="Total"],
.ec-checkout [class*="price"],
.ec-checkout [class*="Price"],
.ec-checkout [class*="total"],
.ec-checkout [class*="Total"] {
    color: #22c55e !important;
}

/* Links in checkout */
.ec-cart__body a,
.ec-checkout a {
    color: #22c55e !important;
}

.ec-cart__body a:hover,
.ec-checkout a:hover {
    color: #4ade80 !important;
}

/* Light theme checkout - colors only */
[data-theme="light"] .ec-cart__body,
[data-theme="light"] .ec-cart__sidebar,
[data-theme="light"] .ec-checkout {
    background-color: #ffffff !important;
}

[data-theme="light"] .ec-cart__body,
[data-theme="light"] .ec-cart__body p,
[data-theme="light"] .ec-cart__body span,
[data-theme="light"] .ec-cart__body div,
[data-theme="light"] .ec-cart__body label,
[data-theme="light"] .ec-checkout,
[data-theme="light"] .ec-checkout p,
[data-theme="light"] .ec-checkout span,
[data-theme="light"] .ec-checkout div,
[data-theme="light"] .ec-checkout label {
    color: #212529 !important;
}

[data-theme="light"] .ec-cart__body input,
[data-theme="light"] .ec-cart__body textarea,
[data-theme="light"] .ec-cart__body select,
[data-theme="light"] .ec-checkout input,
[data-theme="light"] .ec-checkout textarea,
[data-theme="light"] .ec-checkout select {
    background-color: #ffffff !important;
    color: #212529 !important;
    border-color: #ced4da !important;
}

[data-theme="light"] .ec-cart__body [class*="price"],
[data-theme="light"] .ec-cart__body [class*="total"],
[data-theme="light"] .ec-checkout [class*="price"],
[data-theme="light"] .ec-checkout [class*="total"] {
    color: #16a34a !important;
}

[data-theme="light"] .ec-cart__body a,
[data-theme="light"] .ec-checkout a {
    color: #16a34a !important;
}

/* ================================================
   Ecwid Order Confirmation Page - Print Order Fix
   ================================================ */

/* Ensure the Print Order link/button is clickable and visible */
.ec-store [class*="confirmation"] a,
.ec-store [class*="Confirmation"] a,
.ec-store [class*="order-confirmation"] a,
.ec-store [class*="OrderConfirmation"] a,
.ec-store [class*="print"] a,
.ec-store a[class*="print"],
.ec-store [class*="Print"] a,
.ec-store a[class*="Print"] {
    pointer-events: auto !important;
    cursor: pointer !important;
    text-decoration: underline !important;
}

/* Ensure print-related elements have proper z-index */
.ec-store [data-mk-print-fixed],
.ec-cart [data-mk-print-fixed] {
    z-index: 100 !important;
    pointer-events: auto !important;
}

/* ================================================
   Homepage Aesthetic Improvements (Feb 2026)
   ================================================ */

/* --- Enhanced Hero Badge --- */
.hero__badge {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(34, 197, 94, 0.4);
    padding: var(--spacing-sm) var(--spacing-lg);
    font-size: 0.8rem;
    border-radius: 50px;
}

/* --- Stat Cards with Icons --- */
.stat-card--has-icon {
    position: relative;
    padding-top: var(--spacing-2xl);
}

.stat-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin: 0 auto var(--spacing-md);
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 12px;
    color: var(--accent);
    transition: all var(--transition-base);
}

.stat-card:hover .stat-card__icon {
    background: rgba(34, 197, 94, 0.2);
    border-color: rgba(34, 197, 94, 0.4);
    transform: scale(1.1);
}

/* --- Testimonial Stars (SVG) --- */
.testimonial__stars {
    display: flex;
    gap: 2px;
    margin-bottom: var(--spacing-md);
}

.testimonial__stars svg {
    color: #f59e0b;
    filter: drop-shadow(0 1px 2px rgba(245, 158, 11, 0.3));
}

/* --- Enhanced CTA Section --- */
.section--cta {
    background: linear-gradient(135deg, rgba(61, 90, 61, 0.4) 0%, var(--primary) 50%, rgba(34, 197, 94, 0.15) 100%);
    position: relative;
    padding: var(--spacing-3xl) 0;
    overflow: hidden;
}

.section--cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 50%, rgba(34, 197, 94, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.cta-section__badge {
    display: inline-block;
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: var(--accent);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    padding: 0.35rem 1.25rem;
    border-radius: 50px;
    margin-bottom: var(--spacing-lg);
}

.cta-section__text {
    color: var(--gray-300);
    font-size: 1.1rem;
    max-width: 550px;
    margin: var(--spacing-md) auto var(--spacing-xl);
    line-height: 1.7;
}

/* --- Location Card Accent Top Bar --- */
.location-card {
    position: relative;
    overflow: hidden;
}

.location-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent-hover));
    opacity: 0;
    transition: opacity var(--transition-base);
}

.location-card:hover::before {
    opacity: 1;
}

/* --- Section Dividers --- */
.section + .section {
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

[data-theme="light"] .section + .section {
    border-top: 1px solid rgba(0, 0, 0, 0.04);
}

/* --- Light Mode Nav Background --- */
[data-theme="light"] .nav {
    background: #ffffff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .nav.scrolled {
    background: #ffffff;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .nav__logo {
    color: #1a1a1a;
}

[data-theme="light"] .nav__link {
    color: #4b5563;
}

[data-theme="light"] .nav__link:hover,
[data-theme="light"] .nav__link.active {
    color: #16a34a;
}

[data-theme="light"] .nav__toggle span {
    background: #1a1a1a;
}

/* --- Light Mode CTA Section --- */
[data-theme="light"] .section--cta {
    background: linear-gradient(135deg, rgba(22, 163, 74, 0.08) 0%, #f8f9fa 50%, rgba(22, 163, 74, 0.05) 100%);
}

[data-theme="light"] .cta-section__badge {
    background: rgba(22, 163, 74, 0.1);
    border-color: rgba(22, 163, 74, 0.3);
    color: #16a34a;
}

[data-theme="light"] .cta-section__text {
    color: #6c757d;
}

/* --- Light Mode Stat Cards Icon --- */
[data-theme="light"] .stat-card__icon {
    background: rgba(22, 163, 94, 0.08);
    border-color: rgba(22, 163, 74, 0.2);
    color: #16a34a;
}

[data-theme="light"] .stat-card:hover .stat-card__icon {
    background: rgba(22, 163, 74, 0.15);
    border-color: rgba(22, 163, 74, 0.3);
}

/* --- Light Mode Location Card Accent Bar --- */
[data-theme="light"] .location-card::before {
    background: linear-gradient(90deg, #16a34a, #22c55e);
}

/* --- Light Mode Section Dividers are already handled above --- */

/* --- Footer Brand Social Spacing --- */
.footer__brand .footer__social {
    margin-top: 1.25rem;
}

/* --- Light Mode Footer --- */
[data-theme="light"] .footer {
    background: #e9ecef;
    border-top-color: rgba(0, 0, 0, 0.08);
}

/* --- Smooth Scroll Anchor Offset --- */
[id] {
    scroll-margin-top: 100px;
}

