/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Great+Vibes&display=swap');

/* CSS Variables for Premium Theme */
:root {
    --dark-green: #8A151B;
    /* Deep Red */
    --darker-green: #5C0B0F;
    /* Darker Red for Footer */
    --light-bg: #FDFBF7;
    --text-main: #333333;
    --text-light: #FDFBF7;
    --accent-gold: #D4AF37;
    --accent-green: #4A7C59;
    --accent-red: #E30613;
    /* For original logo compatibility/badges */
    --border-radius: 4px;
    --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', sans-serif;
    color: var(--text-main);
    background-color: var(--light-bg);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    color: var(--dark-green);
}

.script-text {
    font-family: 'Great Vibes', cursive;
    color: var(--accent-gold);
    font-size: 3rem;
    font-weight: 400;
    margin-bottom: -15px;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Reusable Components */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 12px 35px;
    border-radius: 0;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    border: 1px solid transparent;
}

.btn-primary {
    background-color: transparent;
    color: var(--text-light);
    border: 1px solid var(--text-light);
}

.btn-primary:hover {
    background-color: var(--text-light);
    color: var(--dark-green);
}

.btn-secondary {
    background-color: var(--dark-green);
    color: var(--text-light);
    border: 1px solid var(--dark-green);
}

.btn-secondary:hover {
    background-color: transparent;
    color: var(--dark-green);
}

.btn-gold {
    background-color: var(--accent-gold);
    color: var(--dark-green);
}

.btn-gold:hover {
    background-color: transparent;
    border-color: var(--accent-gold);
    color: var(--accent-gold);
}

.section-title {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 3rem;
    position: relative;
}

.section-padding {
    padding: 100px 0;
}

.dark-section {
    background-color: var(--dark-green);
    color: var(--text-light);
}

.dark-section h1,
.dark-section h2,
.dark-section h3 {
    color: var(--text-light);
}

/* Header & Navbar */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: background-color 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), border-color 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

header.scrolled,
header.menu-active {
    background-color: rgba(138, 21, 27, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 0;
    transition: padding 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

header.scrolled .navbar,
header.menu-active .navbar {
    padding: 12px 0;
}

header.scrolled .logo img,
header.menu-active .logo img {
    height: 52px;
    padding: 4px 16px;
}

/* First section padding offsets for fixed header */
body > section:first-of-type {
    padding-top: 170px !important;
}

body > section.hero:first-of-type {
    padding-top: 100px !important;
}

.logo img {
    height: 60px;
    background: white;
    /* Needs white bg since logo has colored text */
    padding: 5px 20px;
    border-radius: 30px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.logo:hover img {
    transform: scale(1.03);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.25);
    border-color: var(--accent-gold);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-links li a {
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
    position: relative;
    padding-bottom: 5px;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background-color: var(--accent-gold);
    transition: var(--transition);
}

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

.nav-links li a:hover,
.nav-links li a.active {
    color: var(--accent-gold);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    gap: 6px;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--text-light);
    border-radius: 2px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background-color: var(--dark-green);
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    z-index: 2;
}

.hero-text {
    color: var(--text-light);
}

.hero-text h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--text-light);
}

.hero-text p {
    font-size: 1.1rem;
    font-weight: 300;
    margin-bottom: 40px;
    letter-spacing: 1px;
    color: #e0e0e0;
}

.hero-image {
    position: relative;
    text-align: center;
}

.hero-image img {
    max-height: 600px;
    margin: 0 auto;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.5));
}

/* Floating Spices (Chilly, Coriander, Manjal) */
.leaf {
    position: absolute;
    z-index: 1;
    opacity: 0.9;
    font-size: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(0 5px 10px rgba(0,0,0,0.2));
}

.leaf-1 { top: 15%; left: 8%; animation: float 6s ease-in-out infinite; transform: rotate(15deg); }
.leaf-1::before { content: "🌶️"; } /* Chilly */

.leaf-2 { top: 60%; left: 10%; font-size: 65px; animation: float 8s ease-in-out infinite reverse; transform: rotate(-20deg); }
.leaf-2::before { content: "🌿"; } /* Coriander */

.leaf-3 { top: 25%; right: 12%; font-size: 40px; animation: float 5s ease-in-out infinite; transform: rotate(45deg); filter: blur(1px); }
.leaf-3::before { 
    content: ""; 
    display: block; 
    width: 40px; 
    height: 40px; 
    background-color: #FFC300; /* Manjal / Turmeric Powder */
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; 
}

.leaf-4 { bottom: 25%; right: 10%; font-size: 55px; animation: float 7s ease-in-out infinite reverse; transform: rotate(-15deg); }
.leaf-4::before { content: "🧄"; } /* Garlic */

@keyframes float {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(15deg);
    }

    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

/* Brush Stroke Edge (Torn Paper Effect) */
.brush-edge {
    width: 100%;
    height: 50px;
    background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1200 50" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M0,50 L0,0 C100,20 200,-10 300,10 C400,30 500,0 600,20 C700,40 800,10 900,30 C1000,50 1100,0 1200,20 L1200,50 Z" fill="%23FDFBF7"/></svg>');
    background-size: cover;
    background-position: center;
    margin-top: -49px;
    position: relative;
    z-index: 10;
}

.brush-edge-dark {
    width: 100%;
    height: 50px;
    background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1200 50" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M0,50 L0,0 C100,20 200,-10 300,10 C400,30 500,0 600,20 C700,40 800,10 900,30 C1000,50 1100,0 1200,20 L1200,50 Z" fill="%238A151B"/></svg>');
    background-size: cover;
    background-position: center;
    margin-top: -49px;
    position: relative;
    z-index: 10;
}

/* Product Cards */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.product-card {
    background: #fff;
    border: 1px solid #eaeaea;
    transition: var(--transition);
    position: relative;
    padding-bottom: 20px;
}

.product-card:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    transform: translateY(-5px);
}

.product-card .img-container {
    height: 350px;
    overflow: hidden;
    padding: 20px;
    background: #fcfcfc;
}

.product-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.6s ease;
}

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

.product-info {
    padding: 20px 25px;
    text-align: center;
}

.product-info h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    font-family: 'Playfair Display', serif;
    color: var(--dark-green);
}

.product-info p {
    font-size: 0.9rem;
    color: #666;
    font-weight: 300;
}

.product-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--accent-green);
    color: var(--text-light);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
    z-index: 2;
    text-align: center;
    line-height: 1.1;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Feature/Value Items */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.feature-item {
    text-align: center;
    padding: 40px 20px;
    background: transparent;
    border: 1px solid #eaeaea;
    transition: var(--transition);
}

.feature-item:hover {
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--accent-green);
    margin-bottom: 20px;
}

/* Premium Feature Cards */
.feature-card-premium {
    background: #fff;
    border-radius: 8px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.04);
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.feature-card-premium:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    border-color: var(--accent-gold);
}

.feature-icon-wrapper {
    width: 80px;
    height: 80px;
    background: rgba(74, 124, 89, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    position: relative;
    transition: all 0.5s ease;
}

.feature-card-premium:hover .feature-icon-wrapper {
    background: var(--accent-green);
    transform: scale(1.1);
}

.feature-icon-premium {
    font-size: 2rem;
    color: var(--accent-green);
    transition: all 0.5s ease;
    z-index: 2;
}

.feature-card-premium:hover .feature-icon-premium {
    color: #fff;
    transform: rotateY(180deg);
}

/* Premium Product Cards */
.product-card-premium {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #f0f0f0;
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    padding-bottom: 30px;
    overflow: hidden;
}

.product-card-premium:hover {
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    transform: translateY(-12px);
    border-color: var(--accent-gold);
}

.product-card-premium .img-container {
    height: 350px;
    padding: 30px;
    background: radial-gradient(circle, #fff, #f8f8f8);
    position: relative;
}

.product-card-premium img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
    filter: drop-shadow(0 15px 25px rgba(0,0,0,0.1));
}

.product-card-premium:hover img {
    transform: scale(1.15) translateY(-10px);
}

.add-to-cart-btn {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-gold);
    color: var(--dark-green);
    border: none;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: bold;
    opacity: 0;
    transition: all 0.4s ease;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
    white-space: nowrap;
}

.product-card-premium:hover .add-to-cart-btn {
    bottom: 20px;
    opacity: 1;
}

.add-to-cart-btn:hover {
    background: var(--dark-green);
    color: #fff;
}

/* Testimonial Premium */
.testimonial-premium-section {
    background-color: #fbf9f4;
    position: relative;
    overflow: hidden;
}

.testimonial-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Playfair Display', serif;
    font-size: 30rem;
    color: rgba(212, 175, 55, 0.05);
    line-height: 0;
    pointer-events: none;
    z-index: 0;
}

/* Footer */
footer {
    background-color: var(--darker-green);
    color: #a0a0a0;
    padding: 80px 0 20px;
    border-top: 1px solid #2a3d36;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 60px;
}

.footer-logo img {
    max-width: 180px;
    margin-bottom: 25px;
    background: white;
    padding: 10px 15px;
    border-radius: 2px;
}

.footer-col h4 {
    color: var(--text-light);
    margin-bottom: 25px;
    font-size: 1.1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: 'Lato', sans-serif;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #a0a0a0;
    font-weight: 300;
}

.footer-col ul li a:hover {
    color: var(--accent-gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.85rem;
    font-weight: 300;
}

/* Contact Details */
.contact-detail {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.contact-detail i {
    font-size: 1.2rem;
    margin-right: 15px;
    color: var(--accent-gold);
    margin-top: 5px;
}

.form-control {
    width: 100%;
    padding: 15px;
    border: 1px solid #ccc;
    background: transparent;
    font-family: 'Lato', sans-serif;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--dark-green);
}

/* Step-by-Step Timeline */
.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 0;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 2px;
    background-color: var(--accent-gold);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    right: -8px;
    background-color: var(--light-bg);
    border: 3px solid var(--accent-gold);
    top: 32px;
    border-radius: 50%;
    z-index: 1;
    animation: pulseGold 2s infinite;
}

@keyframes pulseGold {
    0% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(212, 175, 55, 0); }
    100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}

.timeline-left {
    left: 0;
}

.timeline-right {
    left: 50%;
}

.timeline-right::after {
    left: -8px;
}

.timeline-content {
    padding: 30px;
    background: #fff;
    position: relative;
    border-radius: 4px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border-top: 3px solid var(--accent-green);
    transition: var(--transition);
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.timeline-content:hover h3 i {
    transform: rotate(15deg) scale(1.2);
}

.timeline-content h3 {
    color: var(--dark-green);
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.step-number {
    position: absolute;
    top: -20px;
    background: var(--dark-green);
    color: var(--text-light);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.timeline-left .step-number {
    right: 30px;
}

.timeline-right .step-number {
    left: 30px;
}

/* ================================================
   RESPONSIVE — Tablet (max 992px)
   ================================================ */
@media (max-width: 992px) {

    .section-padding {
        padding: 70px 0;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .script-text {
        font-size: 2.4rem;
    }

    /* About page 2-col grid → single col */
    [style*="grid-template-columns: 1fr 1fr"] {
        display: block !important;
    }

    /* Contact page 2-col grid → single col */
    [style*="grid-template-columns: 1fr 1fr"] > div {
        margin-bottom: 40px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-text h1 {
        font-size: 3.5rem;
    }

    /* Quality 3-col grid → 2-col */
    [style*="grid-template-columns: repeat(3, 1fr)"] {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

/* ================================================
   RESPONSIVE — Mobile (max 768px)
   ================================================ */
@media (max-width: 768px) {

    /* ---------- BASE ---------- */
    .section-padding {
        padding: 55px 0;
    }

    body > section:first-of-type {
        padding-top: 125px !important;
    }

    body > section.hero:first-of-type {
        padding-top: 80px !important;
    }

    .section-title {
        font-size: 1.9rem;
        margin-bottom: 2rem;
    }

    .script-text {
        font-size: 2rem;
        margin-bottom: -10px;
    }

    h1 { font-size: 2rem !important; }
    h2 { font-size: 1.7rem !important; }
    h3 { font-size: 1.2rem !important; }

    .btn {
        padding: 10px 24px;
        font-size: 0.82rem;
        letter-spacing: 1.5px;
    }

    /* ---------- NAVBAR ---------- */
    .mobile-menu-btn {
        display: flex;
    }

    .nav-links {
        display: flex;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: rgba(138, 21, 27, 0.96);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        flex-direction: column;
        padding: 15px 0;
        gap: 0;
        text-align: center;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-15px);
        transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.4s;
        pointer-events: none;
    }

    .nav-links.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
    }

    .nav-links li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        opacity: 0;
        transform: translateY(-10px);
        transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .nav-links li:last-child {
        border-bottom: none;
    }

    .nav-links.active li {
        opacity: 1;
        transform: translateY(0);
    }

    .nav-links.active li:nth-child(1) { transition-delay: 0.05s; }
    .nav-links.active li:nth-child(2) { transition-delay: 0.1s; }
    .nav-links.active li:nth-child(3) { transition-delay: 0.15s; }
    .nav-links.active li:nth-child(4) { transition-delay: 0.2s; }
    .nav-links.active li:nth-child(5) { transition-delay: 0.25s; }
    .nav-links.active li:nth-child(6) { transition-delay: 0.3s; }

    .nav-links li a {
        display: block;
        padding: 16px 20px;
        font-size: 1rem;
        font-weight: 500;
        letter-spacing: 1.5px;
        color: var(--text-light);
        transition: color 0.3s ease, background-color 0.3s ease;
    }

    .nav-links li a::after {
        display: none;
    }

    .nav-links li a:hover,
    .nav-links li a.active {
        color: var(--accent-gold);
        background-color: rgba(255, 255, 255, 0.03);
    }

    .navbar {
        padding: 12px 0 !important;
    }

    header.scrolled .logo img,
    header.menu-active .logo img,
    .logo img {
        height: 44px !important;
        padding: 4px 14px !important;
        border-radius: 22px !important;
    }

    /* ---------- HERO ---------- */
    .hero {
        min-height: 75vh;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 60px 0 40px;
    }

    .hero-text h1 {
        font-size: 2.2rem !important;
        line-height: 1.2;
        margin-bottom: 15px;
    }

    .hero-text p {
        font-size: 1rem;
        margin-bottom: 25px;
    }

    /* Stack hero buttons vertically */
    [style*="display: flex; justify-content: center; gap: 20px; flex-wrap: wrap;"] {
        flex-direction: column;
        align-items: center;
        gap: 12px !important;
    }

    .leaf { display: none; }

    /* ---------- FEATURES / CARDS GRIDS ---------- */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-card-premium {
        padding: 30px 20px;
    }

    .product-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    /* ---------- ABOUT PAGE ---------- */
    /* 2-column content blocks → stacked */
    div[style*="grid-template-columns: 1fr 1fr"] {
        display: flex !important;
        flex-direction: column !important;
        gap: 30px !important;
    }

    /* Fix about image offset decoration */
    div[style*="padding-bottom: 20px; padding-right: 20px"] {
        padding-bottom: 15px !important;
        padding-right: 15px !important;
    }

    /* ---------- CONTACT PAGE ---------- */
    div[style*="display: grid; grid-template-columns: 1fr 1fr; gap: 60px;"] {
        display: flex !important;
        flex-direction: column !important;
        gap: 30px !important;
    }

    div[data-aos="fade-left"][style*="background: #fff; padding: 40px;"] {
        padding: 25px !important;
    }

    /* ---------- FOOTER ---------- */
    footer {
        padding: 55px 0 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 35px;
        margin-bottom: 40px;
    }

    .footer-logo img {
        max-width: 150px;
    }

    /* ---------- QUALITY PAGE — 3-col → 1-col ---------- */
    .features-grid[style*="grid-template-columns: repeat(3, 1fr)"] {
        grid-template-columns: 1fr !important;
    }

    [style*="grid-template-columns: repeat(3, 1fr)"] {
        grid-template-columns: 1fr !important;
    }

    /* ---------- TIMELINE (Making Process) ---------- */
    .timeline {
        padding: 20px 0;
    }

    .timeline::after {
        left: 20px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 55px;
        padding-right: 15px;
    }

    .timeline-item::after {
        left: 12px;
        top: 25px;
    }

    .timeline-right {
        left: 0;
    }

    .timeline-left .step-number,
    .timeline-right .step-number {
        left: 10px;
        right: auto;
        top: -15px;
        width: 34px;
        height: 34px;
        font-size: 1rem;
    }

    .timeline-content {
        padding: 20px 18px;
    }

    .timeline-content h3 {
        font-size: 1.1rem;
    }

    /* ---------- TESTIMONIAL SECTION ---------- */
    .testimonial-premium-section .container {
        max-width: 100% !important;
        padding: 0 20px;
    }

    .testimonial-watermark {
        font-size: 15rem;
    }

    /* ---------- PRODUCTS DETAIL PAGE ---------- */
    .product-card .img-container,
    .product-card-premium .img-container {
        height: 240px;
    }

    /* ---------- PAGE HEADER SECTIONS ---------- */
    section.dark-section[style*="text-align: center"] {
        padding: 50px 0 !important;
    }

    /* ---------- ABOUT IMAGE PARALLAX SECTION ---------- */
    section[style*="background-attachment: fixed"] {
        background-attachment: scroll !important;
        height: 300px !important;
    }

    /* ---------- MISC INLINE GRID FIXES ---------- */
    [style*="display: grid;"] {
        display: block !important;
    }

    [style*="display: grid"] > * {
        margin-bottom: 20px;
    }
}

/* ================================================
   RESPONSIVE — Small Mobile (max 480px)
   ================================================ */
@media (max-width: 480px) {

    .container {
        padding: 0 15px;
    }

    .hero-text h1 {
        font-size: 1.8rem !important;
    }

    .script-text {
        font-size: 1.7rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .btn {
        width: 100%;
        display: block;
        text-align: center;
    }

    /* Stack hero CTA buttons */
    [style*="display: flex; justify-content: center; gap: 20px"] {
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 10px !important;
    }

    .feature-card-premium {
        padding: 25px 15px;
    }

    .product-card .img-container,
    .product-card-premium .img-container {
        height: 200px;
    }

    footer {
        padding: 40px 0 15px;
    }

    header.scrolled .logo img,
    header.menu-active .logo img,
    .logo img {
        height: 38px !important;
        padding: 4px 10px !important;
        border-radius: 19px !important;
    }
}

/* ================================================
   ABOUT PAGE COMPONENTS
   ================================================ */

.two-col-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.metric-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.15);
    padding: 40px 20px;
    text-align: center;
    border-radius: 4px;
    transition: var(--transition);
}

.metric-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--accent-gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.metric-number {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--accent-gold);
    line-height: 1;
    margin-bottom: 10px;
}

.metric-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-light);
    font-weight: 300;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.value-card-premium {
    background: #fff;
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 8px;
    padding: 45px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    transition: var(--transition);
}

.value-card-premium:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.12);
    border-color: var(--accent-gold);
}

.value-card-premium .icon-box {
    width: 70px;
    height: 70px;
    background: rgba(74, 124, 89, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--accent-green);
    font-size: 1.8rem;
    transition: var(--transition);
}

.value-card-premium:hover .icon-box {
    background: var(--accent-green);
    color: #fff;
    transform: scale(1.05);
}

.value-card-premium h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--dark-green);
}

.value-card-premium p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
}

@media (max-width: 992px) {
    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .two-col-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .metrics-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .metric-number {
        font-size: 2.8rem;
    }
}

/* ================================================
   INSTAGRAM FEED SECTION
   ================================================ */
.instagram-section {
    background-color: #fff;
    padding: 80px 0;
    text-align: center;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.instagram-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.instagram-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.instagram-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(138, 21, 27, 0.9);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    color: var(--text-light);
    z-index: 2;
}

.instagram-overlay i.fa-instagram {
    font-size: 2.2rem;
    color: var(--accent-gold);
    margin-bottom: 12px;
    transform: scale(0.8);
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.instagram-stats {
    display: flex;
    gap: 20px;
    font-size: 0.95rem;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
}

.instagram-stats span {
    display: flex;
    align-items: center;
    gap: 6px;
}

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

.instagram-item:hover .instagram-overlay {
    opacity: 1;
}

.instagram-item:hover .instagram-overlay i.fa-instagram {
    transform: scale(1);
}

@media (max-width: 992px) {
    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .instagram-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}