/*
   SWEET SJC STYLES - LIQUID GLASS EDITION

   A premium redesign using Apple's Liquid Glass design language
   with a cohesive pink color palette.

   This creates a sophisticated, translucent aesthetic while
   maintaining the playful sweetness of the original brand.

   Design Principles Applied:
   - Clarity: Clear visual hierarchy with legible typography
   - Deference: Interface defers to content, glass enhances understanding
   - Depth: Layered materials create spatial relationships

   Color Philosophy:
   - Primary pinks range from soft blush to vibrant hot pink
   - Accents use rose gold and warm coral tones
   - Backgrounds feature sunset pink gradients
   - All colors harmonize within the pink family
*/

/* ====================
   CSS CUSTOM PROPERTIES (Design Tokens)
   ==================== */

:root {
    /* Pink Palette - Primary Brand Colors */
    --pink-50: #fff0f3;          /* Softest blush - backgrounds */
    --pink-100: #ffe4eb;         /* Light blush */
    --pink-200: #ffc9d8;         /* Soft rose */
    --pink-300: #ffa3bf;         /* Rose pink */
    --pink-400: #ff7aa6;         /* Bright rose */
    --pink-500: #ff4d8d;         /* Hot pink - primary */
    --pink-600: #f02574;         /* Vivid pink */
    --pink-700: #d91a5f;         /* Deep pink */
    --pink-800: #b3164e;         /* Rich pink */
    --pink-900: #94143f;         /* Dark pink */

    /* Rose Gold & Coral Accents */
    --rose-gold: #e8a4b8;        /* Rose gold accent */
    --rose-gold-dark: #d4899d;   /* Deep rose gold */
    --coral-pink: #ff8fa3;       /* Coral pink */
    --coral-warm: #ff9a8b;       /* Warm coral */
    --blush-cream: #fff5f7;      /* Cream blush */

    /* Magenta & Deep Pink Range */
    --magenta-soft: #f472b6;     /* Soft magenta */
    --magenta-vibrant: #ec4899;  /* Vibrant magenta */
    --magenta-deep: #db2777;     /* Deep magenta */

    /* Supporting Colors - Soft Purples (pink-adjacent) */
    --lavender-pink: #e9d5ff;    /* Lavender with pink undertone */
    --orchid: #dda0dd;           /* Soft orchid */
    --mauve: #e0b0c7;            /* Dusty mauve */

    /* Semantic Brand Colors */
    --sweet-pink: #ff4d8d;       /* Primary brand pink */
    --sweet-pink-dark: #d91a5f;  /* Darker brand pink */
    --sweet-pink-light: #ff7aa6; /* Lighter brand pink */
    --sweet-accent: #ff8fa3;     /* Coral accent */
    --sweet-rose: #e8a4b8;       /* Rose gold */
    --sweet-gold: #f4c7ab;       /* Warm peachy gold (pink-compatible) */

    /* Semantic Colors - Light Mode */
    --text-primary: #1d1d1f;
    --text-secondary: #6e6e73;
    --text-tertiary: #86868b;
    --text-on-vibrant: rgba(255, 255, 255, 0.97);
    --text-on-pink: #ffffff;

    /* Glass Materials - Light Mode */
    --glass-thick: rgba(255, 255, 255, 0.72);
    --glass-regular: rgba(255, 255, 255, 0.56);
    --glass-thin: rgba(255, 255, 255, 0.32);
    --glass-ultra-thin: rgba(255, 255, 255, 0.16);

    /* Pink-Tinted Glass Materials */
    --glass-pink: rgba(255, 77, 141, 0.12);
    --glass-pink-light: rgba(255, 122, 166, 0.16);
    --glass-pink-vibrant: rgba(255, 77, 141, 0.28);
    --glass-pink-strong: rgba(255, 77, 141, 0.40);
    --glass-rose: rgba(232, 164, 184, 0.20);
    --glass-blush: rgba(255, 240, 243, 0.64);
    --glass-coral: rgba(255, 143, 163, 0.18);

    /* Borders & Separators */
    --border-glass: rgba(255, 255, 255, 0.48);
    --border-glass-subtle: rgba(255, 255, 255, 0.24);
    --border-glass-pink: rgba(255, 77, 141, 0.24);
    --border-divider: rgba(0, 0, 0, 0.08);

    /* Shadows - Light Mode */
    --shadow-glass: 0 8px 32px rgba(0, 0, 0, 0.08),
                    0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-glass-elevated: 0 16px 48px rgba(0, 0, 0, 0.12),
                             0 4px 16px rgba(0, 0, 0, 0.06);
    --shadow-glass-floating: 0 24px 64px rgba(0, 0, 0, 0.16),
                             0 8px 24px rgba(0, 0, 0, 0.08);
    --shadow-pink-glow: 0 8px 32px rgba(255, 77, 141, 0.28);
    --shadow-pink-glow-intense: 0 12px 40px rgba(255, 77, 141, 0.40);
    --shadow-rose-glow: 0 8px 24px rgba(232, 164, 184, 0.32);

    /* Blur Amounts */
    --blur-thick: 40px;
    --blur-regular: 24px;
    --blur-thin: 16px;
    --blur-subtle: 8px;

    /* Spacing (8pt Grid) */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-2xl: 48px;
    --space-3xl: 64px;

    /* Typography */
    --font-system: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text',
                   'Helvetica Neue', 'Segoe UI', Roboto, sans-serif;
    --font-weight-regular: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-2xl: 32px;
    --radius-round: 9999px;

    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 250ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 400ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-spring: 500ms cubic-bezier(0.34, 1.56, 0.64, 1);

    /* Pink Gradient Backgrounds */
    --bg-base: #fef7f9;          /* Very soft pink base */
    --bg-elevated: #ffffff;

    /* Sunset Pink Hero Gradient - Blush to Coral to Rose */
    --bg-gradient-hero: linear-gradient(135deg,
        rgba(255, 240, 243, 0.95) 0%,
        rgba(255, 163, 191, 0.85) 35%,
        rgba(255, 77, 141, 0.80) 65%,
        rgba(236, 72, 153, 0.85) 100%);

    /* Vibrant Pink Gradient - Hot Pink to Magenta */
    --bg-gradient-vibrant: linear-gradient(135deg,
        #ff9ac1 0%,
        #ff4d8d 40%,
        #ec4899 70%,
        #db2777 100%);

    /* Rose Gold Gradient */
    --bg-gradient-rose: linear-gradient(135deg,
        #fff0f3 0%,
        #ffc9d8 50%,
        #e8a4b8 100%);

    /* Coral Sunset Gradient */
    --bg-gradient-coral: linear-gradient(135deg,
        #fff5f7 0%,
        #ff8fa3 50%,
        #ff4d8d 100%);

    /* Soft Blush Gradient */
    --bg-gradient-blush: linear-gradient(135deg,
        #fff0f3 0%,
        #ffe4eb 50%,
        #ffc9d8 100%);
}

/* ====================
   DARK MODE SUPPORT
   ==================== */

@media (prefers-color-scheme: dark) {
    :root {
        /* Text Colors - Dark Mode */
        --text-primary: #f5f5f7;
        --text-secondary: #a1a1a6;
        --text-tertiary: #6e6e73;

        /* Glass Materials - Dark Mode */
        --glass-thick: rgba(44, 44, 46, 0.82);
        --glass-regular: rgba(44, 44, 46, 0.64);
        --glass-thin: rgba(44, 44, 46, 0.40);
        --glass-ultra-thin: rgba(44, 44, 46, 0.24);

        /* Pink-Tinted Glass - Dark Mode (increased saturation for visibility) */
        --glass-pink: rgba(255, 77, 141, 0.20);
        --glass-pink-light: rgba(255, 122, 166, 0.24);
        --glass-pink-vibrant: rgba(255, 77, 141, 0.36);
        --glass-pink-strong: rgba(255, 77, 141, 0.48);
        --glass-rose: rgba(232, 164, 184, 0.28);
        --glass-blush: rgba(255, 240, 243, 0.12);
        --glass-coral: rgba(255, 143, 163, 0.24);

        /* Borders - Dark Mode */
        --border-glass: rgba(255, 255, 255, 0.16);
        --border-glass-subtle: rgba(255, 255, 255, 0.08);
        --border-glass-pink: rgba(255, 77, 141, 0.32);
        --border-divider: rgba(255, 255, 255, 0.08);

        /* Shadows - Dark Mode */
        --shadow-glass: 0 8px 32px rgba(0, 0, 0, 0.32),
                        0 2px 8px rgba(0, 0, 0, 0.24);
        --shadow-glass-elevated: 0 16px 48px rgba(0, 0, 0, 0.40),
                                 0 4px 16px rgba(0, 0, 0, 0.32);
        --shadow-glass-floating: 0 24px 64px rgba(0, 0, 0, 0.48),
                                 0 8px 24px rgba(0, 0, 0, 0.40);
        --shadow-pink-glow: 0 8px 32px rgba(255, 77, 141, 0.36);
        --shadow-pink-glow-intense: 0 12px 40px rgba(255, 77, 141, 0.48);

        /* Backgrounds - Dark Mode with pink tints */
        --bg-base: #0a0608;      /* Very dark with subtle pink undertone */
        --bg-elevated: #1c1a1b;   /* Elevated dark with pink warmth */

        /* Dark mode gradients - deeper, moodier pinks */
        --bg-gradient-hero: linear-gradient(135deg,
            rgba(80, 30, 50, 0.95) 0%,
            rgba(100, 35, 60, 0.90) 35%,
            rgba(120, 40, 70, 0.85) 65%,
            rgba(90, 25, 55, 0.90) 100%);

        --bg-gradient-vibrant: linear-gradient(135deg,
            #5c1f3a 0%,
            #7a2850 40%,
            #8b3060 70%,
            #6b2545 100%);
    }
}

/* ====================
   REDUCED MOTION SUPPORT
   ==================== */

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

    html {
        scroll-behavior: auto;
    }
}

/* ====================
   BASIC SETUP
   ==================== */

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-system);
    font-weight: var(--font-weight-regular);
    line-height: 1.5;
    color: var(--text-primary);
    background-color: var(--bg-base);
    overflow-x: hidden;
    /* Safe area insets for iPhone notch */
    padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right);
}

/* Container keeps content from stretching too wide */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    width: 100%;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

/* ====================
   NAVIGATION BAR - Liquid Glass Header
   ==================== */

.navbar {
    position: sticky;
    top: 0;
    z-index: 100;

    /* Liquid Glass Material */
    background: var(--glass-thick);
    backdrop-filter: blur(var(--blur-thick)) saturate(180%);
    -webkit-backdrop-filter: blur(var(--blur-thick)) saturate(180%);

    /* Glass border */
    border-bottom: 1px solid var(--border-glass-subtle);

    /* Subtle shadow for depth */
    box-shadow: var(--shadow-glass);

    padding: var(--space-md) 0;

    /* Safe area support for iPhone notch */
    padding-top: max(var(--space-md), env(safe-area-inset-top));
    padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right);
}

/* Add pink tint to navbar */
.navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
        rgba(255, 77, 141, 0.06) 0%,
        rgba(255, 143, 163, 0.04) 100%);
    pointer-events: none;
    z-index: -1;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--sweet-pink);
    letter-spacing: -0.02em;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--space-xl);
}

.nav-menu a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: var(--font-weight-medium);
    font-size: 0.9375rem;
    letter-spacing: -0.01em;
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-round);
    transition: all var(--transition-fast);
    position: relative;
}

.nav-menu a:hover {
    background: var(--glass-pink);
    color: var(--sweet-pink);
}

.nav-menu a:focus-visible {
    outline: 2px solid var(--sweet-pink);
    outline-offset: 2px;
}

/* Language Toggle Button */
.lang-toggle-item {
    list-style: none;
}

.lang-toggle {
    background: var(--glass-pink-vibrant);
    border: 1px solid var(--border-glass-pink);
    color: var(--sweet-pink-dark);
    font-weight: var(--font-weight-semibold);
    font-size: 0.875rem;
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-round);
    cursor: pointer;
    transition: all var(--transition-fast);
    box-shadow: 0 2px 8px rgba(255, 77, 141, 0.15);
    backdrop-filter: blur(var(--blur-regular));
    -webkit-backdrop-filter: blur(var(--blur-regular));
    pointer-events: auto;
    user-select: none;
    -webkit-user-select: none;
    z-index: 10;
    position: relative;
}

.lang-toggle:hover {
    background: var(--glass-pink-strong);
    border-color: var(--sweet-pink);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 77, 141, 0.25);
}

.lang-toggle:active {
    transform: translateY(0);
    box-shadow: 0 1px 4px rgba(255, 77, 141, 0.2);
}

.lang-toggle:focus-visible {
    outline: 2px solid var(--sweet-pink);
    outline-offset: 2px;
}

/* Mobile optimizations for language toggle */
@media (max-width: 768px) {
    .lang-toggle {
        font-size: 0.8125rem;
        padding: var(--space-xs) var(--space-sm);
    }

    .nav-menu {
        gap: var(--space-sm);
    }
}

/* ====================
   HERO SECTION - Immersive Pink Glass Experience
   ==================== */

.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--space-3xl) var(--space-lg);
    overflow: hidden;
    width: 100%;

    /* Vibrant pink gradient background */
    background: var(--bg-gradient-vibrant);
}

/* Glass overlay for depth */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg,
        rgba(255, 255, 255, 0.12) 0%,
        rgba(255, 255, 255, 0) 50%,
        rgba(0, 0, 0, 0.08) 100%);
    pointer-events: none;
}

.hero-content {
    z-index: 2;
    position: relative;
    max-width: 100%;
    width: 100%;
    padding: 0 var(--space-md);
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: var(--font-weight-bold);
    color: var(--text-on-vibrant);
    letter-spacing: -0.03em;
    margin-bottom: var(--space-md);
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.2);
    animation: gentle-float 6s ease-in-out infinite;
}

.hero-tagline {
    font-size: clamp(1.25rem, 4vw, 2rem);
    font-weight: var(--font-weight-semibold);
    color: var(--text-on-vibrant);
    letter-spacing: -0.02em;
    margin-bottom: var(--space-sm);
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.15);
}

.hero-subtitle {
    font-size: clamp(1rem, 3vw, 1.25rem);
    font-weight: var(--font-weight-regular);
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: var(--space-xl);
}

/* Hero Buttons Container */
.hero-buttons {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
    margin-top: var(--space-xl);
}

/* CTA Button - Glass Pill */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-md) var(--space-xl);
    font-size: 1.0625rem;
    font-weight: var(--font-weight-semibold);
    text-decoration: none;
    border-radius: var(--radius-round);
    border: none;
    cursor: pointer;
    transition: all var(--transition-normal);

    /* Primary style - solid white glass */
    background: var(--glass-thick);
    backdrop-filter: blur(var(--blur-regular)) saturate(180%);
    -webkit-backdrop-filter: blur(var(--blur-regular)) saturate(180%);
    color: var(--sweet-pink);
    border: 1px solid var(--border-glass);
    box-shadow: var(--shadow-glass);
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-glass-elevated), var(--shadow-pink-glow);
    background: rgba(255, 228, 235, 0.95); /* Light blush pink */
    color: var(--pink-600); /* Vivid pink text for contrast */
}

.cta-button:active {
    transform: translateY(0);
}

.cta-button:focus-visible {
    outline: 2px solid var(--text-on-vibrant);
    outline-offset: 2px;
}

/* Secondary CTA - Outlined Glass */
.cta-secondary {
    background: var(--glass-thin);
    color: var(--text-on-vibrant);
    border: 1.5px solid rgba(255, 255, 255, 0.4);
}

.cta-secondary:hover {
    background: var(--glass-regular);
    border-color: rgba(255, 255, 255, 0.6);
}

/* Order Now Button - Vibrant Pink Gradient */
.order-now-btn {
    background: linear-gradient(135deg,
        var(--pink-500) 0%,
        var(--magenta-deep) 100%);
    color: var(--text-on-vibrant);
    border: none;
    padding: var(--space-md) var(--space-2xl);
    font-size: 1.125rem;
    font-weight: var(--font-weight-semibold);
    border-radius: var(--radius-round);
    cursor: pointer;
    box-shadow: var(--shadow-pink-glow);
    transition: all var(--transition-normal);
    animation: subtle-pulse 3s ease-in-out infinite;
}

.order-now-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-pink-glow-intense);
}

.order-now-btn:active {
    transform: translateY(0) scale(1);
}

/* Floating Sprinkles */
.sprinkles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    pointer-events: none;
}

.sprinkle {
    position: absolute;
    font-size: 2.5rem;
    opacity: 0.7;
    animation: float 8s infinite ease-in-out;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
}

.sprinkle:nth-child(1) { top: 10%; left: 8%; animation-delay: 0s; }
.sprinkle:nth-child(2) { top: 20%; right: 12%; animation-delay: 1.5s; }
.sprinkle:nth-child(3) { bottom: 15%; left: 15%; animation-delay: 3s; }
.sprinkle:nth-child(4) { bottom: 25%; right: 8%; animation-delay: 4.5s; }
.sprinkle:nth-child(5) { top: 50%; left: 50%; animation-delay: 6s; }

/* ====================
   SECTION TITLES
   ==================== */

.section-title {
    font-size: clamp(1.75rem, 5vw, 2.5rem);
    font-weight: var(--font-weight-bold);
    text-align: center;
    color: var(--sweet-pink);
    letter-spacing: -0.02em;
    margin-bottom: var(--space-md);
}

.section-subtitle {
    text-align: center;
    font-size: 1.125rem;
    font-weight: var(--font-weight-regular);
    color: var(--text-secondary);
    margin-bottom: var(--space-2xl);
}

/* ====================
   MENU SECTION - Glass Cards
   ==================== */

.menu {
    padding: var(--space-3xl) 0;
    background-color: var(--bg-base);
    position: relative;
}

/* Subtle pink gradient overlay */
.menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(180deg,
        rgba(255, 77, 141, 0.04) 0%,
        transparent 100%);
    pointer-events: none;
}

/* Menu category headers - Pink Glass Chips */
.menu-category {
    font-size: 1.5rem;
    font-weight: var(--font-weight-semibold);
    color: var(--sweet-pink);
    text-align: center;
    margin: var(--space-2xl) 0 var(--space-lg) 0;
    padding: var(--space-md) var(--space-lg);
    letter-spacing: -0.01em;

    /* Pink glass chip styling */
    display: inline-block;
    width: 100%;
    background: var(--glass-pink-light);
    backdrop-filter: blur(var(--blur-thin));
    -webkit-backdrop-filter: blur(var(--blur-thin));
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-glass-pink);
}

.menu-category:first-of-type {
    margin-top: var(--space-md);
}

/* Menu Grid */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
}

/* Menu Item Cards - Thick Glass Material */
.menu-item {
    position: relative;
    padding: var(--space-xl);
    border-radius: var(--radius-xl);
    text-align: center;

    /* Thick glass material */
    background: var(--glass-thick);
    backdrop-filter: blur(var(--blur-thick)) saturate(180%);
    -webkit-backdrop-filter: blur(var(--blur-thick)) saturate(180%);

    /* Glass border with highlight */
    border: 1px solid var(--border-glass);
    box-shadow: var(--shadow-glass),
                inset 0 1px 0 rgba(255, 255, 255, 0.5);

    transition: all var(--transition-normal);
    cursor: pointer;
}

/* Only make items with images clickable */
.menu-item:has(img.item-image) {
    cursor: pointer;
}

.menu-item:not(:has(img.item-image)) {
    cursor: default;
}

.menu-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-glass-elevated),
                var(--shadow-pink-glow),
                inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.menu-item:focus-visible {
    outline: 2px solid var(--sweet-pink);
    outline-offset: 2px;
}

.item-image {
    font-size: 4rem;
    margin-bottom: var(--space-md);
    display: block;
    transition: transform var(--transition-slow);
}

/* Styling for actual product images */
img.item-image {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-md);
    box-shadow: 0 4px 16px rgba(255, 77, 141, 0.15);
    transition: transform var(--transition-slow), box-shadow var(--transition-slow);
}

.menu-item:hover .item-image {
    transform: scale(1.1) rotate(5deg);
}

.menu-item:hover img.item-image {
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(255, 77, 141, 0.25);
}

.menu-item h3 {
    color: var(--sweet-pink);
    font-size: 1.25rem;
    font-weight: var(--font-weight-semibold);
    letter-spacing: -0.01em;
    margin-bottom: var(--space-sm);
}

.item-description {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.5;
    margin-bottom: var(--space-md);
}

.item-price {
    font-size: 1.375rem;
    font-weight: var(--font-weight-bold);
    color: var(--coral-pink);
    letter-spacing: -0.01em;
}

/* Order button wrapper - centers the button */
.order-menu-btn-wrapper {
    text-align: center;
    margin-bottom: var(--space-xl);
}

/* Order button in menu section */
.order-menu-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* ====================
   REVIEWS SECTION - Vibrant Pink Glass
   ==================== */

.reviews {
    padding: var(--space-3xl) 0;
    background: var(--bg-gradient-vibrant);
    position: relative;
}

/* Glass overlay for the section */
.reviews::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg,
        rgba(255, 255, 255, 0.08) 0%,
        rgba(255, 255, 255, 0) 100%);
    pointer-events: none;
}

.reviews .section-title {
    color: var(--text-on-vibrant);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.google-rating {
    text-align: center;
    margin-bottom: var(--space-2xl);
    position: relative;
    z-index: 1;
}

.rating-stars {
    font-size: 2.5rem;
    color: var(--sweet-gold);
    display: block;
    margin-bottom: var(--space-sm);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    letter-spacing: 4px;
}

.rating-text {
    font-size: 1.375rem;
    font-weight: var(--font-weight-semibold);
    color: var(--text-on-vibrant);
    margin-bottom: var(--space-md);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
}

.view-all-reviews {
    display: inline-flex;
    align-items: center;
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-round);
    text-decoration: none;
    font-weight: var(--font-weight-semibold);
    font-size: 0.9375rem;

    /* Glass pill styling */
    background: var(--glass-thick);
    backdrop-filter: blur(var(--blur-regular));
    -webkit-backdrop-filter: blur(var(--blur-regular));
    color: var(--sweet-pink);
    border: 1px solid var(--border-glass);
    box-shadow: var(--shadow-glass);
    transition: all var(--transition-normal);
}

.view-all-reviews:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glass-elevated);
}

/* Reviews Grid */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
    position: relative;
    z-index: 1;
}

/* Review Card - Thick Glass */
.review-card {
    padding: var(--space-xl);
    border-radius: var(--radius-xl);

    /* Thick glass material */
    background: var(--glass-thick);
    backdrop-filter: blur(var(--blur-thick)) saturate(180%);
    -webkit-backdrop-filter: blur(var(--blur-thick)) saturate(180%);
    border: 1px solid var(--border-glass);
    box-shadow: var(--shadow-glass),
                inset 0 1px 0 rgba(255, 255, 255, 0.5);

    transition: all var(--transition-normal);
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glass-elevated);
}

.review-stars {
    color: var(--sweet-gold);
    font-size: 1.25rem;
    margin-bottom: var(--space-md);
    letter-spacing: 2px;
}

.review-text {
    font-size: 1rem;
    color: var(--text-primary);
    line-height: 1.6;
    margin-bottom: var(--space-md);
    font-style: italic;
}

.review-author {
    font-size: 0.9375rem;
    font-weight: var(--font-weight-semibold);
    color: var(--sweet-pink);
    text-align: right;
}

/* ====================
   ABOUT SECTION - Rose to Magenta Gradient
   ==================== */

.about {
    padding: var(--space-3xl) 0;
    background: linear-gradient(135deg,
        var(--magenta-soft) 0%,
        var(--magenta-vibrant) 50%,
        var(--magenta-deep) 100%);
    color: var(--text-on-vibrant);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg,
        rgba(255, 255, 255, 0.08) 0%,
        rgba(0, 0, 0, 0.04) 100%);
    pointer-events: none;
}

.about .section-title {
    color: var(--text-on-vibrant);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.about-subtitle {
    font-size: 1.5rem;
    font-weight: var(--font-weight-semibold);
    margin-bottom: var(--space-lg);
    letter-spacing: -0.01em;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
}

.about-text p {
    font-size: 1.0625rem;
    margin-bottom: var(--space-lg);
    line-height: 1.7;
    opacity: 0.95;
}

.about-text strong {
    color: var(--pink-100);
    font-weight: var(--font-weight-semibold);
}

/* About Highlights - Thin Glass Cards */
.about-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-lg);
    margin: var(--space-2xl) 0;
}

.highlight-item {
    padding: var(--space-xl);
    border-radius: var(--radius-xl);

    /* Thin glass material */
    background: var(--glass-thin);
    backdrop-filter: blur(var(--blur-regular));
    -webkit-backdrop-filter: blur(var(--blur-regular));
    border: 1px solid rgba(255, 255, 255, 0.24);

    transition: all var(--transition-normal);
}

.highlight-item:hover {
    transform: translateY(-4px);
    background: var(--glass-regular);
    border-color: rgba(255, 255, 255, 0.32);
}

.highlight-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: var(--space-md);
}

.highlight-item h4 {
    font-size: 1.125rem;
    font-weight: var(--font-weight-semibold);
    margin-bottom: var(--space-sm);
    letter-spacing: -0.01em;
}

.highlight-item p {
    font-size: 0.9375rem;
    margin: 0;
    opacity: 0.9;
}

.about-special {
    font-size: 1.25rem;
    font-weight: var(--font-weight-semibold);
    margin-top: var(--space-xl);
    animation: subtle-pulse 3s ease-in-out infinite;
}

/* ====================
   LOCATION SECTION - Clean Glass Cards
   ==================== */

.location {
    padding: var(--space-3xl) 0;
    background-color: var(--bg-base);
    position: relative;
}

/* Subtle pink tint */
.location::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg,
        rgba(255, 143, 163, 0.06) 0%,
        transparent 50%);
    pointer-events: none;
}

.location-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.location-info-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: start;
}

/* Location Info Card - Thick Glass */
.location-info {
    padding: var(--space-xl);
    border-radius: var(--radius-xl);

    background: var(--glass-thick);
    backdrop-filter: blur(var(--blur-thick)) saturate(180%);
    -webkit-backdrop-filter: blur(var(--blur-thick)) saturate(180%);
    border: 1px solid var(--border-glass);
    box-shadow: var(--shadow-glass);
}

.location-info h3 {
    color: var(--sweet-pink);
    font-size: 1.0625rem;
    font-weight: var(--font-weight-semibold);
    margin-bottom: var(--space-sm);
    margin-top: var(--space-lg);
    letter-spacing: -0.01em;
}

.location-info h3:first-child {
    margin-top: 0;
}

.location-address {
    font-size: 1rem;
    color: var(--text-primary);
    margin-bottom: var(--space-md);
    line-height: 1.7;
}

.location-hours p,
.location-contact p {
    font-size: 1rem;
    color: var(--text-primary);
    line-height: 1.6;
}

/* Directions Button - Pink Gradient */
.directions-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-round);
    text-decoration: none;
    font-weight: var(--font-weight-semibold);
    font-size: 1rem;
    margin-top: var(--space-md);
    margin-bottom: var(--space-md);

    background: linear-gradient(135deg,
        var(--sweet-pink) 0%,
        var(--coral-pink) 100%);
    color: var(--text-on-vibrant);
    border: none;
    box-shadow: var(--shadow-pink-glow);
    transition: all var(--transition-normal);
}

.directions-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-pink-glow-intense);
}

.location-note {
    font-size: 0.875rem;
    color: var(--coral-pink);
    font-weight: var(--font-weight-medium);
    margin-top: var(--space-md);
    font-style: italic;
}

/* Google Maps Container - Glass Frame */
.location-map {
    border-radius: var(--radius-xl);
    overflow: hidden;
    height: 100%;
    min-height: 450px;
    display: flex;

    /* Glass frame effect */
    box-shadow: var(--shadow-glass);
    border: 1px solid var(--border-glass-subtle);
}

.location-map iframe {
    border-radius: var(--radius-xl);
    width: 100%;
    height: 100%;
    min-height: 450px;
    border: none;
}

/* ====================
   CONTACT SECTION - Coral to Pink Gradient
   ==================== */

.contact {
    padding: var(--space-3xl) 0;
    background: linear-gradient(135deg,
        var(--coral-pink) 0%,
        var(--sweet-pink) 50%,
        var(--magenta-vibrant) 100%);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg,
        rgba(255, 255, 255, 0.1) 0%,
        rgba(0, 0, 0, 0.05) 100%);
    pointer-events: none;
}

.contact .section-title {
    color: var(--text-on-vibrant);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.contact-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-lg);
}

/* Contact Cards - Thick Glass */
.contact-item {
    padding: var(--space-xl);
    border-radius: var(--radius-xl);
    text-align: center;

    background: var(--glass-thick);
    backdrop-filter: blur(var(--blur-thick)) saturate(180%);
    -webkit-backdrop-filter: blur(var(--blur-thick)) saturate(180%);
    border: 1px solid var(--border-glass);
    box-shadow: var(--shadow-glass);

    transition: all var(--transition-normal);
}

.contact-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glass-elevated);
}

.contact-item h3 {
    color: var(--sweet-pink);
    font-size: 1.25rem;
    font-weight: var(--font-weight-semibold);
    margin-bottom: var(--space-md);
    letter-spacing: -0.01em;
}

.contact-item p {
    color: var(--text-primary);
    font-size: 1rem;
    line-height: 1.5;
}

/* ====================
   FOOTER - Deep Pink Glass
   ==================== */

.footer {
    background: var(--sweet-pink);
    color: var(--text-on-vibrant);
    text-align: center;
    padding: var(--space-2xl) var(--space-lg);
    position: relative;
}

/* Glass overlay */
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg,
        rgba(255, 255, 255, 0.08) 0%,
        rgba(0, 0, 0, 0.08) 100%);
    pointer-events: none;
}

.footer-social {
    margin-bottom: var(--space-xl);
    position: relative;
    z-index: 1;
}

.footer-social h3 {
    font-size: 1.25rem;
    font-weight: var(--font-weight-semibold);
    margin-bottom: var(--space-md);
    letter-spacing: -0.01em;
}

.social-links {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
}

/* Social Link - Glass Pill */
.social-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-round);
    text-decoration: none;
    font-weight: var(--font-weight-semibold);
    font-size: 1rem;

    background: var(--glass-thin);
    backdrop-filter: blur(var(--blur-thin));
    -webkit-backdrop-filter: blur(var(--blur-thin));
    color: var(--text-on-vibrant);
    border: 1.5px solid rgba(255, 255, 255, 0.32);

    transition: all var(--transition-normal);
}

.social-link:hover {
    background: var(--glass-regular);
    border-color: rgba(255, 255, 255, 0.48);
    transform: translateY(-2px);
}

.footer p {
    margin-bottom: var(--space-sm);
    font-size: 0.9375rem;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

/* ====================
   ANIMATIONS - Refined Motion
   ==================== */

/* Gentle floating animation */
@keyframes gentle-float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-12px);
    }
}

/* Floating sprinkles */
@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-24px) rotate(180deg);
    }
}

/* Subtle pulse */
@keyframes subtle-pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.02);
        opacity: 0.95;
    }
}

/* Fade in animation */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Slide in from top */
@keyframes slideIn {
    from {
        transform: translateY(-32px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Scale reveal */
@keyframes scaleReveal {
    from {
        transform: scale(0.95);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Pointer bounce */
@keyframes pointerBounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(4px);
    }
}

/* Prize reveal */
@keyframes prizeReveal {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* ====================
   PRIZE WHEEL MODAL - Floating Pink Glass Panel
   ==================== */

.wheel-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    justify-content: center;
    align-items: center;

    /* Dark glass backdrop */
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(var(--blur-subtle));
    -webkit-backdrop-filter: blur(var(--blur-subtle));

    animation: fadeIn 400ms ease-out;
}

.wheel-modal.show {
    display: flex;
}

/* Wheel Container - Floating Glass Panel */
.wheel-container {
    position: relative;
    max-width: 540px;
    width: 90%;
    padding: var(--space-2xl) var(--space-xl) var(--space-xl);
    display: flex;
    flex-direction: column;
    align-items: center;

    /* Thick glass material with pink vibrancy */
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.88) 0%,
        rgba(255, 255, 255, 0.72) 100%);
    backdrop-filter: blur(var(--blur-thick)) saturate(200%);
    -webkit-backdrop-filter: blur(var(--blur-thick)) saturate(200%);

    border-radius: var(--radius-2xl);
    border: 1px solid var(--border-glass);
    box-shadow: var(--shadow-glass-floating),
                0 0 80px rgba(255, 77, 141, 0.2);

    animation: slideIn 500ms var(--transition-spring);
    text-align: center;
}

/* Dark mode glass for modal */
@media (prefers-color-scheme: dark) {
    .wheel-container {
        background: linear-gradient(135deg,
            rgba(44, 44, 46, 0.92) 0%,
            rgba(44, 44, 46, 0.84) 100%);
    }
}

/* Close Button - Pink Glass */
.close-wheel {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-round);
    z-index: 20;

    background: var(--glass-pink);
    backdrop-filter: blur(var(--blur-subtle));
    -webkit-backdrop-filter: blur(var(--blur-subtle));
    color: var(--sweet-pink);
    border: 1px solid var(--border-glass-pink);

    font-size: 0.875rem;
    font-weight: var(--font-weight-semibold);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.close-wheel:hover {
    background: var(--glass-pink-vibrant);
    transform: scale(1.02);
}

/* Wheel Header */
.wheel-header {
    margin-bottom: var(--space-lg);
    width: 100%;
}

.wheel-title {
    font-size: 2rem;
    font-weight: var(--font-weight-bold);
    color: var(--sweet-pink);
    letter-spacing: -0.02em;
    margin-bottom: var(--space-sm);
    animation: subtle-pulse 2s ease-in-out infinite;
}

.wheel-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: var(--font-weight-regular);
}

/* Wheel Wrapper */
.wheel-wrapper {
    position: relative;
    margin: var(--space-xl) auto;
    width: 400px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Wheel Pointer */
.wheel-pointer {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2.5rem;
    color: var(--sweet-pink);
    z-index: 10;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    animation: pointerBounce 1s infinite;
}

/* Canvas */
#wheelCanvas {
    border-radius: 50%;
    box-shadow: 0 8px 32px rgba(255, 77, 141, 0.3),
                inset 0 0 0 4px rgba(255, 255, 255, 0.5);
}

/* Spin Button - Pink Gradient */
.spin-button {
    margin-top: var(--space-lg);
    padding: var(--space-md) var(--space-2xl);
    border-radius: var(--radius-round);
    width: auto;
    max-width: 100%;

    background: linear-gradient(135deg,
        var(--sweet-pink) 0%,
        var(--magenta-deep) 100%);
    color: var(--text-on-vibrant);
    border: none;

    font-size: 1.25rem;
    font-weight: var(--font-weight-bold);
    letter-spacing: -0.01em;
    cursor: pointer;

    box-shadow: var(--shadow-pink-glow);
    transition: all var(--transition-normal);
}

.spin-button:hover:not(:disabled) {
    transform: translateY(-3px);
    box-shadow: var(--shadow-pink-glow-intense);
}

.spin-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.spin-button:active:not(:disabled) {
    transform: translateY(0);
}

/* Prize Display - Rose Glass Card */
.prize-display {
    display: none;
    margin-top: var(--space-xl);
    padding: var(--space-xl);
    width: 100%;
    box-sizing: border-box;

    background: var(--glass-rose);
    backdrop-filter: blur(var(--blur-regular));
    -webkit-backdrop-filter: blur(var(--blur-regular));
    border: 1px solid rgba(232, 164, 184, 0.48);
    border-radius: var(--radius-xl);

    animation: prizeReveal 500ms ease-out;
}

.prize-display.show {
    display: block;
}

.prize-display h3 {
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--sweet-pink);
    margin-bottom: var(--space-md);
}

#prizeText {
    font-size: 1.25rem;
    font-weight: var(--font-weight-semibold);
    color: var(--text-primary);
    margin-bottom: var(--space-md);
}

.prize-note {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-md);
}

/* Claim Button */
.claim-button {
    padding: var(--space-sm) var(--space-xl);
    border-radius: var(--radius-round);

    background: var(--glass-thick);
    backdrop-filter: blur(var(--blur-thin));
    -webkit-backdrop-filter: blur(var(--blur-thin));
    color: var(--sweet-pink);
    border: 1px solid var(--border-glass);

    font-size: 1rem;
    font-weight: var(--font-weight-semibold);
    cursor: pointer;

    box-shadow: var(--shadow-glass);
    transition: all var(--transition-normal);
}

.claim-button:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-glass-elevated);
}

/* ====================
   IMAGE LIGHTBOX MODAL - Full Screen Image Viewer
   ==================== */

.image-lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3000;
    justify-content: center;
    align-items: center;

    /* Dark glass backdrop */
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(var(--blur-regular));
    -webkit-backdrop-filter: blur(var(--blur-regular));

    animation: fadeIn 300ms ease-out;
}

.image-lightbox.show {
    display: flex;
}

/* Close Lightbox Button */
.close-lightbox {
    position: absolute;
    top: var(--space-lg);
    right: var(--space-lg);
    z-index: 10;

    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-round);

    background: var(--glass-pink-vibrant);
    backdrop-filter: blur(var(--blur-subtle));
    -webkit-backdrop-filter: blur(var(--blur-subtle));
    color: var(--text-on-vibrant);
    border: none;

    font-size: 0.9375rem;
    font-weight: var(--font-weight-semibold);
    cursor: pointer;

    box-shadow: var(--shadow-glass);
    transition: all var(--transition-fast);
}

.close-lightbox:hover {
    background: var(--sweet-pink);
    transform: scale(1.05);
}

/* Lightbox Content Container */
.lightbox-content {
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-lg);
    animation: scaleReveal 400ms ease-out;
}

/* Lightbox Image */
/* Lightbox Image Wrapper - Contains image and overlaid button */
.lightbox-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: var(--space-lg);
    width: 100%;
}

#lightboxImage {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-glass-floating);
    border: 2px solid var(--border-glass);
    display: block;
}

/* Lightbox Caption - Glass Card */
.lightbox-caption {
    background: var(--glass-thick);
    backdrop-filter: blur(var(--blur-thick)) saturate(180%);
    -webkit-backdrop-filter: blur(var(--blur-thick)) saturate(180%);
    padding: var(--space-lg) var(--space-xl);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-glass);
    box-shadow: var(--shadow-glass);
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.lightbox-caption h3 {
    color: var(--sweet-pink);
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--space-sm);
    letter-spacing: -0.02em;
}

.lightbox-description {
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: var(--font-weight-regular);
    line-height: 1.6;
    margin: var(--space-md) 0;
    opacity: 0.9;
}

.lightbox-price {
    color: var(--sweet-pink);
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    margin: var(--space-sm) 0 0 0;
}

/* Lightbox Order Button - Overlaid on image bottom */
.lightbox-order-btn {
    position: absolute;
    bottom: var(--space-lg);
    left: 0;
    right: 0;
    margin: 0 auto;
    width: fit-content;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-md) var(--space-2xl);

    background: linear-gradient(135deg,
        var(--pink-500) 0%,
        var(--magenta-deep) 100%);
    color: var(--text-on-vibrant);

    font-size: 1.125rem;
    font-weight: var(--font-weight-semibold);
    text-decoration: none;
    border-radius: var(--radius-round);
    border: 2px solid rgba(255, 255, 255, 0.3);

    box-shadow: var(--shadow-pink-glow-intense);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: all var(--transition-normal);
    animation: subtle-pulse 3s ease-in-out infinite;
    z-index: 10;
}

.lightbox-order-btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 16px 48px rgba(255, 77, 141, 0.5);
}

.lightbox-order-btn:active {
    transform: translateY(-2px) scale(1.02);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .close-lightbox {
        top: var(--space-sm);
        right: var(--space-sm);
        padding: var(--space-xs) var(--space-md);
        font-size: 0.875rem;
    }

    #lightboxImage {
        max-height: 60vh;
    }

    .lightbox-caption {
        padding: var(--space-md) var(--space-lg);
    }

    .lightbox-caption h3 {
        font-size: 1.25rem;
    }

    .lightbox-description {
        font-size: 0.9375rem;
        margin: var(--space-sm) 0;
    }

    .lightbox-price {
        font-size: 1.25rem;
    }

    .lightbox-order-btn {
        font-size: 0.9375rem;
        padding: var(--space-sm) var(--space-lg);
        bottom: var(--space-md);
    }

    .lightbox-order-btn:hover {
        transform: translateY(-3px) scale(1.03);
    }
}

/* ====================
   ORDER MODAL - Full-Screen Glass
   ==================== */

.order-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    justify-content: center;
    align-items: center;

    /* Darker glass backdrop */
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(var(--blur-regular));
    -webkit-backdrop-filter: blur(var(--blur-regular));

    animation: fadeIn 300ms ease-out;
}

.order-modal.show {
    display: flex;
}

/* Order Modal Content - Thick Glass Panel */
.order-modal-content {
    position: relative;
    width: 95%;
    height: 95%;
    max-width: 1200px;
    max-height: 900px;

    background: var(--bg-elevated);
    border-radius: var(--radius-xl);
    overflow: hidden;

    box-shadow: var(--shadow-glass-floating);
    animation: scaleReveal 400ms ease-out;
}

/* Close Order Modal Button */
.close-order-modal {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    z-index: 10;

    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-round);

    background: var(--glass-pink-vibrant);
    backdrop-filter: blur(var(--blur-subtle));
    -webkit-backdrop-filter: blur(var(--blur-subtle));
    color: var(--text-on-vibrant);
    border: none;

    font-size: 0.9375rem;
    font-weight: var(--font-weight-semibold);
    cursor: pointer;

    box-shadow: var(--shadow-glass);
    transition: all var(--transition-fast);
}

.close-order-modal:hover {
    background: var(--sweet-pink);
    transform: scale(1.02);
}

/* Order Content Wrapper */
.order-content-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-xl);
}

/* DoorDash Widget Container */
#doordash-widget-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Popup Message */
.order-popup-message {
    text-align: center;
    max-width: 480px;
    padding: var(--space-xl);
}

.popup-icon {
    font-size: 4rem;
    margin-bottom: var(--space-md);
    animation: gentle-float 3s ease-in-out infinite;
}

.order-popup-message h2 {
    color: var(--sweet-pink);
    font-size: 1.75rem;
    font-weight: var(--font-weight-bold);
    letter-spacing: -0.02em;
    margin-bottom: var(--space-md);
}

.order-popup-message p {
    color: var(--text-secondary);
    font-size: 1.0625rem;
    line-height: 1.5;
    margin-bottom: var(--space-lg);
}

.popup-subtext {
    font-size: 0.875rem;
    color: var(--text-tertiary);
    margin-top: var(--space-lg);
}

.manual-link {
    color: var(--sweet-pink);
    text-decoration: none;
    font-weight: var(--font-weight-semibold);
    transition: color var(--transition-fast);
}

.manual-link:hover {
    text-decoration: underline;
}

/* Loading Spinner */
.loading-spinner {
    width: 48px;
    height: 48px;
    margin: var(--space-lg) auto;
    border: 4px solid var(--border-divider);
    border-top-color: var(--sweet-pink);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

/* ====================
   RESPONSIVE DESIGN - Mobile First
   ==================== */

@media (max-width: 768px) {
    /* Body padding */
    body {
        padding-left: max(env(safe-area-inset-left), var(--space-sm));
        padding-right: max(env(safe-area-inset-right), var(--space-sm));
    }

    /* Typography scaling */
    .hero-title {
        font-size: 2.25rem;
    }

    .hero-tagline {
        font-size: 1.25rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    /* Navigation - Stack vertically */
    .nav-container {
        flex-direction: column;
        align-items: center;
        gap: var(--space-md);
        padding: 0 var(--space-md);
    }

    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: var(--space-sm);
        width: 100%;
    }

    .nav-menu a {
        font-size: 0.875rem;
        padding: var(--space-xs) var(--space-sm);
    }

    .logo {
        font-size: 1.375rem;
        text-align: center;
    }

    /* Wheel modal close button - smaller on mobile */
    .close-wheel {
        top: var(--space-xs);
        right: var(--space-xs);
        padding: var(--space-xs) var(--space-sm);
        font-size: 0.75rem;
        min-height: 36px;
        min-width: auto;
    }

    /* Menu grid - single column */
    .menu-grid {
        grid-template-columns: 1fr;
    }

    .menu-category {
        font-size: 1.25rem;
        margin: var(--space-xl) 0 var(--space-md) 0;
        padding: var(--space-sm) var(--space-md);
    }

    /* Smaller sprinkles */
    .sprinkle {
        font-size: 1.75rem;
    }

    /* Location - stack vertically */
    .location-info-wrapper {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    .location-map {
        min-height: 300px;
    }

    .location-map iframe {
        min-height: 300px;
    }

    /* Reviews grid */
    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .rating-stars {
        font-size: 2rem;
    }

    .rating-text {
        font-size: 1.125rem;
    }

    /* Wheel sizing */
    #wheelCanvas {
        width: 280px !important;
        height: 280px !important;
    }

    .wheel-wrapper {
        width: 280px;
        height: 280px;
    }

    .wheel-container {
        padding: var(--space-lg);
        max-width: 95%;
    }

    .wheel-title {
        font-size: 1.625rem;
    }

    /* Hero buttons - full width */
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: var(--space-sm);
        width: 100%;
        padding: 0 var(--space-md);
    }

    /* Hero buttons full width on mobile */
    .hero-buttons .cta-button,
    .hero-buttons .order-now-btn {
        width: 100%;
        max-width: 320px;
    }

    /* Order modal - full screen */
    .order-modal-content {
        width: 100%;
        height: 100%;
        max-width: 100%;
        max-height: 100%;
        border-radius: 0;
    }

    .close-order-modal {
        top: var(--space-sm);
        right: var(--space-sm);
        padding: var(--space-xs) var(--space-md);
        font-size: 0.875rem;
    }

    .order-now-btn {
        font-size: 1rem;
        padding: var(--space-sm) var(--space-lg);
    }

}

/* Extra small screens (iPhone SE, older devices) */
@media (max-width: 400px) {
    .hero-title {
        font-size: 1.875rem;
    }

    .hero-tagline {
        font-size: 1.125rem;
    }

    .hero-subtitle {
        font-size: 0.9375rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .menu-category {
        font-size: 1.125rem;
    }

    .logo {
        font-size: 1.25rem;
    }

    .nav-menu a {
        font-size: 0.8125rem;
    }

    .menu-item h3 {
        font-size: 1.125rem;
    }

    .item-image {
        font-size: 3.5rem;
    }

    img.item-image {
        height: 200px;
    }

    #wheelCanvas {
        width: 250px !important;
        height: 250px !important;
    }

    .wheel-wrapper {
        width: 250px;
        height: 250px;
    }

    .wheel-title {
        font-size: 1.375rem;
    }

    .container {
        padding: 0 var(--space-md);
    }
}

/* ====================
   ACCESSIBILITY ENHANCEMENTS
   ==================== */

/* Focus visible states for keyboard navigation */
*:focus-visible {
    outline: 2px solid var(--sweet-pink);
    outline-offset: 2px;
}

/* Ensure touch targets are at least 44x44px */
.nav-menu a,
.cta-button,
.order-now-btn,
.social-link,
.directions-btn,
.spin-button,
.claim-button,
.close-wheel,
.close-order-modal,
.view-all-reviews {
    min-height: 44px;
    min-width: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --glass-thick: rgba(255, 255, 255, 0.95);
        --glass-regular: rgba(255, 255, 255, 0.85);
        --border-glass: rgba(0, 0, 0, 0.3);
    }

    .menu-item,
    .review-card,
    .contact-item,
    .location-info,
    .highlight-item {
        border-width: 2px;
    }
}

/* Screen reader only content */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ====================
   PROGRESSIVE ENHANCEMENT
   Fallbacks for browsers without backdrop-filter
   ==================== */

@supports not (backdrop-filter: blur(1px)) {
    .navbar {
        background: rgba(255, 247, 249, 0.98);
    }

    .menu-item,
    .review-card,
    .contact-item,
    .location-info {
        background: rgba(255, 255, 255, 0.98);
    }

    .wheel-container {
        background: rgba(255, 255, 255, 0.98);
    }

    .order-modal-content {
        background: white;
    }

    .cta-button,
    .cta-secondary {
        background: rgba(255, 255, 255, 0.95);
    }

    .highlight-item {
        background: rgba(255, 255, 255, 0.3);
    }

    .social-link {
        background: rgba(255, 255, 255, 0.25);
    }

    .wheel-modal,
    .order-modal {
        background: rgba(0, 0, 0, 0.85);
    }
}

/* ====================
   PRINT STYLES
   ==================== */

@media print {
    .navbar,
    .wheel-modal,
    .order-modal,
    .sprinkles,
    .hero-buttons,
    .order-menu-btn,
    .social-links,
    .directions-btn {
        display: none !important;
    }

    body {
        background: white;
        color: black;
    }

    .hero {
        background: none;
        min-height: auto;
        padding: 2rem;
    }

    .hero-title,
    .hero-tagline,
    .hero-subtitle {
        color: black;
        text-shadow: none;
    }

    .menu-item,
    .review-card,
    .contact-item,
    .location-info {
        background: white;
        box-shadow: none;
        border: 1px solid #ddd;
        page-break-inside: avoid;
    }

    .section-title {
        color: black;
    }
}
