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

:root {
    --primary-orange: #FF6B35;
    --primary-orange-dark: #E55A2B;
    --primary-blue: #1E3A8A;
    --accent-amber: #F59E0B;
    --accent-amber-dark: #D97706;
    --light-bg: #FDF6EE;
    --white: #FFFFFF;
    --text-dark: #1F2937;
    --text-light: #4B5563;
    --border-light: #E5E7EB;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
    --radius-sm: 12px;
    --radius-md: 16px;
    --radius-full: 9999px;
}

body {
    font-family: 'Inter', 'Arial', sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--white);
}

/* ===========================
   ACCESSIBILITY: Skip to content
   =========================== */
.skip-to-content {
    position: absolute;
    left: -9999px;
    top: 0;
    z-index: 9999;
    padding: 1rem 1.5rem;
    background: var(--primary-orange);
    color: var(--white);
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    text-decoration: none;
    border-radius: 0 0 var(--radius-sm) 0;
    font-size: 1rem;
}

.skip-to-content:focus {
    left: 0;
    outline: 3px solid var(--primary-blue);
    outline-offset: 2px;
}

/* ===========================
   ACCESSIBILITY: Focus indicators
   =========================== */
*:focus-visible {
    outline: 3px solid var(--primary-orange);
    outline-offset: 2px;
}

a:focus-visible,
button:focus-visible,
[role="tab"]:focus-visible {
    outline: 3px solid var(--primary-orange);
    outline-offset: 2px;
    border-radius: 2px;
}

.join-btn:focus-visible,
.cta-button:focus-visible {
    outline: 3px solid var(--primary-blue);
    outline-offset: 3px;
    box-shadow: 0 0 0 6px rgba(30, 58, 138, 0.2);
}

.nav-menu a:focus-visible {
    outline: 3px solid var(--primary-orange);
    outline-offset: 4px;
    border-radius: 4px;
}

.carousel-btn:focus-visible {
    outline: 3px solid var(--primary-blue);
    outline-offset: 3px;
}

.dot:focus-visible {
    outline: 3px solid var(--primary-blue);
    outline-offset: 3px;
}

.footer a:focus-visible,
.footer-legal a:focus-visible {
    outline: 2px solid var(--primary-orange);
    outline-offset: 2px;
}

.social-links a:focus-visible {
    outline: 2px solid var(--primary-orange);
    outline-offset: 4px;
    border-radius: 4px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', 'Arial', sans-serif;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.navbar {
    background: var(--light-bg);
    padding: 1rem 0;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-top: 3px solid var(--primary-orange);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: bold;
    color: var(--primary-blue);
    font-size: 1.2rem;
    font-variant: small-caps;
}

.logo img {
    height: 50px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none !important;
    color: var(--text-dark) !important;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
    padding-bottom: 4px;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-orange);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-menu a:link,
.nav-menu a:visited,
.nav-menu a:active {
    color: var(--text-dark) !important;
    text-decoration: none !important;
}

.nav-menu a:hover {
    color: var(--primary-orange);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.search-btn, .cart-btn {
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0.5rem;
}

.join-btn {
    background: var(--primary-orange);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--white) !important;
    text-decoration: none !important;
}

.join-btn:hover {
    background: var(--primary-orange-dark);
    color: var(--white) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.35);
}

.join-btn:link,
.join-btn:visited,
.join-btn:active {
    color: var(--white) !important;
    text-decoration: none !important;
}

.hero {
    background: linear-gradient(135deg, #FFF7ED 0%, #FDF2E9 50%, #FEF3C7 100%);
    padding: 6rem 0;
    min-height: 600px;
    position: relative;
}

.hero-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 0 2rem;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: bold;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 2rem;
}

.italic {
    font-style: italic;
    color: var(--primary-orange);
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 540px;
    line-height: 1.7;
}

.hero-right {
    display: flex;
    flex-direction: column;
}

.cta-button {
    background: var(--primary-orange);
    border: none;
    padding: 1rem 2.5rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 1.1rem;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--white) !important;
    text-decoration: none !important;
    position: relative;
    overflow: hidden;
}

.cta-button:hover {
    background: var(--primary-orange-dark);
    color: var(--white) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.35);
}

.cta-button:link,
.cta-button:visited,
.cta-button:active {
    color: var(--white) !important;
    text-decoration: none !important;
}

.hero-image {
    position: relative;
    text-align: center;
    max-width: 500px;
    display: inline-block;
}

.hero-image img {
    max-width: 500px;
}

.hero-stats {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--white);
    padding: 1rem;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-md);
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.4rem;
    font-weight: bold;
    color: var(--primary-orange);
}

.stat-text {
    font-size: 0.75rem;
    color: var(--text-light);
}

.product-grid {
    padding: 6rem 0;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 2rem;
    padding-right: 2rem;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    font-style: italic;
}

.filter-tabs {
    display: flex;
    gap: 1rem;
}

.tab {
    background: none;
    border: 2px solid var(--border-light);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
}

.tab.active {
    background: var(--primary-orange);
    color: var(--white);
    border-color: var(--primary-orange);
    transform: scale(1.05);
}

.tab:hover {
    border-color: var(--primary-orange);
}

.products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.product-card h3 {
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin: 1rem 0;
}

.product-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: var(--radius-sm);
    margin-bottom: 1rem;
}

.ingredients {
    color: var(--primary-orange);
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.description {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.product-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.caffeine {
    font-size: 0.8rem;
    color: var(--primary-blue);
}

.price {
    font-weight: bold;
    color: var(--text-dark);
    font-size: 1.1rem;
}

.benefits {
    background: var(--light-bg);
    padding: 6rem 0;
    text-align: center;
}

.benefits h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.highlight {
    color: var(--primary-orange);
}

.brand {
    color: var(--primary-orange);
    font-style: italic;
    font-variant: small-caps;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.benefit {
    text-align: center;
}

.benefit-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1rem;
    box-shadow: var(--shadow-md);
    color: var(--primary-orange);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-icon:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.benefit h3 {
    color: var(--text-dark);
    font-size: 1rem;
}

.real-fruit, .fresh-taste {
    padding: 6rem 0;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding-left: 2rem;
    padding-right: 2rem;
}

.real-fruit h2, .fresh-taste h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.real-fruit p, .fresh-taste p {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1.1rem;
    max-width: 520px;
}

.real-fruit .content-left img {
    max-width: 500px;
}

.benefits-list {
    list-style: none;
}

.benefits-list li {
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    font-weight: 500;
    padding-left: 1.5rem;
    position: relative;
}

.benefits-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--primary-orange);
}

.fresh-taste {
    background: linear-gradient(135deg, #FFF7ED 0%, #FFEDD5 100%);
    border-radius: var(--radius-md);
    padding: 4rem;
    margin-bottom: 4rem;
}

.fresh-taste .content-right img {
    max-width: 500px;
}

.stat-badge {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: var(--white);
    padding: 0.75rem;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.social-gallery {
    background: var(--light-bg);
    padding: 6rem 0;
    text-align: center;
}

.social-gallery .section-header {
    flex-direction: column;
    text-align: center;
    margin-bottom: 3rem;
}

.social-gallery h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 0.5rem;
}

.social-handle {
    color: var(--primary-orange);
    font-weight: bold;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.social-handle:hover {
    color: var(--primary-orange-dark);
    transform: translateY(-2px);
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-sm);
    overflow: hidden;
    aspect-ratio: 1;
    transition: transform 0.3s ease;
}

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

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.username {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(0,0,0,0.6);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 500;
    backdrop-filter: blur(4px);
}

.instagram-embed-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.instagram-embed-gallery-grid .instagram-media,
.instagram-embed-gallery-grid iframe.instagram-media-rendered {
    min-width: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
    margin: 0 !important;
}

.instagram-embed-gallery-grid script {
    display: none;
}

.testimonials {
    padding: 6rem 0;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 2rem;
    padding-right: 2rem;
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 3rem;
}

.love {
    color: var(--primary-orange);
}

.testimonials-carousel {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.carousel-container {
    overflow: hidden;
    border-radius: var(--radius-md);
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s ease;
    will-change: transform;
}

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

.testimonial {
    background: #FFF7ED;
    padding: 2.5rem;
    border-radius: var(--radius-md);
    min-width: 100%;
    max-width: 600px;
    width: 600px;
    margin: 0 auto;
    flex-shrink: 0;
    box-sizing: border-box;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid rgba(255, 107, 53, 0.1);
}

.testimonial p:first-child {
    font-weight: bold;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.review {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.reviewer img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.reviewer h4 {
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.rating {
    color: #F59E0B;
    letter-spacing: 2px;
    font-size: 0.9rem;
}

.carousel-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
}

.carousel-btn {
    background: var(--primary-orange);
    color: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.carousel-btn:hover {
    background: var(--primary-orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 107, 53, 0.3);
}

.carousel-btn:disabled {
    background: var(--border-light);
    color: #9CA3AF;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.carousel-dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border-light);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--primary-orange);
    transform: scale(1.2);
}

.dot:hover {
    background: var(--primary-orange);
}

.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: 2rem;
    padding: 0 2rem;
    margin-bottom: 2rem;
}

.footer-brand h3 {
    color: var(--primary-orange);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-variant: small-caps;
}

.footer-brand p {
    color: #9CA3AF;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: #9CA3AF;
    font-size: 1.2rem;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-2px);
}

.social-icon {
    width: 24px;
    height: 24px;
    transition: filter 0.3s ease;
}

.social-links a:hover .social-icon {
    filter: brightness(0) saturate(100%) invert(48%) sepia(79%) saturate(2476%) hue-rotate(346deg) brightness(100%) contrast(97%);
}

.footer-column h4 {
    margin-bottom: 1rem;
    color: var(--white);
}

.footer-column a {
    display: block;
    color: #9CA3AF;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: var(--primary-orange);
}

.footer-contact p {
    color: #9CA3AF;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-contact svg {
    flex-shrink: 0;
    opacity: 0.7;
}

.map-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--primary-orange);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    transition: color 0.3s ease;
}

.map-link:hover {
    color: var(--primary-orange-dark);
    text-decoration: underline;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    border-top: 1px solid #374151;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #9CA3AF;
    font-size: 0.9rem;
}

/* Scroll animation classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Social links SVG styling */
.social-links a svg {
    color: #9CA3AF;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-links a:hover svg {
    color: var(--primary-orange);
    transform: translateY(-2px);
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: #9CA3AF;
    text-decoration: none;
}

@media (max-width: 768px) {
    .navbar {
        padding: 0.75rem 0;
        position: relative;
    }
    
    .nav-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 0 1rem;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--light-bg);
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        z-index: 1000;
    }
    
    .nav-menu.mobile-active {
        display: flex;
    }
    
    .nav-menu a {
        padding: 0.75rem 0;
        border-bottom: 1px solid #E5E7EB;
        text-align: center;
    }
    
    .nav-menu a:last-child {
        border-bottom: none;
    }
    
    .logo img {
        height: 40px;
        max-width: 150px;
    }
    
    .logo span {
        font-size: 1rem;
    }
    
    .hero {
        padding: 2rem 0;
        min-height: auto;
        text-align: center;
    }

    .hero-grid {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .hero-content {
        align-items: center;
        gap: 1.5rem;
        width: 100%;
        order: 1;
    }

    .hero-content h1 {
        font-size: 1.75rem;
        line-height: 1.3;
    }

    .hero-right {
        align-items: center;
        order: 2;
    }

    .hero-subtitle {
        font-size: 1rem;
        text-align: center;
    }

    .hero-content .cta-button {
        margin-top: 0.5rem;
    }

    .hero-image {
        max-width: 100%;
        margin: 0 auto;
    }

    .hero-image img {
        max-width: 100%;
        height: auto;
    }

    .stat-badge {
        bottom: 10px;
        right: 10px;
        padding: 0.4rem;
    }
    
    .product-grid {
        padding: 2rem 0;
    }
    
    .section-header {
        flex-direction: column;
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
        text-align: center;
    }
    
    .filter-tabs {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
    }
    
    .tab {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
        min-width: auto;
    }
    
    .products {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .product-card {
        padding: 1.5rem;
    }
    
    .product-card img {
        width: 100%;
        aspect-ratio: 4 / 3;
    }
    
    .benefits {
        padding: 2rem 0;
    }
    
    .benefits h2 {
        font-size: 1.75rem;
        padding: 0 1rem;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .benefit-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .real-fruit, .fresh-taste {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 2rem 1rem;
        gap: 2rem;
    }
    
    .real-fruit h2, .fresh-taste h2 {
        font-size: 1.75rem;
    }
    
    .real-fruit .content-left img, .fresh-taste .content-right img {
        max-width: 100%;
    }
    
    .social-gallery {
        padding: 2rem 0;
    }
    
    .social-gallery .section-header {
        padding: 0 1rem;
    }
    
    .social-gallery h2 {
        font-size: 1.75rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
        padding: 0 1rem;
    }

    .instagram-embed-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
        padding: 0 1rem;
    }

    .testimonials {
        padding: 2rem 0;
    }
    
    .testimonials h2 {
        font-size: 1.75rem;
        padding: 0 1rem;
    }
    
    .testimonials-carousel {
        padding: 0 1rem;
    }
    
    .testimonial {
        padding: 1.5rem;
        width: 100%;
        max-width: 500px;
        min-height: 260px;
    }
    
    .carousel-nav {
        gap: 1rem;
        margin-top: 1.5rem;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }
    
    .footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .footer-brand {
        order: -1;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        padding: 1rem;
    }
    
    .footer-legal {
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .logo img {
        height: 35px;
        max-width: 120px;
    }
    
    .logo span {
        font-size: 0.9rem;
    }
    
    .hero {
        padding: 1.5rem 0;
    }
    
    .hero-grid {
        padding: 0 0.75rem;
        gap: 1rem;
    }

    .hero-content h1 {
        font-size: 1.5rem;
        line-height: 1.2;
    }

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

    .hero-content .cta-button {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
        margin-top: 0.5rem;
    }
    
    .stat-badge {
        padding: 0.4rem 0.5rem;
    }

    .stat-number {
        font-size: 0.85rem;
    }
    
    .section-header h2, .benefits h2, .testimonials h2 {
        font-size: 1.5rem;
    }
    
    .real-fruit h2, .fresh-taste h2 {
        font-size: 1.5rem;
    }
    
    .social-gallery h2 {
        font-size: 1.5rem;
    }
    
    .filter-tabs {
        gap: 0.25rem;
    }
    
    .tab {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
    
    .product-card {
        padding: 1rem;
    }
    
    .product-card img {
        width: 100%;
        aspect-ratio: 4 / 3;
    }
    
    .product-card h3 {
        font-size: 1.25rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .benefit-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .instagram-embed-gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .testimonial {
        padding: 1rem;
        width: 100%;
        max-width: 400px;
        min-height: 240px;
    }
    
    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .carousel-nav {
        gap: 0.75rem;
        margin-top: 1rem;
    }
    
    .fresh-taste {
        padding: 1.5rem 0.75rem;
        margin-bottom: 2rem;
    }
    
    .real-fruit {
        padding: 1.5rem 0.75rem;
    }
}

/* ===========================
   MENU CATEGORY SECTIONS
   =========================== */

.menu-category {
    padding: 3rem 0;
}

.menu-category + .menu-category {
    border-top: 1px solid var(--border-light);
}

.category-header {
    display: flex;
    align-items: flex-start;
    gap: 2.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.category-photo {
    width: 280px;
    height: 280px;
    border-radius: var(--radius-md);
    object-fit: cover;
    flex-shrink: 0;
    box-shadow: var(--shadow-md);
}

.category-info {
    flex: 1;
    min-width: 260px;
    padding-top: 0.5rem;
}

.category-info h3 {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin: 0 0 0.4rem 0;
}

.category-price {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--primary-orange);
    margin-bottom: 0.5rem;
}

.category-meta {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 0;
    max-width: 480px;
}

.menu-items-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1rem;
}

.menu-item {
    padding: 1rem 1.25rem;
    border-radius: var(--radius-sm);
    background: var(--light-bg);
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.menu-item:hover {
    box-shadow: var(--shadow-sm);
    border-color: var(--primary-orange);
    transform: translateY(-2px);
}

.menu-item h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 0.3rem 0;
}

.menu-item .item-ingredients {
    font-size: 0.85rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.5;
}

/* ===========================
   RESPONSIVE — MENU CATEGORIES
   =========================== */

@media (max-width: 768px) {
    .menu-category {
        padding: 2rem 0;
    }

    .category-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1.5rem;
    }

    .category-photo {
        width: 100%;
        max-width: 400px;
        height: 220px;
    }

    .category-info {
        min-width: unset;
        padding-top: 0;
    }

    .category-meta {
        max-width: 100%;
    }

    .menu-items-list {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        padding: 0 1rem;
    }

    .menu-item {
        padding: 0.85rem 1rem;
    }
}

@media (max-width: 480px) {
    .category-photo {
        height: 180px;
    }

    .category-info h3 {
        font-size: 1.35rem;
    }

    .category-price {
        font-size: 1.05rem;
    }

    .menu-items-list {
        padding: 0 0.75rem;
    }
}

/* ===========================
   ACCESSIBILITY: Mobile menu toggle
   =========================== */
.mobile-menu-toggle {
    background: none;
    border: 2px solid transparent;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    line-height: 1;
    color: var(--text-dark);
}

.mobile-menu-toggle:focus-visible {
    outline: 3px solid var(--primary-orange);
    outline-offset: 2px;
}

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

    .animate-on-scroll {
        opacity: 1;
        transform: none;
    }

    .hero-image {
        transform: none !important;
    }

    .menu-item:hover,
    .product-card:hover,
    .benefit-icon:hover,
    .gallery-item:hover {
        transform: none;
    }
}
