body,
html {
    overflow-x: hidden
}

.logo,
.nav-menu a,
body {
    color: var(--text-dark)
}

.floating-whatsapp,
.logo,
.nav-menu a {
    text-decoration: none
}

.floating-whatsapp::before,
.hero::before,
.nav-menu a::after,
.trust-indicators::before {
    position: absolute;
    content: ''
}

.contact-card,
.gallery-item,
.hero,
.page-header,
.product-showcase,
.product-slider,
.trust-item {
    overflow: hidden
}

.category-header,
.footer-bottom,
.page-header,
.section-header,
.trust-container,
.value-card {
    text-align: center
}

.feature,
.recipe-category {
    text-transform: uppercase;
    letter-spacing: .5px
}

.footer-section ul,
.nav-menu,
.product-features,
.spices-used ul {
    list-style: none
}

:root {
    --primary-red: #B91C1C;
    --primary-green: #059669;
    --accent-orange: #EA580C;
    --accent-blue: #3B82F6;
    --accent-purple: #8B5CF6;
    --accent-teal: #14B8A6;
    --accent-pink: #EC4899;
    --accent-yellow: #F59E0B;
    --accent-indigo: #6366F1;
    --text-dark: #111827;
    --text-gray: #6B7280;
    --text-light: #9CA3AF;
    --bg-cream: #FEFDFB;
    --bg-light: #F9FAFB;
    --white: #ffffff;
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-hover: 0 4px 16px rgba(0, 0, 0, 0.1);
    --border-light: #E5E7EB
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    max-width: 100%;
    word-wrap: break-word
}

body {
    font-family: Inter, sans-serif;
    font-size: 15px;
    line-height: 1.6
}

.achievement-number,
.logo-text,
.product-item h4,
.stat-number,
.team-message::before,
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', serif
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    line-height: 1.3
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100vw; /* Use viewport width to ensure full screen width */
    background: transparent; /* Remove background from header, let individual sections handle it */
    backdrop-filter: none;
    border-bottom: none;
    box-shadow: var(--shadow);
    z-index: 1000;
    transition: .3s;
    margin: 0;
    padding: 0;
}

/* Top Bar Styles */
.top-bar {
    width: 100vw; /* Use viewport width */
    background: #f8f9fa; /* Light gray/white background like the reference */
    color: #666;
    padding: 0 0 0.2rem 0;
    font-size: 0.875rem;
    border-bottom: 1px solid #e9ecef;
    margin: 0;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.top-bar-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.contact-info span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.contact-info a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 500;
}

.contact-info a:hover {
    color: var(--primary-red);
}

.contact-info i {
    color: var(--primary-red);
    font-size: 0.9rem;
}


.top-bar .social-links {
    display: flex;
    gap: 0.5rem; /* reduced gap for a compact header */
}

/* Make header social icons compact and colorful (circular) */
.top-bar .social-links a {
    color: #fff !important;
    width: 32px; /* slightly smaller */
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%; /* circular */
    background: var(--primary-red); /* fallback */
    transition: all 0.22s ease;
    text-decoration: none;
    border: none;
    font-size: 0.85rem;
    box-shadow: 0 2px 6px rgba(0,0,0,0.12);
}

/* Individual brand colors for header social icons */
.top-bar .social-links a:nth-child(1) { background: linear-gradient(135deg, #1877f2, #0c63d4); }
.top-bar .social-links a:nth-child(2) { background: linear-gradient(135deg, #25d366, #128c7e); }
.top-bar .social-links a:nth-child(3) { background: linear-gradient(135deg, #f58529, #dd2a7b); /* Instagram gradient */ }

.top-bar .social-links a:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 14px rgba(0,0,0,0.18);
}

/* Specific colors for different social platforms */
.top-bar .social-links a:nth-child(1):hover {
    background: #1877f2; /* Facebook blue */
    border-color: #1877f2;
}

.top-bar .social-links a:nth-child(2):hover {
    background: #25d366; /* WhatsApp green */
    border-color: #25d366;
}

.nav-container {
    width: 100%; /* full width container, background will be full-bleed */
    background: var(--primary-red);
    color: white;
    display: block;
    margin: 0;
    position: relative;
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: .6rem 1.5rem;
    display: grid;
    grid-template-columns: auto 1fr auto; /* logo | menu (flex-end) | actions */
    align-items: center;
    gap: 1rem;
}

/* position the nav-menu so its content ends at the end of the container (right edge of middle column) */
.nav-inner .nav-menu {
    justify-self: stretch; /* allow the middle column to take available space */
    display: flex;
    gap: 1.25rem;
    align-items: center;
    width: 100%;
    justify-content: flex-end; /* make menu items align to the end of the middle column */
}

/* keep the logo aligned left */
.nav-inner .logo {
    justify-self: start;
    display: flex;
    align-items: center;
    gap: .5rem;
}

/* keep the mobile toggle / actions aligned right */
.nav-inner .mobile-menu-toggle {
    justify-self: end;
}

.logo,
.nav-menu {
    display: flex;
    align-items: center
}

.logo {
    gap: .5rem
}

.logo img {
    height: 56px;
    width: auto
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: white; /* White text on red background */
    font-family: 'Playfair Display', serif;
}

.nav-menu {
    gap: 1.25rem
}

/* Reset list defaults and ensure horizontal centered layout */
.nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end; /* ensure items end at the container edge */
}

.nav-menu li {
    display: inline-flex;
    align-items: center;
}

.nav-menu a {
    font-weight: 500;
    font-size: .95rem;
    transition: color .3s;
    position: relative;
    padding: .5rem 0;
    color: white; /* White text on red background */
}

.breadcrumb a:hover,
.breadcrumb span,
.close-modal:hover,
.excellence-theme .achievement-number,
.footer-section a:hover,
.lightbox-close:hover,
.nav-menu a.active,
.nav-menu a:hover,
.recipe-stats i {
    color: #ffd700; /* Gold/yellow color for hover state on red background */
}

.nav-menu a::after {
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: #ffd700; /* Gold/yellow underline */
    transition: width .3s
}

.developer-credit a:hover::after,
.nav-menu a.active::after,
.nav-menu a:hover::after {
    width: 100%
}

.mobile-menu-toggle {
    display: none;
    background: 0 0;
    border: none;
    font-size: 1.5rem;
    color: white; /* White color for mobile toggle on red background */
    cursor: pointer
}

.floating-whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 56px;
    height: 56px;
    background: #25d366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 12px rgb(37 211 102 / .4);
    z-index: 9999;
    transition: .3s cubic-bezier(.4, 0, .2, 1);
    border: 2px solid
}

.hero,
.hero-container,
.hero-highlight,
.product-showcase,
.product-slider,
.trust-container,
.trust-indicators,
.trust-item {
    position: relative
}

.floating-whatsapp::before {
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #25d366, #128c7e, #25d366);
    border-radius: 50%;
    z-index: -1;
    animation: 2s ease-in-out infinite alternate whatsapp-glow
}

.floating-whatsapp:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgb(37 211 102 / .5);
    color: var(--white)
}

.floating-whatsapp i {
    position: relative;
    z-index: 1
}

@keyframes whatsapp-glow {
    0% {
        opacity: .5;
        transform: scale(1)
    }

    100% {
        opacity: .8;
        transform: scale(1.05)
    }
}

.hero {
    background: linear-gradient(135deg, var(--bg-cream) 0, var(--bg-light) 100%);
    /* use a CSS variable set by JS to match the header height; fallback to 160px */
    padding: calc(var(--header-height, 160px) + 10px) 0 25px;
}

.hero::before {
    top: 0;
    right: -50%;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><path d="M200,300 Q400,100 600,300 T1000,300 L1000,0 L0,0 Z" fill="%23B91C1C" opacity="0.03"/></svg>') 0 0/cover no-repeat
}

.hero-container {
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    z-index: 2
}

.hero-content h1 {
    font-size: 2.75rem;
    margin-bottom: 1.25rem;
    color: var(--text-dark);
    line-height: 1.2
}

.hero-highlight {
    color: var(--primary-red)
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 1.75rem;
    line-height: 1.6
}

.heritage-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: linear-gradient(135deg, var(--primary-green), #10b981);
    color: var(--white);
    padding: .4rem .875rem;
    border-radius: 20px;
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: .8rem;
    box-shadow: 0 4px 15px rgb(5 150 105 / .3);
    transition: .3s
}

.heritage-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgb(5 150 105 / .4)
}

.heritage-badge i {
    color: var(--accent-yellow);
    filter: drop-shadow(0 2px 4px rgb(0 0 0 / .2))
}

.hero-buttons {
    display: flex;
    gap: .875rem;
    flex-wrap: wrap
}

.btn-primary,
.btn-secondary {
    padding: .75rem 1.5rem;
    font-size: .9rem;
    transition: .3s;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    text-decoration: none
}

.btn-primary {
    background: var(--primary-red);
    color: var(--white);
    border-radius: 8px;
    font-weight: 600;
    box-shadow: 0 2px 8px rgb(185 28 28 / .2)
}

.btn-secondary,
.trust-item h3 {
    color: var(--text-dark);
    font-weight: 600
}

.btn-primary:hover {
    background: #991b1b;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgb(185 28 28 / .3)
}

.btn-secondary {
    background: #fff0;
    border: 1.5px solid var(--text-gray);
    border-radius: 8px
}

.trust-icon,
.value-icon {
    align-items: center;
    color: var(--white)
}

.btn-secondary:hover {
    background: var(--text-dark);
    color: var(--white);
    border-color: var(--text-dark);
    transform: translateY(-1px)
}

.trust-indicators {
    background: linear-gradient(135deg, var(--bg-light) 0, var(--white) 100%);
    padding: 2.5rem 0 3rem;
    border-top: 1px solid var(--border-light);
    overflow: hidden
}

.trust-indicators::before {
    top: 0;
    left: -20%;
    width: 40%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgb(185 28 28 / .03) 0, transparent 70%);
    transform: rotate(-15deg)
}

.trust-container {
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    z-index: 2
}

.trust-item {
    padding: 1.5rem 1rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 3px 15px rgb(0 0 0 / .06);
    transition: .3s cubic-bezier(.4, 0, .2, 1);
    border: 1px solid var(--border-light)
}

.category-card::before,
.recipe-card::before,
.trust-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-red), var(--accent-orange));
    transform: scaleX(0);
    transition: transform .3s
}

.trust-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgb(0 0 0 / .1)
}

.category-card:hover::before,
.recipe-card:hover::before,
.trust-item:hover::before {
    transform: scaleX(1)
}

.trust-icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.4rem;
    box-shadow: 0 6px 15px rgb(0 0 0 / .15);
    transition: .3s
}

.balance-icon,
.phone-icon,
.rice-icon,
.trust-item:first-child .trust-icon {
    background: linear-gradient(135deg, var(--primary-green), #10b981)
}

.trust-item:first-child::before {
    background: linear-gradient(90deg, var(--primary-green), #10b981)
}

.email-card .contact-btn,
.email-card .contact-icon,
.trust-item:nth-child(2) .trust-icon {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8)
}

.trust-item:nth-child(2)::before {
    background: linear-gradient(90deg, #3b82f6, #1d4ed8)
}

.curry-icon,
.heat-icon,
.location-icon,
.trust-item:nth-child(3) .trust-icon {
    background: linear-gradient(135deg, var(--accent-orange), #f97316)
}

.trust-item:nth-child(3)::before {
    background: linear-gradient(90deg, var(--accent-orange), #f97316)
}

.excellence-theme .achievement-icon,
.snacks-icon,
.storage-icon,
.trust-item:nth-child(4) .trust-icon {
    background: linear-gradient(135deg, var(--primary-red), #dc2626)
}

.excellence-theme::before,
.trust-item:nth-child(4)::before {
    background: linear-gradient(90deg, var(--primary-red), #dc2626)
}

.trust-item:hover .trust-icon {
    transform: scale(1.05) rotate(3deg);
    box-shadow: 0 8px 20px rgb(0 0 0 / .2)
}

.trust-item h3 {
    font-size: 1.1rem;
    margin-bottom: .5rem
}

.trust-item p {
    color: var(--text-gray);
    font-size: .85rem;
    line-height: 1.5;
    margin: 0
}

.story-section,
.team-section,
.values-section {
    background: var(--white);
    padding: 5rem 0
}

.certifications-container,
.section-container,
.values-container {
    margin: 0 auto;
    padding: 0 2rem
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem
}

.products-grid,
.products-list {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr))
}

.value-card {
    background: linear-gradient(135deg, var(--bg-cream) 0, #fff5e6 100%);
    padding: 2.5rem;
    border-radius: 20px;
    transition: .3s;
    border: 1px solid #f0f0f0
}

.category-card:hover,
.certification-card:hover,
.gallery-item:hover,
.recipe-card:hover,
.tip-card:hover,
.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover)
}

.value-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-red);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    transition: .3s;
    box-shadow: 0 4px 15px rgb(0 0 0 / .1)
}

.value-card:first-child .value-icon {
    background: linear-gradient(135deg, var(--primary-green), #10b981);
    box-shadow: 0 4px 15px rgb(5 150 105 / .3)
}

.value-card:nth-child(2) .value-icon {
    background: linear-gradient(135deg, var(--accent-blue), #1d4ed8);
    box-shadow: 0 4px 15px rgb(59 130 246 / .3)
}

.value-card:nth-child(3) .value-icon {
    background: linear-gradient(135deg, var(--accent-pink), #be185d);
    box-shadow: 0 4px 15px rgb(236 72 153 / .3)
}

.value-card:nth-child(4) .value-icon {
    background: linear-gradient(135deg, var(--accent-teal), #0d9488);
    box-shadow: 0 4px 15px rgb(20 184 166 / .3)
}

.value-card:nth-child(5) .value-icon {
    background: linear-gradient(135deg, var(--accent-purple), #7c3aed);
    box-shadow: 0 4px 15px rgb(139 92 246 / .3)
}

.value-card:nth-child(6) .value-icon {
    background: linear-gradient(135deg, var(--accent-orange), #c2410c);
    box-shadow: 0 4px 15px rgb(234 88 12 / .3)
}

.value-card:hover .value-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgb(0 0 0 / .2)
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark)
}

.value-card p {
    color: var(--text-gray);
    line-height: 1.6
}

.story-highlights {
    list-style: none;
    margin: 2rem 0
}

.story-highlights li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 1rem;
    background: var(--bg-cream);
    border-radius: 10px
}

.story-highlights li i {
    color: var(--primary-red);
    font-size: 1.2rem;
    width: 30px;
    transition: .3s
}

.category-header h3 i,
.footer-section p:nth-child(3) i,
.product-card:first-child .product-link,
.product-features li i,
.story-highlights li:first-child i,
.variety-theme .achievement-number {
    color: var(--primary-green)
}

.customer-theme .achievement-number,
.footer-section p:nth-child(2) i,
.product-card:nth-child(2) .product-link,
.story-highlights li:nth-child(2) i {
    color: var(--accent-blue)
}

.story-highlights li:nth-child(3) i {
    color: var(--accent-pink)
}

.story-highlights li:hover i {
    transform: scale(1.2);
    filter: brightness(1.2)
}

.products-section {
    background: var(--bg-cream);
    padding: 4rem 0
}

.section-header {
    margin-bottom: 3rem
}

.section-header h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    color: var(--text-dark)
}

.section-header p {
    font-size: 1rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto
}

.products-grid {
    display: grid;
    gap: 2rem;
    margin-top: 2rem
}

.product-showcase {
    max-width: 800px;
    margin: 0 auto 4rem;
    border-radius: 16px;
    box-shadow: var(--shadow-hover)
}

.category-section,
.faq-item,
.gallery-item,
.product-item:hover,
.slider-btn {
    box-shadow: var(--shadow)
}

.product-slider {
    height: 400px
}

.product-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity .5s
}

.dot,
.slider-btn {
    transition: .3s;
    cursor: pointer
}

.contact-card:hover::before,
.gallery-item:hover .gallery-overlay,
.product-slide.active {
    opacity: 1
}

.product-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.slider-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
    transform: translateY(-50%)
}

.slider-btn {
    background: rgb(255 255 255 / .9);
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--text-dark)
}

.slider-btn:hover {
    background: var(--white);
    transform: scale(1.1)
}

.slider-dots {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: .75rem
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgb(255 255 255 / .5)
}

.carousel-dot.active,
.dot.active {
    background: var(--white);
    transform: scale(1.2)
}

.product-categories {
    max-width: 1200px;
    margin: 0 auto
}

.category-section {
    background: var(--white);
    border-radius: 16px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    transition: transform .3s
}

.category-section:hover {
    transform: translateY(-2px)
}

.category-header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--bg-light)
}

.category-header h3 {
    font-size: 1.75rem;
    color: var(--text-dark);
    margin-bottom: .75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .75rem
}

.category-header h3 i {
    font-size: 1.5rem
}

.category-header p {
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.6
}

.products-list {
    display: grid;
    gap: 2rem
}

.product-item {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary-green);
    transition: .3s
}

.category-section:first-child .feature,
.difficulty-badge.easy,
.feature {
    background: var(--primary-green)
}

.product-item:hover {
    transform: translateX(5px)
}

.product-item h4 {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: .75rem
}

.product-item p {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem
}

.feature,
.footer,
.footer-section h3,
.gallery-overlay i,
.lightbox-btn i,
.lightbox-close,
.lightbox-counter {
    color: var(--white)
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem
}

.feature {
    padding: .25rem .75rem;
    border-radius: 15px;
    font-size: .75rem;
    font-weight: 500
}

.category-section:first-child .product-item {
    border-left-color: var(--primary-green)
}

.category-section:nth-child(2) .product-item {
    border-left-color: var(--accent-blue)
}

.category-section:nth-child(2) .feature {
    background: var(--accent-blue)
}

.category-section:nth-child(3) .product-item {
    border-left-color: var(--accent-orange)
}

.category-section:nth-child(3) .feature,
.difficulty-badge.medium {
    background: var(--accent-orange)
}

.category-section:nth-child(4) .product-item {
    border-left-color: var(--accent-purple)
}

.category-section:nth-child(4) .feature {
    background: var(--accent-purple)
}

.category-section:nth-child(5) .product-item {
    border-left-color: var(--accent-teal)
}

.category-section:nth-child(5) .feature {
    background: var(--accent-teal)
}

.category-section:nth-child(6) .product-item {
    border-left-color: var(--accent-pink)
}

.category-section:nth-child(6) .feature {
    background: var(--accent-pink)
}

.category-section:nth-child(7) .product-item {
    border-left-color: var(--accent-yellow)
}

.category-section:nth-child(7) .feature {
    background: var(--accent-yellow)
}

.gallery-section {
    padding: 4rem 0;
    background: var(--bg-light)
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    transition: transform .3s;
    cursor: pointer;
    aspect-ratio: 4/3
}

.contact-card::before,
.gallery-overlay {
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity .3s
}

.gallery-item img,
.recipe-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s
}

.gallery-item:hover img,
.recipe-card:hover .recipe-image img {
    transform: scale(1.05)
}

.gallery-overlay {
    position: absolute;
    right: 0;
    bottom: 0;
    background: rgb(0 0 0 / .5);
    display: flex;
    align-items: center;
    justify-content: center
}

.gallery-overlay i {
    font-size: 2rem
}

.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0 0 0 / .9);
    animation: .3s fadeIn
}

@keyframes fadeIn {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

.lightbox-content {
    position: relative;
    margin: auto;
    display: block;
    width: 90%;
    max-width: 1200px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgb(0 0 0 / .5)
}

.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 3rem;
    font-weight: 700;
    cursor: pointer;
    z-index: 10000;
    transition: color .3s
}

.lightbox-navigation {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    transform: translateY(-50%);
    z-index: 10000
}

.lightbox-btn {
    background: rgb(255 255 255 / .2);
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: .3s;
    backdrop-filter: blur(10px)
}

.lightbox-btn:hover {
    background: rgb(255 255 255 / .3);
    transform: scale(1.1)
}

.lightbox-btn i {
    font-size: 1.5rem
}

.lightbox-counter {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgb(0 0 0 / .7);
    padding: .5rem 1rem;
    border-radius: 20px;
    font-size: 1rem;
    font-weight: 500;
    z-index: 10000
}

.icon-pulse,
.location-marker {
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%
}

.footer {
    background: var(--text-dark);
    padding: 2.5rem 0 1.5rem
}

.footer-container {
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem
}

.footer-section h3 {
    margin-bottom: 1rem;
    font-size: 1.1rem
}

.footer-section li,
.footer-section p {
    color: #ccc;
    margin-bottom: .5rem;
    line-height: 1.6;
    font-size: .9rem
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color .3s
}

.footer-section p i {
    margin-right: .5rem;
    width: 20px;
    transition: .3s
}

.footer-section p:nth-child(4) i,
.product-card:nth-child(3) .product-link,
.quality-theme .achievement-number {
    color: var(--accent-orange)
}

.footer-section p:nth-child(5) i {
    color: var(--accent-purple)
}

.footer-section p:hover i {
    transform: scale(1.2);
    filter: brightness(1.3)
}

.social-links {
    display: flex;
    gap: .75rem;
    margin-top: 1rem
}

.social-links a {
    width: 36px;
    height: 36px;
    background: var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: .3s;
    font-size: .9rem
}

.social-links a:first-child {
    background: linear-gradient(135deg, #1877f2, #0c63d4)
}

.social-links a:nth-child(2) {
    background: linear-gradient(135deg, #e4405f, #bc2a8d)
}

.social-links a:nth-child(3),
.whatsapp-card .contact-btn,
.whatsapp-card .contact-icon,
.whatsapp-icon {
    background: linear-gradient(135deg, #25d366, #128c7e)
}

.social-links a:nth-child(4) {
    background: linear-gradient(135deg, var(--accent-orange), #c2410c)
}

.social-links a:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 20px rgb(0 0 0 / .3)
}

/* (Removed old white-square override to allow colorful circular header icons to show) */

.footer-bottom {
    border-top: 1px solid #333;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    color: #999;
    font-size: .85rem
}

.developer-credit {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #444
}

.developer-credit p {
    font-size: .8rem;
    color: #888;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .25rem
}

.developer-credit a {
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 500;
    transition: .3s;
    position: relative
}

.developer-credit a:hover {
    color: #fff;
    text-shadow: 0 0 8px rgb(185 28 28 / .6)
}

.developer-credit a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -2px;
    left: 0;
    background: var(--primary-red);
    transition: width .3s
}

.page-header {
    background: linear-gradient(135deg, var(--bg-cream) 0, #fff5e6 100%);
    padding: 110px 0 80px;
    position: relative
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    right: -50%;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><path d="M200,300 Q400,100 600,300 T1000,300 L1000,0 L0,0 Z" fill="%23D32F2F" opacity="0.05"/></svg>') 0 0/cover no-repeat
}

.page-header-content {
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--text-dark)
}

.page-header p {
    font-size: 1.2rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto 2rem
}

.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: .5rem;
    margin-bottom: 2rem
}

.breadcrumb a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color .3s
}

.breadcrumb i {
    color: var(--accent-orange);
    transition: .3s
}

.contact-section {
    background: var(--white);
    padding: 4rem 0
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem
}

.contact-card {
    background: #fff;
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 10px 30px rgb(0 0 0 / .08);
    transition: .4s cubic-bezier(.25, .46, .45, .94);
    border: 1px solid;
    position: relative
}

.contact-card::before {
    content: '';
    position: absolute;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #b91c1c, #059669, #ea580c)
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgb(0 0 0 / .15)
}

.contact-card-inner {
    padding: 2.5rem;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between
}

.contact-icon,
.icon-pulse {
    width: 80px;
    height: 80px;
    border-radius: 50%
}

.contact-icon-wrapper {
    position: relative;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center
}

.contact-btn,
.contact-icon {
    align-items: center;
    transition: .3s
}

.contact-icon {
    display: flex;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
    position: relative;
    z-index: 2
}

.phone-card .contact-icon {
    background: linear-gradient(135deg, #059669, #10b981)
}

.contact-btn,
.location-card .contact-icon {
    background: linear-gradient(135deg, #b91c1c, #dc2626)
}

.icon-pulse {
    position: absolute;
    border: 2px solid;
    animation: 2s infinite pulse;
    z-index: 1
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1
    }

    100% {
        transform: translate(-50%, -50%) scale(1.4);
        opacity: 0
    }
}

.contact-info h3 {
    font-size: 1.4rem;
    color: #1e293b;
    margin-bottom: .75rem;
    font-weight: 600
}

.contact-value,
.feature-item h4 {
    font-size: 1.1rem;
    margin-bottom: .5rem
}

.contact-value {
    color: #374151;
    font-weight: 600;
    line-height: 1.4
}

.contact-note {
    font-size: .9rem;
    color: #64748b;
    line-height: 1.4;
    margin-bottom: 1.5rem;
    display: block
}

.contact-action {
    margin-top: auto
}

.contact-btn {
    display: inline-flex;
    gap: .5rem;
    padding: .75rem 1.5rem;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    font-size: .9rem;
    border: none;
    cursor: pointer
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgb(185 28 28 / .3);
    color: #fff
}

.whatsapp-card .contact-btn:hover {
    box-shadow: 0 8px 25px rgb(37 211 102 / .3)
}

.email-card .contact-btn:hover {
    box-shadow: 0 8px 25px rgb(59 130 246 / .3)
}

.location-card {
    background: linear-gradient(135deg, #fef7f7, #fdf2f2)
}

.location-inner {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2.5rem
}

.location-content {
    flex: 1;
    text-align: left
}

.category-card,
.certification-card,
.feature-item,
.stat-item,
.team-container,
.tip-card {
    text-align: center
}

.location-content .contact-icon-wrapper {
    margin-bottom: 1rem;
    justify-content: flex-start
}

.location-illustration {
    flex: 0 0 120px;
    position: relative;
    height: 120px
}

.location-marker {
    position: absolute;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #b91c1c, #dc2626);
    border-radius: 50% 50% 50% 0;
    transform: translate(-50%, -50%) rotate(-45deg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    z-index: 2
}

.location-marker i {
    transform: rotate(45deg)
}

.location-waves {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%)
}

.wave {
    position: absolute;
    border: 2px solid;
    border-radius: 50%;
    animation: 2s ease-out infinite wave-animation
}

.wave-1 {
    width: 80px;
    height: 80px;
    animation-delay: 0s
}

.wave-2 {
    width: 100px;
    height: 100px;
    animation-delay: .5s
}

.wave-3 {
    width: 120px;
    height: 120px;
    animation-delay: 1s
}

@keyframes wave-animation {
    0% {
        transform: translate(-50%, -50%) scale(.5);
        opacity: 1
    }

    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0
    }
}

.contact-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem
}

.category-icon,
.feature-icon,
.tip-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem
}

.feature-item {
    padding: 1.5rem;
    background: rgb(255 255 255 / .8);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid;
    transition: .3s
}

.feature-item:hover {
    transform: translateY(-5px);
    background: rgb(255 255 255 / .95)
}

.feature-icon {
    background: linear-gradient(135deg, #b91c1c, #dc2626);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem
}

.feature-item h4 {
    color: #1e293b;
    font-weight: 600
}

.feature-item p {
    font-size: .9rem;
    color: #64748b;
    margin: 0
}

@media (max-width:1024px) {

    .contact-features,
    .contact-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .location-card {
        grid-column: span 2
    }
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start
}

.contact-form-container h2,
.contact-info h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark)
}

.contact-info p {
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.7
}

.contact-form,
.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem
}

.contact-method,
.submit-btn {
    align-items: center;
    transition: .3s;
    display: flex
}

.contact-method {
    gap: 1rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 12px;
    border: 1px solid var(--border-light)
}

.contact-method:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-red)
}

.email-icon {
    background: linear-gradient(135deg, var(--primary-red), #ef4444)
}

.contact-details h3 {
    color: var(--text-dark);
    margin-bottom: .25rem;
    font-size: 1.1rem
}

.contact-details p {
    color: var(--text-dark);
    font-weight: 600;
    margin: 0
}

.contact-details span {
    color: var(--text-gray);
    font-size: .85rem
}

.form-group {
    display: flex;
    flex-direction: column
}

.form-group label {
    color: var(--text-dark);
    font-weight: 500;
    margin-bottom: .5rem
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: .75rem 1rem;
    border: 2px solid var(--border-light);
    border-radius: 8px;
    font-size: 1rem;
    transition: .3s;
    background: var(--white)
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: 0;
    border-color: var(--primary-red);
    box-shadow: 0 0 0 3px rgb(185 28 28 / .1)
}

.submit-btn {
    background: linear-gradient(135deg, var(--primary-red), #dc2626);
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    justify-content: center;
    gap: .5rem;
    cursor: pointer;
    box-shadow: 0 4px 15px rgb(185 28 28 / .2)
}

.submit-btn:hover {
    background: var(--text-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgb(0 0 0 / .2)
}

.cooking-tips-section,
.faq-section,
.recipe-categories-section {
    background: var(--bg-light);
    padding: 4rem 0
}

.category-card,
.faq-item {
    background: var(--white);
    padding: 2rem
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem
}

.faq-item {
    border-radius: 12px;
    border: 1px solid var(--border-light);
    transition: .3s
}

.category-card,
.recipe-card {
    border-radius: 15px;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
    transition: .3s
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover)
}

.faq-item h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: .75rem;
    font-size: 1.1rem
}

.faq-icon {
    color: var(--primary-red);
    font-size: 1rem
}

.faq-item p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0
}

.category-grid,
.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem
}

.category-card {
    border: 1px solid var(--border-light)
}

.category-icon,
.tip-icon {
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white)
}

.vegetarian-icon {
    background: linear-gradient(135deg, #059669, #047857)
}

.category-card h3 {
    color: var(--text-dark);
    margin-bottom: .75rem;
    font-size: 1.3rem
}

/* Mobile/tablet: hide the text inside the hero heritage badge but keep the icon visible */
@media (max-width: 768px) {
    /* Hide the entire heritage badge (icon + text) on small screens */
    .hero .heritage-badge {
        display: none;
    }
}

/* Mobile/tablet: stack hero and show slider above content */
@media (max-width: 768px) {
    .hero-container {
        display: flex;
        flex-direction: column-reverse; /* put image first visually */
        gap: 1rem;
        padding: 0;
    }

    .hero-image,
    .hero-content {
        width: 100%;
    }

    .hero {
        /* Make room for the fixed navigation so slider doesn't touch it; compact header */
        padding: 130px 0 20px; /* reduced because top-bar will be hidden on mobile */
    }

    /* give the image a tiny offset from the header for safety */
    .hero-image {
        margin-top: 8px;
    }

    .hero-content h1 {
        font-size: 1.6rem;
    }

    .hero-image .hero-swiper img {
        height: auto;
        max-height: 320px;
        object-fit: cover;
        width: 100%;
    }

    /* Show a compact top contact bar on mobile so social icons remain visible.
       Reduce vertical padding to keep the header tight while preserving access. */
    .top-bar {
        display: block !important;
        padding: 0.12rem 0; /* very small top/bottom padding */
        background: #f8f9fa;
    }

    .top-bar-container {
        padding: 0 .4rem; /* keep left/right slight padding */
        gap: .25rem;
        display: flex;
        align-items: center; /* vertically center children */
        justify-content: space-between;
        min-height: 34px; /* enforce a consistent small height */
    }

    .top-bar .contact-info {
        gap: .4rem;
        display: flex;
        align-items: center; /* ensure phone icon + text centered */
        height: 100%;
    }

    .top-bar .contact-info i,
    .top-bar .contact-info a {
        display: inline-flex;
        align-items: center;
        line-height: 1;
        height: 20px;
    }

    .top-bar .social-links {
        display: flex;
        align-items: center;
        gap: .4rem;
        height: 100%;
        margin-top: 0; /* ensure no top margin on mobile */
    }

    .top-bar .social-links a {
        width: 28px;
        height: 28px;
        font-size: 0.78rem;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        line-height: 1;
    }

    .nav-inner {
        padding: .15rem .4rem; /* very tight nav spacing */
        gap: .4rem;
    }

    .logo img {
        height: 30px; /* very small logo on mobile */
    }

    .mobile-menu-toggle {
        font-size: 0.95rem;
    }

    /* Slight visual gap between header and slider */
    .hero-image {
        margin-top: 10px;
    }
}

.category-card p,
.certification-card p {
    color: var(--text-gray);
    font-size: .9rem;
    line-height: 1.5
}

.recipes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2rem
}

.recipe-card {
    background: var(--white);
    border: 1px solid var(--border-light)
}

.recipe-image {
    height: 200px;
    position: relative;
    overflow: hidden
}

.recipe-badges {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    gap: .5rem
}

.difficulty-badge,
.time-badge {
    background: rgb(0 0 0 / .8);
    color: var(--white);
    padding: .25rem .75rem;
    border-radius: 15px;
    font-size: .75rem;
    font-weight: 500
}

.difficulty-badge.hard {
    background: var(--primary-red)
}

.recipe-content {
    padding: 2rem
}

.recipe-category {
    color: var(--primary-red);
    font-size: .8rem;
    font-weight: 600;
    margin-bottom: .5rem
}

.recipe-content h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.3rem
}

.recipe-content p,
.recipe-stats,
.spices-used {
    margin-bottom: 1.5rem
}

.recipe-content p {
    color: var(--text-gray);
    line-height: 1.6;
    font-size: .95rem
}

.recipe-stats {
    display: flex;
    gap: 1rem;
    font-size: .85rem;
    color: var(--text-gray)
}

.recipe-stats span {
    display: flex;
    align-items: center;
    gap: .3rem
}

.spices-used h4 {
    color: var(--text-dark);
    font-size: .9rem;
    margin-bottom: .5rem
}

.spices-used ul {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem
}

.carousel-nav,
.recipe-btn {
    align-items: center;
    cursor: pointer
}

.spices-used li {
    background: var(--bg-light);
    color: var(--text-gray);
    padding: .25rem .75rem;
    border-radius: 15px;
    font-size: .8rem;
    border: 1px solid var(--border-light)
}

.recipe-btn {
    background: linear-gradient(135deg, var(--primary-red), #dc2626);
    color: var(--white);
    border: none;
    padding: .75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: .9rem;
    display: flex;
    gap: .5rem;
    transition: .3s;
    box-shadow: 0 4px 15px rgb(185 28 28 / .2);
    width: 100%;
    justify-content: center
}

.recipe-modal-content,
.tip-card {
    padding: 2rem;
    border-radius: 15px
}

.recipe-btn:hover {
    background: var(--text-dark);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgb(0 0 0 / .2)
}

.recipe-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / .8)
}

.recipe-modal-content {
    background: var(--white);
    margin: 5% auto;
    width: 90%;
    max-width: 800px;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgb(0 0 0 / .3)
}

.close-modal {
    color: var(--text-gray);
    float: right;
    font-size: 2rem;
    font-weight: 700;
    cursor: pointer;
    transition: color .3s
}

.recipe-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem
}

.ingredients-section h3,
.instructions-section h3 {
    color: var(--text-dark);
    margin-bottom: 1rem
}

.ingredients-section ul,
.instructions-section ol {
    color: var(--text-gray);
    line-height: 1.7
}

.ingredients-section li {
    margin-bottom: .5rem
}

.instructions-section li {
    margin-bottom: 1rem
}

.tip-card {
    background: var(--white);
    box-shadow: var(--shadow);
    border: 1px solid var(--border-light);
    transition: .3s
}

.grinding-icon {
    background: linear-gradient(135deg, var(--text-dark), #374151)
}

.tip-card h3 {
    color: var(--text-dark);
    margin-bottom: .75rem;
    font-size: 1.2rem
}

.tip-card p {
    color: var(--text-gray);
    font-size: .9rem;
    line-height: 1.6
}

.breadcrumb:hover i {
    transform: scale(1.2);
    color: var(--primary-red)
}

@media (max-width:768px) {
    .about-section {
        padding: 3rem 1rem !important;
    }

    .about-container {
        padding: 0 1rem;
        gap: 2rem;
    }

    .about-section .about-content {
        padding: 0;
    }

    .about-section .about-achievements {
        padding: 0;
    }

    .about-section .achievement-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .location-content,
    .location-inner {
        text-align: center
    }

    .contact-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem
    }

    .location-card,
    .location-card-span-three {
        grid-column: span 1 !important
    }

    .location-inner {
        flex-direction: column;
        gap: 1.5rem
    }

    .hero-buttons,
    .location-content .contact-icon-wrapper {
        justify-content: center
    }

    .contact-features {
        grid-template-columns: 1fr;
        gap: 1rem
    }

    .contact-card-inner {
        padding: 2rem
    }

    .category-grid,
    .contact-content,
    .recipe-details,
    .recipes-grid,
    .tips-grid,
    .values-grid {
        grid-template-columns: 1fr
    }

    .contact-content {
        gap: 2rem
    }

    .recipe-details {
        gap: 1.5rem
    }

    .recipe-modal-content {
        margin: 10% auto;
        width: 95%;
        padding: 1.5rem
    }

    .mobile-menu-toggle {
        display: block
    }

    /* Top Bar Mobile Styles */
    .top-bar-container {
    flex-direction: column;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    }

    .contact-info {
        gap: 1rem;
        font-size: 0.8rem;
    }

    .contact-info .email-info {
        display: none; /* Hide email on very small screens */
    }

    .top-bar .social-links {
        gap: 0.5rem;
    }

    .top-bar .social-links a {
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--primary-red); /* Red background for mobile menu */
        flex-direction: column;
        padding: 1rem;
        box-shadow: var(--shadow);
        margin: 0; /* Reset margin */
    }

    .nav-inner {
        position: relative; /* Make sure mobile menu positions relative to this */
    }

    .nav-menu.active {
        display: flex
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center
    }

    .hero-content h1 {
        font-size: 2.25rem
    }

    .trust-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 0 1rem
    }

    .trust-item {
        padding: 1.25rem .75rem
    }

    .trust-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        margin-bottom: .75rem
    }

    .trust-item h3 {
        font-size: 1rem;
        margin-bottom: .4rem
    }

    .trust-item p {
        font-size: .8rem
    }

    .section-header h2 {
        font-size: 1.875rem
    }

    .nav-container {
        padding: .75rem 1rem
    }

    /* Mobile: use flex layout and show mobile toggle */
    .nav-inner {
    display: flex;
    grid-template-columns: none;
    padding: .5rem 1rem;
    gap: .5rem;
    align-items: center;
    }

    .nav-inner .nav-menu {
    display: none; /* hidden by default on mobile */
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    right: 0;
    background: var(--primary-red);
    flex-direction: column;
    padding: 1rem;
    box-shadow: var(--shadow);
    }

    /* Ensure the toggled/active mobile menu is visible. More specific selector and !important
       to override other mobile rules that hide the menu. */
    .nav-inner .nav-menu.active {
    display: flex !important;
    z-index: 1100; /* ensure the mobile menu is above fixed header/content */
    }

    .nav-inner .mobile-menu-toggle {
        display: block;
        /* Ensure the hamburger sits above other content and is clickable */
        position: relative;
        z-index: 2000;
        pointer-events: auto;
    }

    /* Keep top-bar contact items on one row and move hamburger to right */
    .top-bar-container,
    .nav-inner {
        align-items: center;
    }

    /* Make phone and social icons stay in same row on small screens */
    .top-bar-container {
        flex-direction: row;
        justify-content: space-between;
    }

    /* Ensure contact-info and social-links share a row */
    .contact-info {
        flex: 1 1 auto;
        display: flex;
        align-items: center;
        gap: .75rem;
        justify-content: flex-start;
    }

    .top-bar .social-links {
        margin-left: auto;
    }

    /* Position hamburger on the right inside nav-inner */
    .nav-inner .mobile-menu-toggle {
        order: 2; /* ensure toggle is last */
        margin-left: auto;
    }

    /* Keep logo and nav-menu aligned left and center respectively */
    .nav-inner .logo {
        order: 1;
    }

    .nav-inner .nav-menu {
        order: 3;
    }

    .floating-whatsapp {
        bottom: 16px;
        right: 16px;
        width: 52px;
        height: 52px;
        font-size: 1.3rem
    }

    .page-header h1 {
        font-size: 2.2rem
    }
}

.hero-carousel,
.product-card:hover,
.story-image img {
    box-shadow: var(--shadow-hover)
}

@media (max-width:480px) {

    .products-grid,
    .products-list {
        grid-template-columns: 1fr;
        gap: 1.5rem
    }

    .about-section {
        padding: 2rem 1rem !important;
    }

    .about-container {
        padding: 0 .5rem;
        gap: 1.5rem;
    }

    .about-section .about-content {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto 2rem;
        padding: 0;
        box-sizing: border-box
    }

    .about-section .about-achievements {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto 2rem;
        padding: 0;
        box-sizing: border-box
    }

    .products-grid {
        margin-top: 1.5rem
    }

    .product-showcase {
        margin: 0 1rem 3rem
    }

    .product-slider {
        height: 300px
    }

    .slider-controls {
        padding: 0 .5rem
    }

    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem
    }

    .category-section {
        margin: 0 1rem 1.5rem;
        padding: 1.5rem
    }

    .category-header h3 {
        font-size: 1.5rem;
        flex-direction: column;
        gap: .5rem
    }

    .product-item {
        padding: 1.5rem
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1rem;
        margin-top: 1.5rem
    }

    .gallery-item {
        aspect-ratio: 1
    }

    .lightbox-close {
        top: 1rem;
        right: 1rem;
        font-size: 2.5rem
    }

    .lightbox-navigation {
        padding: 0 1rem
    }

    .lightbox-btn {
        width: 50px;
        height: 50px
    }

    .lightbox-btn i {
        font-size: 1.2rem
    }

    .lightbox-counter {
        bottom: 1rem;
        font-size: .9rem;
        padding: .4rem .8rem
    }

    .trust-container {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
        padding: 0 1rem
    }

    .trust-item {
        padding: 1.5rem 1rem
    }

    .trust-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem
    }

    .trust-item h3 {
        font-size: 1.1rem
    }

    .trust-item p {
        font-size: .875rem
    }

    .hero-buttons {
        flex-direction: row;
        justify-content: center;
        gap: .5rem
    }

    .btn-primary,
    .btn-secondary {
        justify-content: center;
        padding: .6rem 1rem;
        font-size: .7rem;
        flex: 1;
        max-width: 140px;
        text-align: center
    }

    .page-header h1 {
        font-size: 1.8rem
    }
}

.carousel-nav,
.product-content h3 {
    font-size: 1.2rem;
    color: var(--text-dark)
}

.hero-image {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 100%
}

.hero-carousel {
    position: relative;
    height: 400px;
    border-radius: 12px
}

.carousel-container {
    display: flex;
    transition: transform .5s ease-in-out;
    height: 100%
}

.carousel-slide {
    height: 100%;
    flex-shrink: 0;
    overflow: hidden
}

.carousel-slide img,
.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    max-width: 100%
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgb(255 255 255 / .9);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    transition: .3s;
    z-index: 10;
    box-shadow: 0 2px 8px rgb(0 0 0 / .15)
}

.carousel-nav:hover {
    background: var(--white);
    transform: translateY(-50%) scale(1.1);
    color: var(--primary-red)
}

.carousel-prev {
    left: 15px
}

.carousel-next {
    right: 15px
}

.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10
}

.achievement-card,
.product-card,
.product-icon,
.story-image,
.team-message {
    position: relative
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgb(255 255 255 / .5);
    cursor: pointer;
    transition: .3s;
    border: none
}

.carousel-dot:hover {
    background: rgb(255 255 255 / .8)
}

.product-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: .3s
}

.product-card:hover {
    transform: translateY(-3px)
}

.product-icon {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1.5rem auto 1rem;
    width: 120px;
    border-radius: 50%;
    font-size: 2.5rem;
    color: #fff;
    transition: .3s
}

.puttu-theme {
    background: linear-gradient(135deg, var(--primary-green), #047857);
    box-shadow: 0 8px 25px rgb(5 150 105 / .25)
}

.rava-theme {
    background: linear-gradient(135deg, var(--accent-orange), #dc2626);
    box-shadow: 0 8px 25px rgb(234 88 12 / .25)
}

.flour-theme {
    background: linear-gradient(135deg, var(--accent-blue), #1e40af);
    box-shadow: 0 8px 25px rgb(59 130 246 / .25)
}

.gravy-theme {
    background: linear-gradient(135deg, var(--primary-red), #991b1b);
    box-shadow: 0 8px 25px rgb(185 28 28 / .25)
}

.specialty-theme {
    background: linear-gradient(135deg, var(--accent-purple), #7c3aed);
    box-shadow: 0 8px 25px rgb(139 92 246 / .25)
}

.product-card:hover .product-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgb(0 0 0 / .2)
}

.product-content {
    padding: 1.25rem
}

.product-content h3 {
    margin-bottom: .875rem
}

.product-content p {
    color: var(--text-gray);
    margin-bottom: 1.25rem;
    line-height: 1.6;
    font-size: .9rem
}

.product-features {
    margin-bottom: 1.25rem
}

.product-features li {
    display: flex;
    align-items: center;
    gap: .5rem;
    margin-bottom: .4rem;
    color: var(--text-gray);
    font-size: .85rem
}

.product-features li i {
    font-size: .75rem
}

.product-link {
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 600;
    font-size: .9rem;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    transition: .3s
}

.product-card:first-child .product-link:hover {
    color: #047857
}

.product-card:nth-child(2) .product-link:hover {
    color: #1d4ed8
}

.product-card:nth-child(3) .product-link:hover {
    color: #c2410c
}

.product-link:hover {
    gap: .75rem
}

.about-section {
    background: var(--white);
    padding: 4rem 0;
    flex-direction: column !important;
    width: 100%;
    max-width: 1200px;
    gap: 0;
    margin: 0 auto;
}

.about-container {
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-items: center;
}

.about-section .about-achievements,
.about-section .about-content {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto 2rem;
    box-sizing: border-box
}

.about-section .about-achievements {
    margin-bottom: 0;
    margin-top: 0
}

.about-section .achievement-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem
}

.about-content h2 {
    font-size: 2.25rem;
    margin-bottom: 1.25rem;
    color: var(--text-dark)
}

.about-content p {
    color: var(--text-gray);
    margin-bottom: 1.25rem;
    line-height: 1.7;
    font-size: .95rem
}

.about-achievements {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center
}

.achievement-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-bottom: 1.25rem;
}

.achievement-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--white);
    border-radius: 12px;
    border: 1px solid var(--border-light);
    box-shadow: 0 3px 15px rgb(0 0 0 / .08);
    transition: .3s cubic-bezier(.4, 0, .2, 1);
    overflow: hidden
}

.achievement-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    transition: transform .3s
}

.achievement-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgb(0 0 0 / .15)
}

.achievement-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
    flex-shrink: 0
}

.achievement-content {
    flex: 1
}

.achievement-number {
    font-size: 1.5rem;
    font-weight: 700;
    display: block;
    margin-bottom: .25rem
}

.achievement-label {
    font-weight: 600;
    font-size: .9rem;
    color: var(--text-dark);
    margin-bottom: .25rem
}

.achievement-desc {
    font-size: .8rem;
    color: var(--text-gray);
    margin: 0;
    line-height: 1.4
}

.variety-theme::before {
    background: linear-gradient(90deg, var(--primary-green), #047857)
}

.variety-theme .achievement-icon {
    background: linear-gradient(135deg, var(--primary-green), #047857)
}

.customer-theme::before {
    background: linear-gradient(90deg, var(--accent-blue), #1e40af)
}

.customer-theme .achievement-icon {
    background: linear-gradient(135deg, var(--accent-blue), #1e40af)
}

.quality-theme::before {
    background: linear-gradient(90deg, var(--accent-orange), #dc2626)
}

.quality-theme .achievement-icon {
    background: linear-gradient(135deg, var(--accent-orange), #dc2626)
}

.about-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap
}

.story-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark)
}

.story-content p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.1rem
}

.story-container {
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center
}

.story-image img {
    width: 100%;
    height: auto;
    border-radius: 15px
}

.stats-section {
    background: var(--primary-green);
    color: var(--white);
    padding: 4rem 0
}

.stats-container {
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem
}

.stat-item {
    padding: 1.5rem
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    display: block;
    margin-bottom: .5rem
}

.stat-label {
    font-size: 1.1rem;
    opacity: .9
}

.certifications-section {
    background: var(--bg-cream);
    padding: 5rem 0
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem
}

.certification-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: .3s
}

.certification-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--white);
    font-size: 1.5rem;
    transition: .3s;
    box-shadow: 0 4px 12px rgb(0 0 0 / .1)
}

.certification-card:first-child .certification-icon {
    background: linear-gradient(135deg, var(--primary-green), #10b981);
    box-shadow: 0 4px 12px rgb(5 150 105 / .3)
}

.certification-card:nth-child(2) .certification-icon {
    background: linear-gradient(135deg, var(--accent-blue), #1d4ed8);
    box-shadow: 0 4px 12px rgb(59 130 246 / .3)
}

.certification-card:nth-child(3) .certification-icon {
    background: linear-gradient(135deg, var(--accent-orange), #c2410c);
    box-shadow: 0 4px 12px rgb(234 88 12 / .3)
}

.certification-card:nth-child(4) .certification-icon {
    background: linear-gradient(135deg, var(--accent-purple), #7c3aed);
    box-shadow: 0 4px 12px rgb(139 92 246 / .3)
}

.certification-card:hover .certification-icon {
    transform: scale(1.15) rotate(-5deg);
    box-shadow: 0 8px 20px rgb(0 0 0 / .2)
}

.certification-card h3 {
    font-size: 1.2rem;
    margin-bottom: .5rem;
    color: var(--text-dark)
}

.team-container {
    margin: 0 auto;
    padding: 0 2rem
}

.team-message {
    background: var(--bg-cream);
    padding: 3rem;
    border-radius: 20px;
    margin-top: 3rem
}

.team-message::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 4rem;
    color: var(--primary-red)
}

.team-message p {
    font-size: 1.3rem;
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 2rem;
    font-style: italic
}

.team-signature {
    font-weight: 600;
    color: var(--primary-red);
    font-size: 1.1rem
}

@media (max-width:768px) {
    .story-container {
        grid-template-columns: 1fr;
        gap: 2rem
    }

    .stats-container {
        grid-template-columns: 1fr 1fr
    }

    .story-content h2 {
        font-size: 2rem
    }
}

.contact-section-get-in-touch {
    background: linear-gradient(135deg, #f8fafc 0, #e2e8f0 100%);
    padding: 5rem 0
}

.section-header-get-in-touch {
    text-align: center;
    margin-bottom: 4rem
}

.section-header-get-in-touch h2 {
    font-size: 2.8rem;
    color: #1e293b;
    margin-bottom: 1.5rem
}

.section-header-get-in-touch h2 span {
    color: #b91c1c
}

.section-header-get-in-touch p {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7
}

.location-card-span-three {
    grid-column: span 3
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: .8s
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0)
}

.about-container,
.certifications-container,
.contact-content,
.footer-container,
.hero-container,
.page-header-content,
.section-container,
.stats-container,
.story-container,
.team-container,
.trust-container,
.values-container {
    width: 100%;
    max-width: 1200px
}

.achievement-grid,
.category-grid,
.certifications-grid,
.contact-grid,
.faq-grid,
.footer-container,
.gallery-grid,
.products-grid,
.recipes-grid,
.stats-container,
.tips-grid,
.trust-container,
.values-grid {
    width: 100%;
    max-width: 1200px;
}

.carousel-container,
.hero-carousel {
    width: 100%;
    max-width: 100%;
    overflow: hidden
}

.carousel-slide {
    width: 100%;
    min-width: 100%;
    flex-shrink: 0
}

@media (max-width:480px) {
    .stats-container {
        grid-template-columns: 1fr
    }

    .contact-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem
    }

    .location-card,
    .location-card-span-three {
        grid-column: span 1 !important
    }

    .about-container,
    .footer-container,
    .hero-container,
    .nav-container,
    .section-container,
    .story-container {
        padding-left: 1rem;
        padding-right: 1rem
    }

    .hero-buttons {
        width: 100%;
        justify-content: center;
        gap: .5rem;
        flex-direction: row
    }

    .btn-primary,
    .btn-secondary {
        flex: 1;
        max-width: 140px;
        justify-content: center;
        padding: .6rem 1rem;
        font-size: .7rem;
        text-align: center
    }

    .hero-carousel {
        height: 300px;
        margin: 0 auto;
        max-width: 100%
    }

    .carousel-nav {
        width: 35px;
        height: 35px;
        font-size: 1rem
    }

    .carousel-prev {
        left: 10px
    }

    .carousel-next {
        right: 10px
    }

    .hero-content h1 {
        font-size: 1.75rem;
        line-height: 1.2;
        word-wrap: break-word
    }

    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.5
    }

    .trust-container {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 1rem
    }

    .trust-item {
        padding: 1.25rem;
        margin: 0 auto;
        max-width: 300px
    }
}

.hero-swiper {
    width: 100%;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-hover)
}

.hero-swiper .swiper-slide {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center
}

.hero-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block
}

.hero-swiper .swiper-button-next,
.hero-swiper .swiper-button-prev {
    background: rgb(255 255 255 / .9);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    color: var(--text-dark);
    box-shadow: 0 2px 8px rgb(0 0 0 / .15);
    transition: .3s
}

.hero-swiper .swiper-button-next:after,
.hero-swiper .swiper-button-prev:after {
    font-size: 18px;
    font-weight: 600
}

.hero-swiper .swiper-button-next:hover,
.hero-swiper .swiper-button-prev:hover {
    background: #fff;
    box-shadow: 0 4px 12px rgb(0 0 0 / .2);
    transform: scale(1.05)
}

.hero-swiper .swiper-pagination {
    bottom: 20px
}

.hero-swiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgb(255 255 255 / .7);
    border: 2px solid;
    opacity: 1;
    transition: .3s
}

.hero-swiper .swiper-pagination-bullet-active {
    background: #fff;
    border-color: #fff;
    transform: scale(1.2)
}

@media (max-width:768px) {
    .hero-swiper {
        height: 300px
    }

    .hero-swiper .swiper-button-next,
    .hero-swiper .swiper-button-prev {
        width: 40px;
        height: 40px
    }

    .hero-swiper .swiper-button-next:after,
    .hero-swiper .swiper-button-prev:after {
        font-size: 16px
    }

    .hero-swiper .swiper-pagination {
        bottom: 15px
    }

    .hero-swiper .swiper-pagination-bullet {
        width: 10px;
        height: 10px
    }
}

/* Reduce header/top-bar height on mobile to free up vertical space */
@media (max-width: 768px) {
    .top-bar {
        padding: 0 0 0.15rem 0; /* tighter */
        font-size: 0.82rem;
    }

    .top-bar-container {
        padding: 0 1rem;
    }

    .top-bar .social-links a {
        width: 28px;
        height: 28px;
        font-size: 0.78rem;
    }

    .nav-inner {
        padding: .45rem 1rem; /* reduce vertical padding */
    }

    .logo img {
        height: 46px; /* slightly smaller logo */
    }

    .mobile-menu-toggle {
        font-size: 1.25rem;
    }
}