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

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

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

html, body { 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; }

.gradient-text {
    color: #2DCCD3;
}

.glass-card {
    background: rgba(0, 0, 0, 0.9);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    max-width: 100%;
}

.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(-4px);
    box-shadow: 0 12px 30px rgba(45, 204, 211, 0.2);
}

.btn-primary {
    background: #2DCCD3;
    color: #000000;
    padding: 1rem 2rem;
    border-radius: 9999px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    box-shadow: 0 8px 30px rgba(45, 204, 211, 0.4);
    background: #25b5bc;
}

/* Header - EXACT match to homepage */
.nav-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: #2DCCD3;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
/* Header nav text - dark for contrast on teal */
.nav-header a,
.nav-header .menu-item a,
.nav-header nav a,
.nav-content a:not(.nav-logo),
header a:not(.nav-logo):not(.btn-primary),
.main-navigation a,
.primary-menu a,
.site-header a:not(.custom-logo-link),
#site-navigation a {
    color: #000000 !important;
}
.nav-header a:hover,
.nav-content a:hover:not(.nav-logo),
header a:hover:not(.nav-logo):not(.btn-primary) {
    color: #000000 !important;
    opacity: 0.8;
}
.nav-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
@media (min-width: 1440px) {
    .nav-content { max-width: 1500px; }
}
@media (min-width: 1600px) {
    .nav-content { max-width: 1600px; }
}
@media (min-width: 1920px) {
    .nav-content { max-width: 1800px; padding: 1rem 3rem; }
}
@media (min-width: 2560px) {
    .nav-content { max-width: 2200px; padding: 1rem 4rem; }
}
.nav-logo img { height: 70px; width: auto; }

/* Hamburger Menu Button */
.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    cursor: pointer;
    z-index: 1001;
}
.hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background: #000000;
    border-radius: 3px;
    transition: all 0.3s ease;
}
.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);
}

/* Slide-out Menu */
.nav-menu {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100vh;
    background: #000000;
    padding: 100px 2rem 2rem;
    transition: right 0.3s ease;
    z-index: 999;
    box-shadow: -5px 0 30px rgba(0,0,0,0.5);
    overflow-y: auto;
}
.nav-menu.active {
    right: 0;
}
.nav-menu a {
    display: block;
    color: white;
    text-decoration: none;
    font-size: 1.125rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
    transition: all 0.3s;
}
.nav-menu a:hover {
    color: var(--accent);
    padding-left: 0.5rem;
}
.nav-menu .nav-btn {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 1rem 2rem;
    background: #2DCCD3;
    border-radius: 9999px;
    font-size: 1rem;
    font-weight: 600;
    color: #000000;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s;
}
.nav-menu .nav-btn:hover {
    box-shadow: 0 0 20px rgba(14, 165, 233, 0.4);
    transform: scale(1.05);
    border-bottom: none;
    padding-left: 2rem;
}

/* Menu Overlay */
.menu-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 ease;
    z-index: 998;
}
.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Footer - EXACT match to homepage */
.footer {
    background: #0a1420;
    padding: 4rem 1.5rem 2rem;
    border-top: 1px solid var(--border);
}
.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;
    }
}
.footer-compliance {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.75rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.9);
}

/* Hero with sprinkles */
.hero {
    padding: 8rem 1.5rem 5rem;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: transparent;
                      
    pointer-events: none;
    z-index: 0;
}

/* Sprinkles */
.sprinkles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 1;
}
.sprinkles::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    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.12' transform='translate(30,30) rotate(15) scale(0.5)'/%3E%3Cuse href='%23leaf' fill='%23ff6b9d' fill-opacity='0.12' transform='translate(150,80) rotate(-25) scale(0.45)'/%3E%3Cuse href='%23leaf' fill='%23fbbf24' fill-opacity='0.12' transform='translate(280,40) rotate(40) scale(0.55)'/%3E%3Cuse href='%23leaf' fill='%23a78bfa' fill-opacity='0.12' transform='translate(420,90) rotate(-10) scale(0.5)'/%3E%3Cuse href='%23leaf' fill='%2334d399' fill-opacity='0.12' transform='translate(540,50) rotate(30) scale(0.45)'/%3E%3Cuse href='%23leaf' fill='%23f472b6' fill-opacity='0.12' transform='translate(70,170) rotate(-35) scale(0.5)'/%3E%3Cuse href='%23leaf' fill='%2360a5fa' fill-opacity='0.12' transform='translate(200,150) rotate(55) scale(0.55)'/%3E%3Cuse href='%23leaf' fill='%230EA5E9' fill-opacity='0.12' transform='translate(350,180) rotate(-45) scale(0.45)'/%3E%3Cuse href='%23leaf' fill='%23fcd34d' fill-opacity='0.12' transform='translate(480,160) rotate(20) scale(0.5)'/%3E%3C/g%3E%3C/svg%3E");
    background-size: 600px 600px;
    pointer-events: none;
}

/* Hero Background Image */
.hero-bg-container {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-bg-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    opacity: 0.55;
}
.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
}

/* Mobile hero background adjustments */
@media (max-width: 768px) {
    .hero {
        padding: 7rem 1rem 3rem;
        min-height: auto;
    }
    .hero-bg-image {
        object-position: center top;
        opacity: 0.45;
    }
    .hero-bg-overlay {
        background: rgba(0, 0, 0, 0.75);
    }
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    padding: 0 2rem;
    overflow-x: hidden;
}

/* 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; }
}

.grid {
    display: grid;
    gap: 3rem;
}

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

/* Large screen grid enhancements */
@media (min-width: 1440px) {
    .hero-title { font-size: 5rem; }
    .section-title { font-size: 3.5rem; }
}
@media (min-width: 1920px) {
    .hero-title { font-size: 5.5rem; }
    .lead { font-size: 1.5rem; }
    section { padding: 6rem 2rem; }
    .grid { gap: 3.5rem; }
}
@media (min-width: 2560px) {
    .hero-title { font-size: 6rem; }
    section { padding: 8rem 3rem; }
    .nav-logo img { height: 80px; }
}

/* Full-width hero when no map */
.hero-full-width {
    max-width: 100%;
}
.hero-content-wide {
    max-width: 100%;
}
.hero-content-wide .lead {
    max-width: 900px;
}
@media (min-width: 1200px) {
    .hero-content-wide .info-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 700px;
    }
    .hero-content-wide .cta-buttons {
        display: inline-flex;
        gap: 1.5rem;
    }
}
@media (min-width: 1600px) {
    .hero-content-wide .lead {
        max-width: 1100px;
        font-size: 1.35rem;
    }
}
@media (min-width: 1920px) {
    .hero-content-wide .lead {
        max-width: 1300px;
        font-size: 1.5rem;
    }
}

@media (min-width: 640px) and (max-width: 1023px) {
    .grid-2 { grid-template-columns: repeat(2, 1fr); }
}

/* Hero Title - matches homepage exactly */
.hero-title {
    font-size: clamp(2rem, 6vw, 4.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

/* H1 styling - simple like homepage mobile */
.hero-title-main {
    color: #5DD9DE;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

@media (max-width: 640px) {
    .hero-title { font-size: 3rem; }
}

.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);
}

/* Fade-in animation */
.fade-in {
    opacity: 0;
}

/* Optimized fade-in animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.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; }

/* Disable for reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    .fade-in { opacity: 1; }
    .fade-in.visible { animation: none; opacity: 1; }
}

.lead {
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    margin-bottom: 2rem;
    text-shadow: 0 2px 8px rgba(0,0,0,0.6);
    font-weight: 500;
    color: #ffffff;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    max-width: 700px;
}

@media (min-width: 640px) {
    .info-grid { 
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        margin-bottom: 2.5rem;
    }
}

.info-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.9);
    border: 2px solid rgba(14, 165, 233, 0.3);
    border-radius: 16px;
    transition: all 0.3s ease;
}

@media (min-width: 640px) {
    .info-card {
        flex-direction: row;
        align-items: center;
        gap: 1rem;
        padding: 1.25rem 1.5rem;
    }
}

.info-card:hover {
    border-color: rgba(14, 165, 233, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.info-card svg {
    width: 24px;
    height: 24px;
    color: var(--accent);
    flex-shrink: 0;
}

@media (min-width: 640px) {
    .info-card svg {
        width: 28px;
        height: 28px;
    }
}

.info-card .info-label {
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 0.125rem;
    color: white;
}

@media (min-width: 640px) {
    .info-card .info-label {
        font-size: 1rem;
        margin-bottom: 0.25rem;
    }
}

.info-card .info-value {
    font-size: 0.85rem;
    color: #ffffff;
    font-weight: 500;
    word-break: break-word;
}

@media (min-width: 640px) {
    .info-card .info-value {
        font-size: 1rem;
    }
}

.info-card a.info-value {
    color: var(--accent);
    text-decoration: none;
}

.info-card a.info-value:hover {
    text-decoration: underline;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1rem;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
}
.cta-buttons a {
    width: auto;
}

@media (min-width: 640px) {
    .cta-buttons { flex-direction: row; justify-content: flex-start; }
}

/* Alternating Sections */
section {
    padding: 5rem 1.5rem;
}

.section-dark {
    background: #000000;
}

.section-light {
    background: #f8fafc;
    color: #000000;
}

.section-light .glass-card {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(3, 105, 161, 0.2);
}

.section-light p,
.section-light .info-value {
    color: #1e293b;
}

/* Override for featured brand section */
.section-light .featured-brand-card p,
.section-light .featured-brand-tagline,
.section-light .featured-brand-desc {
    color: #ffffff !important;
}

.section-light h3 {
    color: #000000;
}

/* ADA compliant colors on light backgrounds */
.section-light a:not(.btn-primary):not(.btn-secondary) { color: var(--primary-dark); }
.section-light .gradient-text { color: #000000; }
.section-light .section-label { color: var(--primary-dark); }

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.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;
    }
}

.feature-card, .product-card {
    text-align: center;
    padding: 2rem;
}

.feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    background: #2DCCD3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon svg {
    width: 32px;
    height: 32px;
}

.product-card a {
    text-decoration: none;
    color: inherit;
}

.product-card:hover h3 {
    color: var(--accent);
}

/* Category Cards with Image Backgrounds */
.category-grid-wrapper {
    width: 100%;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.category-grid-wrapper::-webkit-scrollbar {
    display: none;
}
.category-grid {
    display: flex;
    gap: 1.5rem;
    width: fit-content;
    margin: 0 auto;
    padding: 0 1rem;
}
@media (max-width: 768px) {
    .category-grid {
        gap: 0.75rem;
        padding: 0 1rem 0.5rem 1rem;
        margin: 0;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }
    .category-card {
        flex: 0 0 100px;
        scroll-snap-align: start;
        aspect-ratio: 1 / 1;
        border-radius: 12px;
        padding: 0;
    }
    .category-card.has-image {
        aspect-ratio: 1 / 1;
    }
}

.category-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem 1rem;
    aspect-ratio: 1 / 1;
    flex: 0 0 200px;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-decoration: none;
    color: white;
    overflow: hidden;
    transition: all 0.3s ease;
}
.category-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: 0 10px 40px rgba(14, 165, 233, 0.2);
}
.category-card.has-image {
    aspect-ratio: 1 / 1;
    padding: 0;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}
.category-card.has-image:hover {
    box-shadow: 0 0 20px rgba(45, 204, 211, 0.4);
    border-color: #2DCCD3;
    transform: none;
}
.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;
}
.category-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}
.category-card:hover .category-overlay {
    background: rgba(0, 0, 0, 0.5);
}
.category-content {
    position: relative;
    z-index: 2;
}
.category-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.75rem;
}
.category-name {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #ffffff;
    transition: color 0.3s ease;
}
.category-card:hover .category-name {
    color: #22d3ee;
}
.category-desc {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 0.75rem;
    line-height: 1.4;
}
.category-cta {
    font-size: 0.85rem;
    color: #22d3ee;
    font-weight: 500;
}

/* Large title/desc for cards with images */
.category-name-large {
    font-family: 'Oswald', serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    transition: color 0.3s ease;
}
.category-card:hover .category-name-large {
    color: #22d3ee;
}
.category-desc-large {
    font-size: 0.95rem;
    color: #ffffff;
    margin-bottom: 0.75rem;
    line-height: 1.5;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}
@media (min-width: 768px) {
    .category-card.has-image {
        min-height: 280px;
    }
    .category-name-large {
        font-size: 2rem;
    }
    .category-desc-large {
        font-size: 1rem;
    }
}

/* Store Photos Section - Bento Grid */
.store-photos-section {
    padding: 5rem 1.5rem;
    background: #000000;
    overflow: hidden;
}

/* Mobile: Horizontal scroll carousel */
.store-photos-grid {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 1rem 0 2rem;
    margin: 0 -1.5rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}
.store-photos-grid::-webkit-scrollbar {
    height: 6px;
}
.store-photos-grid::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}
.store-photos-grid::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}
.store-photos-grid .store-photo {
    flex: 0 0 85%;
    scroll-snap-align: center;
    aspect-ratio: 4/3;
    min-height: auto;
}

/* Mobile scroll hint animation */
.store-photos-scroll-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.85rem;
}
.store-photos-scroll-hint svg {
}

/* Desktop: Bento grid */
@media (min-width: 768px) {
    .store-photos-grid {
        display: grid;
        grid-template-columns: repeat(12, 1fr);
        grid-template-rows: repeat(2, 250px);
        gap: 1.25rem;
        overflow: visible;
        padding: 0;
        margin: 0 auto;
        max-width: 1200px;
    }
    .store-photos-grid .store-photo {
        flex: none;
        aspect-ratio: auto;
        min-height: 100%;
    }
    .store-photos-grid.has-4 .store-photo:nth-child(1) {
        grid-column: span 7;
        grid-row: span 2;
    }
    .store-photos-grid.has-4 .store-photo:nth-child(2) {
        grid-column: span 5;
    }
    .store-photos-grid.has-4 .store-photo:nth-child(3) {
        grid-column: span 3;
    }
    .store-photos-grid.has-4 .store-photo:nth-child(4) {
        grid-column: span 2;
    }
    .store-photos-grid.has-3 .store-photo:nth-child(1) {
        grid-column: span 7;
        grid-row: span 2;
    }
    .store-photos-grid.has-3 .store-photo:nth-child(2) {
        grid-column: span 5;
    }
    .store-photos-grid.has-3 .store-photo:nth-child(3) {
        grid-column: span 5;
    }
    .store-photos-grid.has-2 .store-photo:nth-child(1) {
        grid-column: span 7;
        grid-row: span 2;
    }
    .store-photos-grid.has-2 .store-photo:nth-child(2) {
        grid-column: span 5;
        grid-row: span 2;
    }
    .store-photos-grid.has-1 .store-photo:nth-child(1) {
        grid-column: span 12;
        grid-row: span 2;
    }
    .store-photos-scroll-hint {
        display: none;
    }
}
@media (min-width: 1200px) {
    .store-photos-grid {
        grid-template-rows: repeat(2, 280px);
    }
}
.store-photo {
    position: relative;
    border-radius: 1.25rem;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    min-height: 200px;
}
.store-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease, filter 0.4s ease;
}
.store-photo:hover img {
    transform: scale(1.08);
}
.store-photo-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.8) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}
.store-photo:hover .store-photo-overlay {
    opacity: 1;
}
/* Show labels on mobile since no hover */
@media (max-width: 767px) {
    .store-photo-overlay {
        opacity: 1;
    }
    .store-photo-label {
        opacity: 1;
        transform: translateY(0);
    }
}
.store-photo-label {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
}
.store-photo:hover .store-photo-label {
    opacity: 1;
    transform: translateY(0);
}
.store-photo-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(14, 165, 233, 0.95);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.35rem 0.75rem;
    border-radius: 2rem;
}

/* About Section with Image */
.about-section {
    padding: 5rem 1.5rem 6rem;
    background: #000000;
    position: relative;
}

/* Section Divider */
.section-divider {
    padding: 0 1.5rem;
    background: #000000;
    position: relative;
    overflow: hidden;
}
.section-divider-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: 3rem 0;
}
.section-divider-line {
    flex: 1;
    height: 1px;
    background: rgba(45, 204, 211, 0.3);
}
.section-divider-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(45, 204, 211, 0.25);
    border: 1px solid rgba(14, 165, 233, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

/* Products section with light background */
.products-section {
    padding: 5rem 1.5rem;
    background: #f8fafc;
    position: relative;
    overflow: hidden;
}
.products-section .section-title {
    color: #000000;
}
.products-section .gradient-text {
    background: none; color: #000000;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    background-clip: unset;
}
.products-section .section-header p {
    color: #1e293b !important;
}

/* Category cards on light background */
.products-section .category-card {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(3, 105, 161, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.products-section .category-card:hover {
    box-shadow: 0 10px 40px rgba(3, 105, 161, 0.15);
}
.products-section .category-card:not(.has-image) .category-name {
    color: #000000;
}
.products-section .category-card:not(.has-image) .category-desc {
    color: #334155;
}
.products-section .category-card:not(.has-image):hover .category-name {
    color: var(--primary-dark);
}

.about-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}
@media (min-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}
.about-image-wrapper {
    position: relative;
}
.about-image {
    border-radius: 1.5rem;
    overflow: hidden;
    aspect-ratio: 4/3;
    position: relative;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}
.about-image::before {
    content: '';
    position: absolute;
    inset: -3px;
    background: #2DCCD3;
    border-radius: 1.6rem;
    z-index: -1;
    opacity: 0.6;
}
.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about-image-badge {
    position: absolute;
    bottom: -1rem;
    right: -1rem;
    background: #2DCCD3;
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 1rem;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 10px 30px rgba(14, 165, 233, 0.4);
}
@media (max-width: 767px) {
    .about-image-badge {
        bottom: -0.75rem;
        right: 1rem;
        padding: 0.75rem 1rem;
        font-size: 0.95rem;
    }
}
.about-content h2 {
    margin-bottom: 1.5rem;
}
.about-content p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1.5rem;
}
.about-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}
.about-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.6rem 1rem;
    border-radius: 2rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.about-feature svg {
    color: var(--primary);
}

.faq-item {
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 1.5rem;
    background: none;
    border: none;
    color: white;
    font-weight: 600;
    font-size: 1.125rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
}

.faq-question span {
    flex: 1;
    min-width: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
    hyphens: auto;
}

.faq-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    display: none;
    color: #ffffff;
    font-size: 1.0625rem;
    line-height: 1.7;
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
}

.faq-answer p {
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
    margin: 0;
}

.faq-answer.active {
    display: block;
}

/* Mobile FAQ adjustments */
@media (max-width: 640px) {
    .faq-wrapper {
        max-width: 100% !important;
        padding: 0 !important;
        overflow: hidden !important;
    }
    .faq-question {
        padding: 1rem;
        font-size: 1rem;
        line-height: 1.5;
    }
    .faq-answer {
        padding: 0 1rem 1rem;
        font-size: 0.9375rem;
        line-height: 1.7;
    }
    .faq-item {
        margin-bottom: 0.75rem;
    }
    .faq-icon {
        width: 20px;
        height: 20px;
    }
    
    /* Force FAQ text to wrap on mobile */
    .faq-item.glass-card {
        max-width: 100% !important;
        overflow: hidden !important;
        padding: 0 !important;
    }
    .faq-question {
        max-width: 100% !important;
        overflow: hidden !important;
    }
    .faq-question span {
        display: block !important;
        max-width: calc(100% - 40px) !important;
        white-space: normal !important;
        word-break: break-word !important;
        overflow-wrap: break-word !important;
    }
    .faq-answer {
        max-width: 100% !important;
        overflow: hidden !important;
    }
    .faq-answer p {
        max-width: 100% !important;
        white-space: normal !important;
        word-break: break-word !important;
    }
}
}

.rating-stars {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.rating-stars svg {
    width: 24px;
    height: 24px;
    fill: #fbbf24;
    color: #fbbf24;
}

iframe {
    border: 0;
    border-radius: 16px;
    width: 100%;
    height: 300px;
}

/* Map Column Styling */
.map-column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
}

.map-container {
    overflow: hidden;
}

.map-actions {
    display: flex;
    gap: 0.75rem;
}

.map-action-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1rem;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.map-action-btn.directions {
    background: #2DCCD3;
    color: white;
}

.map-action-btn.directions:hover {
    background: #2DCCD3;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.4);
}

.map-action-btn.call {
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #34D399;
}

.map-action-btn.call:hover {
    background: rgba(16, 185, 129, 0.25);
    transform: translateY(-2px);
}

/* Grid alignment for hero */
.grid.grid-2 {
    align-items: center;
}

/* ========================================
   FEATURED BRAND SECTION
======================================== */
.featured-brand-section {
    padding: 4rem 0;
}

/* On mobile, make featured brand full width */
@media (max-width: 768px) {
    .featured-brand-section {
        padding: 2rem 0;
    }
    .featured-brand-section .container {
        padding: 0;
        max-width: 100%;
    }
    .featured-brand-card {
        border-radius: 0;
        margin: 0;
    }
}

.featured-brand-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    min-height: 450px;
    display: flex;
    align-items: center;
    background: #000000;
}

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

.featured-brand-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
}

.featured-brand-content {
    position: relative;
    z-index: 1;
    padding: 3rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.featured-brand-header {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.featured-brand-badge {
    display: inline-block;
    background: var(--brand-color, #2DCCD3);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1.25rem;
}

.featured-brand-logo {
    max-height: 100px;
    max-width: 300px;
    width: auto;
    margin-bottom: 1rem;
}

.featured-brand-name {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.5rem;
    font-family: 'Oswald', serif;
}

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

.featured-brand-desc {
    font-size: 1.15rem;
    color: #ffffff !important;
    font-weight: 500;
    line-height: 1.8;
    max-width: 700px;
    margin-bottom: 2rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    opacity: 1;
}

.featured-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
    width: 100%;
    max-width: 900px;
}

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

@media (max-width: 500px) {
    .featured-products-grid {
        grid-template-columns: 1fr 1fr;
    }
    .featured-brand-content {
        padding: 2.5rem 1.5rem;
    }
    .featured-brand-desc {
        font-size: 1rem;
        line-height: 1.7;
    }
}

.featured-product-card {
    background: rgba(30, 30, 30, 0.9);
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.featured-product-card:hover {
    background: rgba(40, 40, 40, 0.95);
    transform: translateY(-4px);
    border-color: var(--brand-color, #2DCCD3);
}

.featured-product-image {
    width: 100%;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
}

.featured-product-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 8px;
}

.featured-product-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.featured-product-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: white;
}

.featured-product-type {
    font-size: 0.75rem;
    color: var(--brand-color, #2DCCD3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.featured-brand-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--brand-color, #2DCCD3);
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.featured-brand-cta:hover {
    transform: translateX(4px);
    box-shadow: 0 8px 25px rgba(14, 165, 233, 0.4);
}

.featured-brand-cta svg {
    transition: transform 0.3s ease;
}

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

/* Mobile adjustments */
@media (max-width: 640px) {
    section { padding: 3rem 1rem; }
    .nav-logo img { height: 50px; }
    .container { padding: 0 0.5rem; }
    .section-header { margin-bottom: 2rem; }
}

/* Location Modal Styles */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
}
.modal-overlay.active { display: flex; }
.modal {
    background: #1a1a2e;
    border-radius: 16px;
    max-width: 1200px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 40px;
    position: relative;
}
.modal > h2 {
    color: #fff;
    text-align: center;
    margin-bottom: 30px;
    font-family: 'Oswald', serif;
}
.modal-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}
@media (max-width: 1200px) { .modal-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 900px) { .modal-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .modal-grid { grid-template-columns: repeat(2, 1fr); } .modal { padding: 20px; } }
.modal-card {
    background: #252542;
    border-radius: 12px;
    padding: 15px;
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
    color: #fff;
    display: block;
}
.modal-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(94, 234, 212, 0.3);
}
.modal-card-image { width: 100%; height: 100px; object-fit: cover; border-radius: 8px; margin-bottom: 10px; }
.modal-card-placeholder { width: 100%; height: 100px; background: #2DCCD3; border-radius: 8px; margin-bottom: 10px; }
.modal-card h3 { font-size: 0.95rem; margin: 0 0 5px 0; color: #fff; }
.modal-card p { font-size: 0.8rem; color: #aaa; margin: 0; }
.modal-close-btn { position: absolute; top: 15px; right: 20px; background: none; border: none; color: #fff; font-size: 2rem; cursor: pointer; line-height: 1; }

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

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

/* FORCE nav-menu white - highest specificity */
header .nav-menu a,
header nav.nav-menu a,
.nav-menu a,
nav.nav-menu a {
    color: #ffffff !important;
}
header .nav-menu a:hover,
header nav.nav-menu a:hover,
.nav-menu a:hover,
nav.nav-menu a:hover {
    color: #5DD9DE !important;
}

/* Mobile App Download Section */
#download-app {
    overflow-x: hidden;
}

.app-download-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    overflow: hidden;
}

@media (max-width: 900px) {
    .app-download-wrapper {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    .app-mockup {
        order: 2;
        text-align: center;
        overflow: hidden;
    }
    .app-mockup > div {
        display: inline-block;
        max-width: 100%;
    }
    .app-mockup > div > div {
        transform: scale(0.75);
        transform-origin: center center;
    }
    .app-content {
        order: 1;
        text-align: center;
    }
    .app-content h2 {
        font-size: 2rem !important;
    }
    .app-content > div[style*="flex-direction: column"] {
        align-items: center;
    }
    .app-content > div[style*="flex-direction: column"] > div {
        text-align: left;
    }
}

@media (max-width: 640px) {
    .app-mockup > div > div {
        transform: scale(0.65);
    }
    .app-content h2 {
        font-size: 1.75rem !important;
    }
    .app-content h2 br {
        display: none;
    }
}
