/* Font fallbacks for faster initial render */
:root {
    --primary: #2DCCD3;
    --primary-dark: #0891a1; /* ADA compliant on light backgrounds (~5.5:1 contrast) */
    --accent: #5DD9DE;
    --dark: #000000;
    --border: rgba(14, 165, 233, 0.15);
}

/* Critical font-display for fast text rendering */
.heading-font { font-family: 'Oswald', Georgia, serif; }
body { font-family: 'Source Sans Pro', -apple-system, BlinkMacSystemFont, sans-serif; }

/* Content visibility for rendering optimization */
.section { content-visibility: auto; contain-intrinsic-size: auto 500px; }

/* Location Carousel Animation - defined early for availability */

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

html { overflow-x: hidden; }

body {
    font-family: 'Source Sans Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #000000;
    color: #ffffff;
    line-height: 1.6;
}

.heading-font {
    font-family: 'Oswald', Georgia, 'Times New Roman', serif;
}

/* Visually hidden but accessible to screen readers and crawlers */
.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;
}

.heading-font { font-family: 'Oswald', serif; }

.gradient-text {
    background: linear-gradient(135deg, #2DCCD3 0%, #5DD9DE 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Readable H1 - light blue with white text shadow outline effect */
.hero-title-main {
    color: #5DD9DE;
    text-shadow: 
        -1px -1px 0 #fff,
        1px -1px 0 #fff,
        -1px 1px 0 #fff,
        1px 1px 0 #fff,
        0 0 20px rgba(56, 189, 248, 0.5),
        0 0 40px rgba(56, 189, 248, 0.3);
}

/* Cleaner look on mobile - just light drop shadow */
@media (max-width: 640px) {
    .hero-title-main {
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    }
    .hero-title-sub {
        font-size: 1.1em !important;
        white-space: nowrap !important;
    }
}

.hero-title-sub {
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0,0,0,0.6), 0 4px 16px rgba(0,0,0,0.4);
}

.glass-card {
    background: rgba(18, 33, 54, 0.95);
    border: 1px solid #2DCCD3;
    border-radius: 20px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.hover-lift {
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease;
}
.hover-lift:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(14, 165, 233, 0.15);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Large screen container widths - WIDER for ultrawide monitors */
@media (min-width: 1440px) {
    .container { max-width: 1500px; }
}
@media (min-width: 1600px) {
    .container { max-width: 1600px; }
}
@media (min-width: 1920px) {
    .container { max-width: 1800px; padding: 0 3rem; }
}
@media (min-width: 2560px) {
    .container { max-width: 2200px; padding: 0 4rem; }
}

.btn-primary {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #2DCCD3, #5DD9DE);
    color: #0c1929;
    font-weight: 600;
    border-radius: 9999px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-size: 0.875rem;
    transition: all 0.3s;
}
.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(14, 165, 233, 0.3);
}

.btn-secondary {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: #334155;
    color: #ffffff !important;
    font-weight: 600;
    border-radius: 9999px;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.2);
    cursor: pointer;
    font-size: 0.875rem;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: #475569;
    color: #ffffff !important;
}

.section-light .btn-secondary {
    background: #334155;
    color: #ffffff !important;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: linear-gradient(135deg, #2DCCD3, #5DD9DE);
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.nav-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
@media (min-width: 1920px) {
    .nav-inner { max-width: 1600px; padding: 1rem 3rem; }
}
@media (min-width: 2560px) {
    .nav-inner { max-width: 1920px; padding: 1rem 4rem; }
}
.nav-logo img { height: 56px; width: auto; }
.desktop-nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}
.desktop-nav a, .desktop-nav button {
    color: #0c1929;
    text-decoration: none;
    font-family: 'Source Sans Pro', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1rem;
    font-weight: 700;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    letter-spacing: 0.01em;
}
.desktop-nav a:hover { color: #0c1929; opacity: 0.8; }

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
}
.hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background: #000000;
    border-radius: 3px;
    transition: all 0.3s;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

.mobile-menu {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100vh;
    height: 100dvh;
    background: #000000;
    padding: 100px 2rem 2rem;
    transition: right 0.3s;
    z-index: 999;
    box-shadow: -5px 0 30px rgba(0,0,0,0.5);
}
.mobile-menu.active { right: 0; }
.mobile-menu a {
    display: block;
    color: #fff !important;
    text-decoration: none;
    font-size: 1.125rem;
    font-weight: 700;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
}
.mobile-menu a:hover {
    color: #5DD9DE !important;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 998;
}
.overlay.active { opacity: 1; visibility: visible; }

@media (max-width: 1023px) {
    .desktop-nav { display: none; }
    .hamburger { display: flex; }
}
@media (min-width: 1024px) {
    .mobile-menu, .overlay { display: none; }
}

/* Hero with Sprinkles */
.hero {
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 6rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: #000000;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    
                      
    pointer-events: none;
}

/* Sprinkles */
.sprinkles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}
.sprinkles::before, .sprinkles::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    pointer-events: none;
}
.sprinkles::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='600' height='600' viewBox='0 0 600 600'%3E%3Cdefs%3E%3Cpath id='leaf' d='M47.7 29.2s-6.3-.4-12.5 2.2c1.2-1.4 2.3-2.9 3.3-4.6 5.1-8.4 5.6-17.4 5.6-17.4s-7.9 4.5-13 12.9c-.8 1.2-1.4 2.5-2 3.7.3-2.1.6-4.3.6-6.6 0-10.7-4.8-19.4-4.8-19.4s-4.8 8.7-4.8 19.4c0 2.3.2 4.5.6 6.6-.6-1.2-1.2-2.5-2-3.7-5.1-8.4-13-12.9-13-12.9s.5 9.1 5.6 17.4c1 1.7 2.2 3.2 3.3 4.6-6.2-2.6-12.5-2.2-12.5-2.2s3.8 4.7 10 7.4c2.4 1 4.8 1.6 6.8 1.9-1 .1-2 .2-3.1.5-4.5 1.1-7.7 3.9-7.7 3.9s4.2 1 8.8-.1c2.9-.7 5.3-2.1 6.6-3l-1.1 8.7c0 .4.1.8.3 1.1.3.3.6.5 1 .5h2.1c.4 0 .7-.2 1-.5.3-.3.4-.7.3-1.1l-1.1-8.7c1.3.9 3.6 2.3 6.6 3 4.5 1.1 8.8.1 8.8.1s-3.2-2.8-7.7-3.9c-1.1-.3-2.1-.4-3.1-.5 2.1-.3 4.4-.9 6.8-1.9 6.2-2.7 10-7.4 10-7.4z'/%3E%3C/defs%3E%3Cg%3E%3Cuse href='%23leaf' fill='%230EA5E9' fill-opacity='0.35' transform='translate(30,30) rotate(15) scale(0.5)'/%3E%3Cuse href='%23leaf' fill='%23ff6b9d' fill-opacity='0.35' transform='translate(150,80) rotate(-25) scale(0.45)'/%3E%3Cuse href='%23leaf' fill='%23fbbf24' fill-opacity='0.35' transform='translate(280,40) rotate(40) scale(0.55)'/%3E%3Cuse href='%23leaf' fill='%23a78bfa' fill-opacity='0.35' transform='translate(420,90) rotate(-10) scale(0.5)'/%3E%3Cuse href='%23leaf' fill='%2334d399' fill-opacity='0.35' transform='translate(540,50) rotate(30) scale(0.45)'/%3E%3Cuse href='%23leaf' fill='%23f472b6' fill-opacity='0.35' transform='translate(70,170) rotate(-35) scale(0.5)'/%3E%3Cuse href='%23leaf' fill='%2360a5fa' fill-opacity='0.35' transform='translate(200,150) rotate(55) scale(0.55)'/%3E%3Cuse href='%23leaf' fill='%230EA5E9' fill-opacity='0.35' transform='translate(350,180) rotate(-45) scale(0.45)'/%3E%3Cuse href='%23leaf' fill='%23fcd34d' fill-opacity='0.35' transform='translate(480,160) rotate(20) scale(0.5)'/%3E%3C/g%3E%3C/svg%3E");
    background-size: 600px 600px;
}
.sprinkles::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='550' height='550' viewBox='0 0 550 550'%3E%3Cdefs%3E%3Cpath id='leaf2' d='M47.7 29.2s-6.3-.4-12.5 2.2c1.2-1.4 2.3-2.9 3.3-4.6 5.1-8.4 5.6-17.4 5.6-17.4s-7.9 4.5-13 12.9c-.8 1.2-1.4 2.5-2 3.7.3-2.1.6-4.3.6-6.6 0-10.7-4.8-19.4-4.8-19.4s-4.8 8.7-4.8 19.4c0 2.3.2 4.5.6 6.6-.6-1.2-1.2-2.5-2-3.7-5.1-8.4-13-12.9-13-12.9s.5 9.1 5.6 17.4c1 1.7 2.2 3.2 3.3 4.6-6.2-2.6-12.5-2.2-12.5-2.2s3.8 4.7 10 7.4c2.4 1 4.8 1.6 6.8 1.9-1 .1-2 .2-3.1.5-4.5 1.1-7.7 3.9-7.7 3.9s4.2 1 8.8-.1c2.9-.7 5.3-2.1 6.6-3l-1.1 8.7c0 .4.1.8.3 1.1.3.3.6.5 1 .5h2.1c.4 0 .7-.2 1-.5.3-.3.4-.7.3-1.1l-1.1-8.7c1.3.9 3.6 2.3 6.6 3 4.5 1.1 8.8.1 8.8.1s-3.2-2.8-7.7-3.9c-1.1-.3-2.1-.4-3.1-.5 2.1-.3 4.4-.9 6.8-1.9 6.2-2.7 10-7.4 10-7.4z'/%3E%3C/defs%3E%3Cg%3E%3Cuse href='%23leaf2' fill='%230EA5E9' fill-opacity='0.25' transform='translate(80,60) rotate(-20) scale(0.4)'/%3E%3Cuse href='%23leaf2' fill='%23fcd34d' fill-opacity='0.25' transform='translate(220,90) rotate(35) scale(0.45)'/%3E%3C/g%3E%3C/svg%3E");
    background-size: 550px 550px;
}

.hero-title {
    font-size: clamp(2rem, 6vw, 4.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

/* Logo animation - works on both desktop and mobile */
.float-logo {
    will-change: transform, filter;
    filter: drop-shadow(0 0 30px rgba(45, 204, 211, 0.8)) drop-shadow(0 0 60px rgba(45, 204, 211, 0.5)) drop-shadow(0 0 100px rgba(45, 204, 211, 0.3));
}


.fade-in {
    opacity: 0;
}

/* ==========================================================================
   OPTIMIZED ANIMATIONS
   - Uses transform/opacity only (GPU accelerated)
   - Respects prefers-reduced-motion
   - No infinite animations on multiple elements
   ========================================================================== */

/* Fade in animation - one-time, not infinite */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Bounce arrow - simple, single element */
@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

/* Subtle logo glow pulse - GPU friendly, no position change */
@keyframes glowPulse {
    0%, 100% { filter: drop-shadow(0 0 30px rgba(45, 204, 211, 0.8)) drop-shadow(0 0 60px rgba(45, 204, 211, 0.5)); }
    50% { filter: drop-shadow(0 0 40px rgba(45, 204, 211, 1)) drop-shadow(0 0 80px rgba(45, 204, 211, 0.7)); }
}

/* Apply animations */
.fade-in.visible {
    animation: fadeIn 0.6s ease-out forwards;
}
.fade-in.delay-1.visible { animation-delay: 0.1s; }
.fade-in.delay-2.visible { animation-delay: 0.2s; }
.fade-in.delay-3.visible { animation-delay: 0.3s; }
.fade-in.delay-4.visible { animation-delay: 0.4s; }
.fade-in.delay-5.visible { animation-delay: 0.5s; }

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

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

/* Disable animations for users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
    .fade-in { opacity: 1; }
    .fade-in.visible { animation: none; opacity: 1; }
    .bounce { animation: none; }
    .float-logo { animation: none; }
}

/* Stats */
.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    max-width: 900px;
    margin: 3rem auto 0;
}
.stat { text-align: center; padding: 1.5rem; }
.stat-num { font-size: 2rem; font-weight: 700; }
.stat-glow {
    background: rgba(20, 20, 20, 0.95);
    border: 1px solid #2DCCD3;
    box-shadow: none;
    transition: border-color 0.3s ease;
}
.stat-glow:hover {
    border-color: #5DD9DE;
    box-shadow: none;
}

/* Grids */
.category-grid-wrapper {
    width: 100%;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.category-grid-wrapper::-webkit-scrollbar {
    display: none;
}
.grid-5 { 
    display: flex; 
    gap: 1.5rem;
    width: fit-content;
    margin: 0 auto;
    padding: 0 1rem;
}
.grid-5 .category-card { flex: 0 0 200px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

/* Category cards on mobile - horizontal scroll with small icons */
@media (max-width: 768px) {
    .grid-5 {
        gap: 0.75rem;
        padding: 0 1rem 0.5rem 1rem;
        margin: 0;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }
    .category-card,
    .grid-5 .category-card {
        flex: 0 0 100px;
        scroll-snap-align: start;
        aspect-ratio: 1 / 1;
        border-radius: 12px;
    }
    .category-card.has-image {
        aspect-ratio: 1 / 1;
    }
    
    /* Brands horizontal scroll on mobile */
    .brands-grid {
        display: flex !important;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 1rem;
        padding-bottom: 1rem;
    }
    .brand-card {
        flex: 0 0 280px;
        scroll-snap-align: start;
    }
    .brands-grid::-webkit-scrollbar {
        display: none;
    }
}

/* Homepage Category Cards with Images */
/* Category Cards - matching location page style */
.category-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0;
    aspect-ratio: 1 / 1;
    width: 100%;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #2DCCD3;
    text-decoration: none;
    color: white;
    overflow: hidden;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}
.category-card:hover {
    box-shadow: 0 0 20px rgba(45, 204, 211, 0.4);
    border-color: #2DCCD3;
}
.category-card.has-image {
    aspect-ratio: 1 / 1;
}
.category-bg {
    position: absolute;
    inset: 0;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    transition: opacity 0.3s ease;
    border-radius: inherit;
}
.category-card:hover .category-bg {
    opacity: 0.85;
}

/* ========================================
   BRAND CARDS - 1:1 Ratio with Teal Border
======================================== */
.brands-grid-wrapper {
    width: 100%;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.brands-grid-wrapper::-webkit-scrollbar {
    display: none;
}
.brands-grid-new {
    display: flex;
    gap: 1.5rem;
    padding: 0 1rem 0.5rem 1rem;
    width: fit-content;
    margin: 0 auto;
}
@media (max-width: 768px) {
    .brands-grid-new {
        margin: 0;
        gap: 0.75rem;
    }
    .brand-card-new {
        flex: 0 0 120px;
    }
}
.brand-card-new {
    flex: 0 0 200px;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: #ffffff;
    border: 1px solid #2DCCD3;
    border-radius: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}
.brand-card-new:hover {
    box-shadow: 0 0 20px rgba(45, 204, 211, 0.4);
    border-color: #25b5bc;
}
.brand-card-new img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.brand-card-new .brand-placeholder {
    font-size: 0.875rem;
    font-weight: 600;
    color: #0c1929;
    text-align: center;
}
@media (max-width: 640px) {
    .brand-card-new {
        flex: 0 0 100px;
    }
}

/* ========================================
   FEATURED BRAND SPOTLIGHT
======================================== */
/* ========================================
   FEATURED BRAND SPOTLIGHT (Centered Layout)
======================================== */
.brand-spotlight {
    position: relative;
    overflow: hidden;
    padding: 1.5rem 0;
}

.brand-spotlight-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.25;
}

.brand-spotlight-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(12, 25, 41, 0.92) 0%, rgba(30, 58, 95, 0.85) 50%, rgba(12, 25, 41, 0.8) 100%);
}

.brand-spotlight-card {
    position: relative;
    z-index: 2;
    background: linear-gradient(160deg, #1a2f4a 0%, #0f1c2e 100%);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.brand-spotlight-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.2;
}

.brand-spotlight-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(15, 28, 46, 0.7) 0%, rgba(15, 28, 46, 0.95) 100%);
}

.brand-spotlight-content {
    position: relative;
    z-index: 1;
    padding: 1.25rem;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 1rem;
    align-items: start;
}

.brand-spotlight-header {
    grid-column: 1;
    grid-row: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.brand-spotlight-logo {
    max-height: 50px;
    max-width: 140px;
    width: auto;
    margin-bottom: 0.5rem;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}

.brand-spotlight-badge {
    display: inline-block;
    background: linear-gradient(135deg, #2DCCD3, #5DD9DE);
    color: white;
    padding: 0.3rem 0.75rem;
    border-radius: 25px;
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
    box-shadow: 0 4px 15px rgba(45, 204, 211, 0.3);
}

.brand-spotlight-name {
    font-size: 1.25rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.25rem;
    font-family: 'Oswald', serif;
}

.brand-spotlight-tagline {
    font-size: 0.85rem;
    color: #ffffff !important;
    font-style: italic;
    font-weight: 500;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
    opacity: 0.95;
}

.brand-spotlight-desc {
    grid-column: 1 / -1;
    grid-row: 2;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.85) !important;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.brand-spotlight-products {
    grid-column: 2;
    grid-row: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    margin-bottom: 0;
}

.brand-spotlight-product {
    background: rgba(30, 30, 30, 0.9);
    border-radius: 10px;
    padding: 0.4rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.brand-spotlight-product:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
    border-color: rgba(45, 204, 211, 0.4);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.brand-spotlight-product-image {
    width: 100%;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    overflow: hidden;
}

.brand-spotlight-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
}

.brand-spotlight-product-placeholder {
    width: 100%;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    opacity: 0.5;
}

.brand-spotlight-product-info {
    display: none;
}

.brand-spotlight-product-name {
    font-size: 0.7rem;
    font-weight: 600;
    color: white;
    line-height: 1.2;
}

.brand-spotlight-product-type {
    font-size: 0.6rem;
    color: #2DCCD3;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.brand-spotlight-cta {
    grid-column: 1 / -1;
    justify-self: center;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #2DCCD3, #26b8be);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(45, 204, 211, 0.35);
    margin-top: 0.75rem;
}

.brand-spotlight-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(45, 204, 211, 0.5);
}

.brand-spotlight-cta svg {
    transition: transform 0.3s ease;
    width: 16px;
    height: 16px;
}

.brand-spotlight-cta:hover svg {
    transform: translateX(4px);
}

/* Desktop styles for brand spotlight */
@media (min-width: 768px) {
    .brand-spotlight {
        padding: 4rem 0;
    }
    .brand-spotlight-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 3rem;
    }
    .brand-spotlight-header {
        align-items: center;
        text-align: center;
        margin-bottom: 1.25rem;
    }
    .brand-spotlight-logo {
        max-height: 100px;
        max-width: 280px;
        margin-bottom: 1rem;
    }
    .brand-spotlight-badge {
        font-size: 0.8rem;
        padding: 0.5rem 1.25rem;
        margin-bottom: 1rem;
    }
    .brand-spotlight-name {
        font-size: 2.5rem;
    }
    .brand-spotlight-tagline {
        font-size: 1.25rem;
    }
    .brand-spotlight-desc {
        font-size: 1.1rem;
        max-width: 650px;
        margin-bottom: 1.75rem;
        display: block;
        -webkit-line-clamp: unset;
    }
    .brand-spotlight-products {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.25rem;
        max-width: 800px;
        margin-bottom: 1.75rem;
    }
    .brand-spotlight-product {
        padding: 1rem;
        border-radius: 16px;
    }
    .brand-spotlight-product-image {
        margin-bottom: 0.625rem;
        border-radius: 12px;
    }
    .brand-spotlight-product-info {
        display: flex;
        flex-direction: column;
        gap: 0.2rem;
    }
    .brand-spotlight-product-name {
        font-size: 0.9rem;
    }
    .brand-spotlight-cta {
        padding: 1rem 2.5rem;
        font-size: 1rem;
        margin-top: 0;
    }
    .brand-spotlight-cta svg {
        width: 20px;
        height: 20px;
    }
}

/* ========================================
   LOCATIONS CAROUSEL - Smooth Train Effect
======================================== */
.locations-carousel-wrapper {
    position: relative;
    padding: 1rem 0;
    overflow: hidden;
    width: 100%;
}

.locations-carousel {
    display: flex;
    gap: 1.5rem;
    padding: 0.5rem 2rem 1rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.locations-carousel::-webkit-scrollbar {
    display: none;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #2DCCD3;
    border: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.carousel-arrow svg {
    stroke: #000000;
}
.carousel-arrow:hover {
    background: #25b5bc;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(45, 204, 211, 0.4);
}
.carousel-arrow-left { left: 20px; }
.carousel-arrow-right { right: 20px; }

@media (max-width: 768px) {
    .carousel-arrow { 
        display: none;
    }
}

.loc-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: white;
    border: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.loc-nav:hover {
    background: linear-gradient(135deg, #2DCCD3, #5DD9DE);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.loc-nav svg {
    width: 24px;
    height: 24px;
    color: #0c1929;
    transition: color 0.3s ease;
}

.loc-nav:hover svg {
    color: white;
}

.loc-nav-prev { left: 20px; }
.loc-nav-next { right: 20px; }

@media (max-width: 768px) {
    .loc-nav { display: none; }
}

.loc-card {
    flex: 0 0 300px;
    padding: 0;
    text-align: center;
    text-decoration: none;
    color: inherit;
    border-radius: 20px;
    overflow: hidden;
    background: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.loc-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.loc-card-image {
    width: 100%;
    height: 160px;
    overflow: hidden;
    position: relative;
}

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

.loc-card:hover .loc-card-image img {
    transform: scale(1.1);
}

.loc-card-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2DCCD3, #5DD9DE);
    display: flex;
    align-items: center;
    justify-content: center;
}

.loc-card-image-placeholder svg {
    width: 48px;
    height: 48px;
    color: white;
    opacity: 0.8;
}

.loc-card-content {
    padding: 1.25rem;
}

.loc-card h3 {
    font-weight: 700;
    font-size: 1.15rem;
    margin-bottom: 0.35rem;
    color: #0c1929;
}

.loc-card-address {
    font-size: 0.85rem;
    color: #64748b;
    margin-bottom: 0.75rem;
}

.loc-card-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.7rem;
    padding: 0.4rem 0.75rem;
    border-radius: 9999px;
    background: rgba(14, 165, 233, 0.1);
    color: #0284C7;
    font-weight: 600;
    margin-bottom: 1rem;
}

.loc-card-btn {
    display: block;
    width: 100%;
    padding: 0.75rem;
    background: #2DCCD3;
    color: #000000;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
}

.loc-card:hover .loc-card-btn {
    background: #25b5bc;
}

/* Gradient fade edges - optional */
.locations-carousel-wrapper::before,
.locations-carousel-wrapper::after {
    display: none;
}

/* Legacy scroll-row for other uses */
.scroll-row {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    padding-bottom: 1rem;
    scroll-snap-type: x mandatory;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.scroll-row::-webkit-scrollbar { display: none; }

/* Modal */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #000000;
    padding: 1rem;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    z-index: 100;
    align-items: flex-start;
    justify-content: center;
    padding-top: 2rem;
}
.modal-overlay.active { display: flex; }
.modal {
    max-width: 1200px;
    width: 100%;
    padding: 2.5rem;
    max-height: 95vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    margin: auto;
    background: #000000;
    border: none;
}
@media (min-width: 1920px) {
    .modal { max-width: 1400px; padding: 3rem; }
}
@media (min-width: 2560px) {
    .modal { max-width: 1600px; }
}
.modal-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}
@media (min-width: 1440px) {
    .modal-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (min-width: 1920px) {
    .modal-grid { grid-template-columns: repeat(5, 1fr); gap: 1.5rem; }
}
.modal-card {
    padding: 0;
    text-decoration: none;
    color: inherit;
    border: 2px solid #2DCCD3;
    background: rgba(20, 20, 20, 0.95);
    transition: all 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.modal-card:hover {
    border-color: #5DD9DE;
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(45, 204, 211, 0.3);
}
.modal-card-image {
    width: 100%;
    height: 160px;
    object-fit: cover;
    display: block;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}
.modal-card-placeholder {
    width: 100%;
    height: 160px;
    background: linear-gradient(135deg, #2DCCD3, #5DD9DE);
    display: flex;
    align-items: center;
    justify-content: center;
}
.modal-card-placeholder svg {
    width: 48px;
    height: 48px;
    opacity: 0.5;
}
.modal-card-content {
    padding: 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.modal-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #5DD9DE;
    margin-bottom: 0.35rem;
}
.modal-card p {
    font-size: 0.875rem;
    color: #ffffff;
    margin-bottom: 0.75rem;
}
.modal-card .view-link {
    color: #2DCCD3;
    font-weight: 600;
    font-size: 0.85rem;
    margin-top: auto;
}
.modal-close-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255,255,255,0.1);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}
.modal-close-btn:hover { background: rgba(255,255,255,0.2); }
.modal-close-btn svg { stroke: white; }

/* Sections - Alternating backgrounds */
.section { padding: 4rem 1.5rem; }
.section-dark { background: #000000; }
.section-light { background: linear-gradient(180deg, #f8fafc 0%, #e2e8f0 100%); color: #0c1929; }
.section-light .glass-card { background: rgba(255, 255, 255, 0.9); border-color: rgba(3, 105, 161, 0.2); }
.section-light p { color: #1e293b; }
/* ADA compliant colors on light backgrounds */
.section-light a:not(.btn-primary):not(.btn-secondary) { color: var(--primary-dark); }
.section-light .gradient-text { background: linear-gradient(135deg, #0c1929 0%, #0c1929 100%); -webkit-background-clip: text; background-clip: text; }
.section-light .section-label { color: var(--primary-dark); }

.section-header { text-align: center; margin-bottom: 3rem; }
.section-title { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; margin-bottom: 1rem; }

/* Shop All Button */
.shop-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: #2DCCD3;
    color: #000000 !important;
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    border-radius: 9999px;
    transition: all 0.3s ease;
    white-space: nowrap;
}
.shop-all-btn:hover {
    background: #25b5bc;
    box-shadow: 0 4px 15px rgba(45, 204, 211, 0.4);
}
.shop-all-btn svg {
    transition: transform 0.3s ease;
    stroke: #000000 !important;
}
.shop-all-btn:hover svg {
    transform: translateX(4px);
}
@media (max-width: 768px) {
    .section-header .shop-all-btn {
        position: relative !important;
        right: auto !important;
        top: auto !important;
        margin-top: 1rem;
    }
}

/* FAQ */
.faq.glass-card {
    background: rgba(20, 20, 20, 0.95);
    border: 1px solid #2DCCD3;
}
.faq.glass-card:hover {
    border-color: #5DD9DE;
}
.faq summary {
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    cursor: pointer;
    padding: 1.5rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq[open] .chevron { transform: rotate(180deg); }
.chevron { transition: transform 0.3s; }
.faq p { padding: 0 1.5rem 1.5rem; color: #ffffff; line-height: 1.6; }

/* Footer */
.footer {
    background: #000000;
    padding: 4rem 1.5rem 2rem;
    border-top: 1px solid #2DCCD3;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}
@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}
.footer-brand p {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.9);
    line-height: 1.7;
}
.footer-column h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}
.footer-column ul {
    list-style: none;
}
.footer-column li {
    margin-bottom: 0.5rem;
}
.footer-column a {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}
.footer-column a:hover {
    color: var(--primary);
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    font-size: 0.85rem;
    color: rgba(255,255,255,0.9);
}
.footer-legal a {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    margin-left: 1.5rem;
}
.footer-legal a:hover {
    color: var(--primary);
}
@media (max-width: 480px) {
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    .footer-legal a {
        margin: 0 0.75rem;
    }
}

/* Responsive */
/* Large/Ultrawide screens */
@media (min-width: 1440px) {
    .hero-title { font-size: 5rem; }
    .section-title { font-size: 3.5rem; }
    .stats { max-width: 1100px; }
    .stat-num { font-size: 2.5rem; }
}
@media (min-width: 1920px) {
    .hero-title { font-size: 5.5rem; }
    .section { padding: 6rem 2rem; }
    .grid-5 { gap: 1.5rem; }
    .grid-3, .grid-4 { gap: 2rem; }
}
@media (min-width: 2560px) {
    .hero-title { font-size: 6rem; }
    .section { padding: 8rem 3rem; }
    .nav-logo img { height: 70px; }
}

/* Standard breakpoints */
@media (max-width: 1023px) {
    .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
/* App Download Section */
.app-download-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

@media (max-width: 768px) {
    .app-download-wrapper {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        text-align: center;
    }
    .app-mockup {
        order: 2;
    }
    .app-mockup > div > div {
        transform: scale(0.85);
    }
    .app-content {
        order: 1;
    }
    .app-content h2 {
        font-size: 2rem !important;
    }
    .app-content h2 br {
        display: none;
    }
    .stats { grid-template-columns: repeat(2, 1fr); }
    .modal-grid { grid-template-columns: repeat(2, 1fr); }
    .modal-card-image, .modal-card-placeholder { height: 140px; }
    .footer .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .hero { padding-top: 5rem; min-height: auto; padding-bottom: 3rem; }
    .hero-title { font-size: 1.6rem; }
    .hero-buttons { gap: 0.75rem !important; }
    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        padding: 0.875rem 1.25rem !important;
        font-size: 0.875rem !important;
        white-space: nowrap !important;
    }
    .section { padding: 2rem 1rem; }
    .stats { gap: 0.5rem; }
    .stat { padding: 1rem 0.5rem; }
    .stat-num { font-size: 1.5rem; }
    .grid-3 { grid-template-columns: 1fr; }
    .loc-card { flex: 0 0 260px; }
    .loc-card-image { height: 140px; }
    .nav-inner { padding: 0.75rem 1rem; }
    .nav-logo img { height: 40px; }
    .modal { padding: 1.5rem 1rem; }
    .modal-grid { grid-template-columns: 1fr; }
    .modal-card-image, .modal-card-placeholder { height: 180px; }
    .float-logo { 
        width: 120px !important; 
        /* Keep animation on mobile */
    }
    /* Simplify sprinkles on mobile for performance */
    .sprinkles::after { display: none; }
}
@media (max-width: 480px) {
    .footer .grid-4 { grid-template-columns: 1fr; }
}

/* Override theme header text colors for ADA compliance on teal header */
header a:not(.custom-logo-link):not(.btn-primary),
.site-header a:not(.custom-logo-link),
.main-navigation a,
.primary-menu a,
.primary-navigation a,
#site-navigation a,
.menu-item a,
nav.nav a:not(.nav-logo):not(.btn-primary),
.nav a:not(.nav-logo):not(.btn-primary),
.top-bar a,
.header-menu a,
.flavor-header a,
.flavor-nav a {
    color: #000000 !important;
}
header a:hover:not(.custom-logo-link):not(.btn-primary),
.site-header a:hover:not(.custom-logo-link),
.main-navigation a:hover,
nav.nav a:hover:not(.nav-logo):not(.btn-primary) {
    color: #000000 !important;
    opacity: 0.85;
}

/* Ensure mobile-menu links stay white */
.mobile-menu a {
    color: #ffffff !important;
}
.mobile-menu a:hover {
    color: #5DD9DE !important;
}
