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

:root {
    --terracotta: #C1603D;
    --terracotta-dark: #9A3B1F;
    --cream: #FDF6EC;
    --cream-dark: #F5EBDA;
    --gold: #C9952B;
    --gold-light: #E8C76A;
    --olive: #5B6F4A;
    --olive-dark: #3D4F2F;
    --brown: #3E2723;
    --brown-light: #5D4037;
    --warm-white: #FEFAF4;
    --text: #3E2E22;
    --text-light: #7A6A5E;
    --masala-red: #B33A2B;
    --oil-amber: #C48E1A;
    --atta-wheat: #A68B5E;
    --whatsapp: #25D366;
    --whatsapp-dark: #1DA851;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    color: var(--text);
    background: var(--warm-white);
    overflow-x: hidden;
}

/* ═══════════════════ NAVBAR ═══════════════════ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 5%;
    z-index: 1000;
    transition: all 0.4s ease;
}

.navbar.scrolled {
    background: rgba(253, 246, 236, 0.97);
    box-shadow: 0 1px 20px rgba(62, 39, 35, 0.08);
    padding: 0.7rem 5%;
    backdrop-filter: blur(8px);
}

.nav-brand {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.9rem;
    font-weight: 600;
    color: var(--cream);
    text-decoration: none;
    transition: color 0.4s;
    letter-spacing: 0.5px;
}

.navbar.scrolled .nav-brand {
    color: var(--terracotta);
}

.nav-links {
    display: flex;
    gap: 2.2rem;
}

.nav-links a {
    text-decoration: none;
    color: rgba(255,255,255,0.9);
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    position: relative;
    transition: color 0.4s;
}

.navbar.scrolled .nav-links a {
    color: var(--text);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s;
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--cream);
    border-radius: 2px;
    transition: background 0.4s;
}

.navbar.scrolled .nav-toggle span {
    background: var(--text);
}

/* ═══════════════════ HERO ═══════════════════ */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 650px;
    background: url("./cover.png") center / cover no-repeat;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        160deg,
        rgba(62, 35, 20, 0.6) 0%,
        rgba(62, 35, 20, 0.2) 40%,
        rgba(62, 35, 20, 0.65) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
    padding: 2rem;
    max-width: 800px;
}

.hero-pre {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.15rem;
    opacity: 0.8;
    margin-bottom: 0.8rem;
    letter-spacing: 2px;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3.2rem, 9vw, 6.5rem);
    font-weight: 700;
    line-height: 1;
    margin-bottom: 1rem;
    text-shadow: 2px 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-divider {
    width: 80px;
    height: 3px;
    background: var(--gold);
    margin: 0 auto 1.2rem;
    border-radius: 2px;
}

.hero-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.2rem, 3vw, 1.7rem);
    font-style: italic;
    margin-bottom: 0.5rem;
    opacity: 0.95;
}

.hero-sub {
    font-size: clamp(0.8rem, 1.5vw, 0.95rem);
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 2.5rem;
    opacity: 0.75;
    font-weight: 300;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2.8rem;
    background: var(--terracotta);
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 3px;
    transition: all 0.3s ease;
    border: 2px solid var(--terracotta);
}

.btn-primary:hover {
    background: transparent;
    color: white;
    border-color: white;
    transform: translateY(-2px);
}

.hero-scroll-hint {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.hero-scroll-hint span {
    color: rgba(255,255,255,0.5);
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.7); }
    50% { opacity: 1; transform: scaleY(1); }
}

/* ═══════════════════ TAGLINE BANNER ═══════════════════ */
.tagline-banner {
    background: var(--brown);
    padding: 1.2rem 5%;
    overflow: hidden;
}

.tagline-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.tagline-inner span {
    color: var(--cream);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    font-style: italic;
    letter-spacing: 1.5px;
    white-space: nowrap;
}

.tagline-dot {
    width: 5px !important;
    height: 5px;
    background: var(--gold) !important;
    border-radius: 50%;
    display: inline-block;
    font-size: 0 !important;
}

/* ═══════════════════ SECTIONS ═══════════════════ */
.section {
    padding: 6rem 5%;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--brown);
    text-align: center;
    margin-bottom: 0.6rem;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1rem;
    max-width: 550px;
    margin: 0 auto 3rem;
    line-height: 1.7;
}

/* ═══════════════════ CATEGORY TABS ═══════════════════ */
.category-tabs {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.cat-tab {
    padding: 0.65rem 1.8rem;
    background: transparent;
    border: 1.5px solid var(--cream-dark);
    color: var(--text-light);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cat-tab:hover {
    border-color: var(--terracotta);
    color: var(--terracotta);
}

.cat-tab.active {
    background: var(--terracotta);
    border-color: var(--terracotta);
    color: white;
}

/* ═══════════════════ PRODUCTS GRID ═══════════════════ */
.products-section {
    background: var(--cream);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1250px;
    margin: 0 auto;
}

.product-card {
    background: white;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(62, 39, 35, 0.05);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    position: relative;
}

.product-card.hidden {
    display: none;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 36px rgba(62, 39, 35, 0.1);
}

.product-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.3rem 0.9rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 50px;
    z-index: 2;
    color: white;
}

.pickle-badge { background: var(--olive); }
.oil-badge { background: var(--oil-amber); }
.atta-badge { background: var(--atta-wheat); }
.masala-badge { background: var(--masala-red); }

.product-img-wrap {
    width: 100%;
    height: 260px;
    overflow: hidden;
    background: #f8f2ea;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.product-img-wrap img {
    width: 65%;
    height: auto;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.product-card:hover .product-img-wrap img {
    transform: scale(1.06);
}

.product-img-wrap.no-img {
    flex-direction: column;
    gap: 0.6rem;
}

.oil-bg { background: linear-gradient(135deg, #FFF3D6 0%, #F5E1A4 100%); }
.atta-bg { background: linear-gradient(135deg, #F5EDDF 0%, #E8D9BF 100%); }
.masala-bg { background: linear-gradient(135deg, #FCEADE 0%, #F5D0B8 100%); }

.product-icon {
    font-size: 3.5rem;
    line-height: 1;
}

.product-label {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--brown);
}

.product-info {
    padding: 1.5rem 1.6rem 1.8rem;
}

.product-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--brown);
    margin-bottom: 0.6rem;
    line-height: 1.3;
}

.product-info p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.price {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--terracotta);
    display: block;
    padding-top: 1rem;
    border-top: 1px solid #f0ebe4;
}

.price small {
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--text-light);
}

/* ═══════════════════ STORY ═══════════════════ */
.story-section {
    background: var(--warm-white);
}

.story-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    max-width: 1100px;
    margin: 0 auto;
    align-items: center;
}

.story-image {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(62, 39, 35, 0.12);
    aspect-ratio: 3/4;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.story-pre {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    color: var(--terracotta);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    letter-spacing: 1.5px;
}

.story-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    color: var(--brown);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.story-text p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.story-stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--cream-dark);
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--terracotta);
}

.stat-label {
    font-size: 0.82rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ═══════════════════ GALLERY ═══════════════════ */
.gallery-section {
    background: var(--cream);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 240px;
    gap: 1rem;
    max-width: 1100px;
    margin: 0 auto;
}

.gallery-item {
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.gallery-item.gallery-tall {
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

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

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(62,35,20,0.3), transparent 50%);
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-item:hover::after {
    opacity: 1;
}

/* ═══════════════════ CONTACT & INQUIRY ═══════════════════ */
.contact-section {
    background: var(--warm-white);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    max-width: 1050px;
    margin: 0 auto;
    align-items: start;
}

.contact-section--info-only .contact-wrapper {
    grid-template-columns: 1fr;
    max-width: 720px;
}

.company-card {
    background: linear-gradient(135deg, var(--cream) 0%, #fff 100%);
    border-radius: 16px;
    padding: 1.6rem 1.8rem;
    box-shadow: 0 4px 24px rgba(62, 39, 35, 0.06);
    text-align: center;
    border: 1px solid rgba(62, 39, 35, 0.08);
}

.company-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    color: var(--brown);
    margin: 0;
    letter-spacing: 0.3px;
}

.info-card p a {
    color: var(--brown);
    text-decoration: none;
    font-weight: 600;
}

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

.info-card--address {
    align-items: flex-start;
}

.info-card--address p {
    line-height: 1.65;
}

.info-card--address .address-meta {
    margin-top: 0.6rem;
    font-size: 0.78rem;
    color: var(--text-light);
    opacity: 0.8;
    font-style: italic;
}

/* Inquiry Form */
.inquiry-form-wrap {
    background: white;
    border-radius: 16px;
    padding: 2.5rem 2.5rem 3rem;
    box-shadow: 0 4px 24px rgba(62, 39, 35, 0.06);
}

.inquiry-form-wrap h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--brown);
    margin-bottom: 1.8rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.2rem;
}

.form-group label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.4rem;
    letter-spacing: 0.3px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1.5px solid var(--cream-dark);
    border-radius: 8px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.92rem;
    color: var(--text);
    background: var(--warm-white);
    transition: border-color 0.3s, box-shadow 0.3s;
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--terracotta);
    box-shadow: 0 0 0 3px rgba(193, 96, 61, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #bfb3a8;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237A6A5E' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background: var(--terracotta);
    color: white;
    border: none;
    border-radius: 8px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
    min-height: 50px;
}

.btn-submit:hover:not(:disabled) {
    background: var(--terracotta-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(193, 96, 61, 0.3);
}

.btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.btn-loader {
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 2.5px solid rgba(255,255,255,0.35);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
}

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

.form-alert {
    padding: 0.9rem 1.1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1.3rem;
}

.form-alert-success {
    background: #E8F5EC;
    color: #1B5E20;
    border: 1px solid #B5E0BF;
}

.form-alert-error {
    background: #FDEBEB;
    color: #B33A2B;
    border: 1px solid #F5D0D0;
}

/* WhatsApp Card & Contact Info */
.contact-info-wrap {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.whatsapp-card {
    background: white;
    border-radius: 16px;
    padding: 2.2rem 2rem;
    text-align: center;
    box-shadow: 0 4px 24px rgba(62, 39, 35, 0.06);
    border: 2px solid rgba(37, 211, 102, 0.15);
}

.wa-icon-wrap {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
}

.wa-icon {
    width: 34px;
    height: 34px;
    color: white;
}

.whatsapp-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--brown);
    margin-bottom: 0.6rem;
}

.whatsapp-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.9rem 2rem;
    background: var(--whatsapp);
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-whatsapp svg {
    flex-shrink: 0;
}

.btn-whatsapp:hover {
    background: var(--whatsapp-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

/* Info Cards */
.info-cards {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.info-card {
    background: white;
    border-radius: 12px;
    padding: 1.2rem 1.4rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 2px 12px rgba(62, 39, 35, 0.04);
    transition: transform 0.3s;
}

.info-card:hover {
    transform: translateX(4px);
}

.info-icon {
    font-size: 1.5rem;
    width: 44px;
    height: 44px;
    background: var(--cream);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 0.95rem;
    color: var(--brown);
    margin-bottom: 0.15rem;
}

.info-card p {
    color: var(--text-light);
    font-size: 0.88rem;
}

/* ═══════════════════ FLOATING WHATSAPP ═══════════════════ */
.whatsapp-float {
    position: fixed;
    bottom: 1.8rem;
    right: 1.8rem;
    width: 60px;
    height: 60px;
    background: var(--whatsapp);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 18px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
    flex-shrink: 0;
}

/* ═══════════════════ FOOTER ═══════════════════ */
.footer {
    background: var(--brown);
    color: rgba(255, 255, 255, 0.75);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto;
    padding: 4rem 5% 3rem;
}

.footer-brand h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    color: white;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.footer-brand p {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    opacity: 0.6;
    font-size: 1rem;
}

.footer-col h4 {
    font-size: 0.8rem;
    color: var(--gold);
    margin-bottom: 1.3rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.footer-col a {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    margin-bottom: 0.7rem;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--gold-light);
}

.footer-bottom {
    text-align: center;
    padding: 1.5rem 5%;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.82rem;
    opacity: 0.5;
}

/* ═══════════════════ ANIMATIONS ═══════════════════ */
.fade-in {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.products-grid .product-card.fade-in:nth-child(2) { transition-delay: 0.05s; }
.products-grid .product-card.fade-in:nth-child(3) { transition-delay: 0.1s; }
.products-grid .product-card.fade-in:nth-child(4) { transition-delay: 0.15s; }

/* ═══════════════════ RESPONSIVE ═══════════════════ */
@media (max-width: 900px) {
    .hero {
        background-attachment: scroll;
    }

    .story-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .story-image {
        aspect-ratio: 4/3;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 200px;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .story-stats {
        justify-content: center;
    }
}

@media (max-width: 680px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(253, 246, 236, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 1rem 0;
        text-align: center;
        gap: 0;
        box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links a {
        color: var(--text) !important;
        padding: 0.9rem;
        font-size: 0.85rem;
    }

    .nav-toggle {
        display: flex;
    }

    .section {
        padding: 4rem 4%;
    }

    .products-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .product-img-wrap {
        height: 180px;
    }

    .product-info {
        padding: 1rem 1.1rem 1.3rem;
    }

    .product-info h3 {
        font-size: 1rem;
    }

    .product-info p {
        font-size: 0.82rem;
        margin-bottom: 0.8rem;
    }

    .price {
        font-size: 1.05rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 170px;
    }

    .gallery-item.gallery-tall {
        grid-row: span 1;
    }

    .tagline-inner {
        gap: 1rem;
    }

    .tagline-inner span {
        font-size: 0.85rem;
    }

    .category-tabs {
        gap: 0.4rem;
    }

    .cat-tab {
        padding: 0.5rem 1.2rem;
        font-size: 0.8rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .inquiry-form-wrap {
        padding: 1.8rem 1.5rem 2rem;
    }

    .whatsapp-float {
        bottom: 1.2rem;
        right: 1.2rem;
        width: 54px;
        height: 54px;
    }

    .whatsapp-float svg {
        width: 24px;
        height: 24px;
    }
}

@media (max-width: 400px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
}
