/* =========================================================
   MAHALAXMI TRADERS
   FILE 2 : style.css
   ========================================================= */


/* =========================================================
   1. ROOT VARIABLES
   ========================================================= */

:root {

    --green: #173f35;
    --green-light: #245b4c;
    --green-dark: #10342b;

    --cream: #f5ebdd;
    --cream-light: #fcfaf5;

    --gold: #c69a45;
    --gold-light: #e7c77b;

    --white: #ffffff;

    --text: #202522;
    --text-light: #646b66;

    --border: #e5ddd0;

    --shadow:
        0 15px 40px rgba(23, 63, 53, 0.10);

    --radius: 10px;

}


/* =========================================================
   2. RESET
   ========================================================= */

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


html {
    scroll-behavior: smooth;
}


body {
    font-family: "DM Sans", sans-serif;
    background: var(--cream-light);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}


img {
    display: block;
    width: 100%;
}


a {
    color: inherit;
    text-decoration: none;
}


button {
    font-family: inherit;
}


/* =========================================================
   3. COMMON CONTAINER
   ========================================================= */

.container {
    width: min(1180px, 92%);
    margin: auto;
}


/* =========================================================
   4. HEADER
   ========================================================= */

.site-header {

    position: sticky;

    top: 0;

    z-index: 1000;

    background: rgba(252, 250, 245, 0.98);

    border-bottom: 1px solid #e5ddd0;

    backdrop-filter: blur(10px);

    box-shadow:
        0 4px 18px rgba(23, 63, 53, 0.07);

}


/* =========================================================
   MAIN NAVBAR
   ========================================================= */

.navbar {

    min-height: 82px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 25px;

}


/* =========================================================
   LOGO
   ========================================================= */

.logo {
    display: inline-flex !important;
    align-items: center !important;
    gap: 13px !important;
    text-decoration: none !important;
    flex-shrink: 0 !important;
}

.site-header-logo {
    height: 52px !important;
    width: auto !important;
    max-width: 130px !important;
    object-fit: contain !important;
    display: block !important;
    transition: transform 0.25s ease !important;
}

.logo:hover .site-header-logo {
    transform: scale(1.03) !important;
}

.logo-text {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
}

.logo-text h2 {
    margin: 0 !important;
    font-family: "Playfair Display", Georgia, serif !important;
    font-size: 23px !important;
    line-height: 1.1 !important;
    letter-spacing: 0.3px !important;
    color: var(--green) !important;
    font-weight: 700 !important;
}

.logo-text span {
    display: block !important;
    margin-top: 2px !important;
    font-family: "DM Sans", sans-serif !important;
    color: var(--gold) !important;
    font-size: 11px !important;
    letter-spacing: 2.8px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
}

@media (max-width: 768px) {
    .site-header-logo {
        height: 42px !important;
        max-width: 100px !important;
    }
    .logo-text h2 {
        font-size: 18px !important;
    }
    .logo-text span {
        font-size: 9.5px !important;
        letter-spacing: 2px !important;
    }
}


/* =========================================================
   NAVIGATION
   ========================================================= */

.nav-menu {

    display: flex;

    align-items: center;

    justify-content: flex-end;

    gap: 22px;

    font-size: 14px;

    font-weight: 600;

    margin-left: auto;

}


.nav-menu>a:not(.nav-quote-btn) {

    position: relative;

    padding: 30px 0 27px;

    color: var(--text);

    white-space: nowrap;

    transition:
        color 0.25s ease;

}


/* UNDERLINE */

.nav-menu>a:not(.nav-quote-btn)::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: 20px;

    width: 0;

    height: 2px;

    background: var(--green);

    transition:
        width 0.25s ease;

}


.nav-menu>a:not(.nav-quote-btn):hover {

    color: var(--green);

}


.nav-menu>a:not(.nav-quote-btn):hover::after,
.nav-menu>a.active::after {

    width: 100%;

}


/* =========================================================
   GET A QUOTE BUTTON
   ========================================================= */

.nav-quote-btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    min-width: 135px;

    padding: 13px 18px;

    border-radius: 6px;

    background: var(--green);

    color: var(--white);

    border: 1px solid var(--green);

    font-weight: 600;

    white-space: nowrap;

    box-shadow:
        0 5px 15px rgba(23, 63, 53, 0.14);

    transition:
        0.3s ease;

}


.nav-quote-btn:hover {

    background: var(--green-light);

    transform: translateY(-2px);

    box-shadow:
        0 8px 18px rgba(23, 63, 53, 0.20);

}


/* =========================================================
   MOBILE MENU BUTTON
   ========================================================= */

.menu-toggle {

    display: none;

    width: 42px;

    height: 42px;

    align-items: center;

    justify-content: center;

    border: 1px solid #d8d0c2;

    border-radius: 6px;

    background: var(--cream-light);

    color: var(--green);

    font-size: 24px;

    cursor: pointer;

}


/* =========================================================
   TABLET HEADER
   ========================================================= */

@media (max-width: 1200px) {

    .navbar {

        gap: 18px;

    }


    .nav-menu {

        gap: 16px;

        font-size: 13px;

    }


    .logo {

        min-width: 180px;

    }


    .nav-quote-btn {

        min-width: 120px;

        padding-left: 13px;

        padding-right: 13px;

    }

}


/* =========================================================
   MOBILE HEADER
   ========================================================= */

@media (max-width: 850px) {

    .navbar {

        min-height: 72px;

    }


    .menu-toggle {

        display: flex;

        flex-shrink: 0;

    }


    .nav-menu {

        display: none;

        position: absolute;

        top: 72px;

        left: 0;

        right: 0;

        width: 100%;

        flex-direction: column;

        align-items: stretch;

        gap: 0;

        margin: 0;

        padding: 15px 5% 22px;

        background: var(--cream-light);

        border-top: 1px solid var(--border);

        border-bottom: 1px solid var(--border);

        box-shadow:
            0 15px 30px rgba(0, 0, 0, 0.08);

    }


    .nav-menu.active {

        display: flex;

    }


    .nav-menu>a:not(.nav-quote-btn) {

        padding: 13px 0;

        border-bottom: 1px solid #eee7dc;

    }


    .nav-menu>a:not(.nav-quote-btn)::after {

        display: none;

    }


    .nav-quote-btn {

        margin-top: 12px;

        text-align: center;

        width: 100%;

    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .navbar {

        min-height: 68px;

    }


    .logo {

        min-width: auto;

    }


    .logo-icon {

        width: 40px;

        height: 40px;

        font-size: 19px;

    }


    .logo-text h2 {

        font-size: 18px;

    }


    .logo-text span {

        font-size: 8px;

        letter-spacing: 2.5px;

    }


    .menu-toggle {

        width: 40px;

        height: 40px;

    }


    .nav-menu {

        top: 68px;

    }

}

/* =========================================================
   5. HERO SECTION
   ========================================================= */

.hero-section {

    position: relative;

    min-height: 720px;

    background-color: var(--cream-light);

    background-image:

        linear-gradient(90deg,
            rgba(252, 250, 245, 0.98) 0%,
            rgba(252, 250, 245, 0.93) 27%,
            rgba(252, 250, 245, 0.65) 48%,
            rgba(252, 250, 245, 0.20) 70%,
            rgba(252, 250, 245, 0.02) 100%),

        url("../assets/images/hero-bg.jpg");

    background-size:
        auto 100%;

    background-position:
        right center;

    background-repeat:
        no-repeat;

}


/* =========================================================
   HERO CONTAINER
   ========================================================= */

.hero-container {

    width: min(1180px, 92%);

    margin: auto;

}


/* =========================================================
   HERO CONTENT
   ========================================================= */

.hero-content {

    width: 54%;

    padding: 95px 0 130px;

}


.hero-label {

    display: inline-block;

    margin-bottom: 15px;

    color: var(--gold);

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 2px;

}


.hero-content h1 {

    max-width: 650px;

    color: var(--green);

    font-family:
        "Playfair Display",
        Georgia,
        serif;

    font-size:
        clamp(48px, 6vw, 76px);

    line-height: 1.02;

    font-weight: 600;

    margin-bottom: 22px;

}


.hero-content h1 span {

    display: block;

    color: var(--gold);

}


.hero-content p {

    max-width: 500px;

    margin-bottom: 30px;

    color: #3f4742;

    font-size: 17px;

}


/* =========================================================
   HERO BUTTONS
   ========================================================= */

.hero-buttons {

    display: flex;

    align-items: center;

    gap: 14px;

    flex-wrap: wrap;

}


.btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 9px;

    min-height: 48px;

    padding: 13px 22px;

    border-radius: 6px;

    font-size: 14px;

    font-weight: 600;

    transition:
        0.3s ease;

}


.btn-primary {

    background: var(--green);

    color: var(--white);

}


.btn-primary:hover {

    background: var(--green-light);

    transform: translateY(-3px);

    box-shadow: var(--shadow);

}


.btn-outline {

    border: 1px solid var(--green);

    background: rgba(255, 255, 255, 0.78);

    color: var(--green);

}


.btn-outline:hover {

    background: var(--green);

    color: var(--white);

    transform: translateY(-3px);

}


/* =========================================================
   HERO FEATURES
   ========================================================= */

.hero-features {

    position: absolute;

    left: 0;

    right: 0;

    bottom: 22px;

}


.hero-feature-container {

    width: min(1180px, 92%);

    margin: auto;

    display: flex;

    align-items: center;

    gap: 30px;

    flex-wrap: wrap;

}


.hero-feature {

    display: flex;

    align-items: center;

    gap: 8px;

    color: var(--green);

    font-size: 12px;

    font-weight: 600;

}


.feature-icon {

    width: 29px;

    height: 29px;

    display: flex;

    align-items: center;

    justify-content: center;

    border: 1px solid var(--green);

    border-radius: 50%;

    font-size: 13px;

}


/* =========================================================
   6. GENERAL SECTIONS
   ========================================================= */

section {

    padding: 80px 0;

}


.section-header {

    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 25px;

    margin-bottom: 38px;

}


.section-header.centered {

    display: block;

    text-align: center;

}


.section-label {

    display: block;

    margin-bottom: 10px;

    color: var(--gold);

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 1.8px;

    text-transform: uppercase;

}


.section-header h2 {

    color: var(--green);

    font-family:
        "Playfair Display",
        Georgia,
        serif;

    font-size:
        clamp(30px, 4vw, 43px);

    line-height: 1.12;

    font-weight: 600;

}


.section-header p {

    margin-top: 9px;

    color: var(--text-light);

    font-size: 15px;

}


.section-link-button {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 10px 17px;

    border: 1px solid #cfc6b7;

    border-radius: 6px;

    color: var(--green);

    font-size: 13px;

    font-weight: 600;

    white-space: nowrap;

    transition:
        0.3s ease;

}


.section-link-button:hover {

    background: var(--green);

    border-color: var(--green);

    color: var(--white);

}


/* =========================================================
   7. ABOUT
   ========================================================= */

.about-preview {

    background: var(--white);

}


.about-preview-grid {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    align-items: center;

    gap: 70px;

}


.about-image {

    height: 430px;

    overflow: hidden;

    border-radius: var(--radius);

    background: var(--cream);

}


.about-image img {

    height: 100%;

    object-fit: cover;

    transition:
        transform 0.6s ease;

}


.about-image:hover img {

    transform: scale(1.04);

}


.about-content h2 {

    max-width: 500px;

    color: var(--green);

    font-family:
        "Playfair Display",
        Georgia,
        serif;

    font-size:
        clamp(35px, 4vw, 50px);

    line-height: 1.08;

    margin-bottom: 22px;

}


.about-content p {

    max-width: 540px;

    margin-bottom: 15px;

    color: var(--text-light);

    font-size: 15px;

}


.text-link {

    display: inline-block;

    margin-top: 10px;

    color: var(--green);

    font-size: 14px;

    font-weight: 700;

    border-bottom: 1px solid var(--gold);

    padding-bottom: 4px;

}


/* =========================================================
   8. PRODUCTS
   ========================================================= */

.products-section {

    background: var(--cream);

}


.product-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 18px;

}


.product-card {

    overflow: hidden;

    background: var(--white);

    border: 1px solid var(--border);

    border-radius: var(--radius);

    transition:
        0.35s ease;

}


.product-card:hover {

    transform: translateY(-7px);

    box-shadow: var(--shadow);

}


.product-image {

    height: 245px;

    overflow: hidden;

    background: #eee3d2;

}


.product-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition:
        transform 0.5s ease;

}


.product-card:hover .product-image img {

    transform: scale(1.06);

}


.product-content {

    padding: 20px;

}


.product-category {

    color: var(--gold);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1.5px;

}


.product-content h3 {

    margin-top: 5px;

    color: var(--green);

    font-family:
        "Playfair Display",
        Georgia,
        serif;

    font-size: 24px;

}


.product-content p {

    margin-top: 6px;

    min-height: 46px;

    color: var(--text-light);

    font-size: 13px;

}


.product-link {

    display: inline-block;

    margin-top: 13px;

    color: var(--green);

    font-size: 13px;

    font-weight: 700;

}


/* =========================================================
   9. BRANDS
   ========================================================= */

.brands-section {

    background: var(--cream-light);

}


.brand-grid {

    display: grid;

    grid-template-columns:
        repeat(5, 1fr);

    gap: 15px;

}


.brand-card {

    min-height: 125px;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 20px;

    text-align: center;

    background: var(--white);

    border: 1px solid var(--border);

    border-radius: 8px;

    transition:
        0.3s ease;

}


.brand-card:hover {

    transform: translateY(-5px);

    border-color: var(--gold);

    box-shadow:
        0 10px 25px rgba(0, 0, 0, 0.06);

}


.brand-card h3 {

    color: var(--green);

    font-family:
        "Playfair Display",
        Georgia,
        serif;

    font-size: 23px;

}


.brand-card span {

    display: block;

    margin-top: 3px;

    color: var(--text-light);

    font-size: 11px;

}


.featured-brand {

    background: var(--green);

}


.featured-brand h3,
.featured-brand span {

    color: var(--white);

}


/* =========================================================
   10. WHY US
   ========================================================= */

.why-section {

    background: var(--white);

}


.why-section .section-header.centered {

    margin-bottom: 45px;

}


.why-grid {

    display: grid;

    grid-template-columns:
        repeat(6, 1fr);

    gap: 20px;

}


.why-card {

    text-align: center;

}


.why-icon {

    width: 60px;

    height: 60px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin: 0 auto 15px;

    border: 1px solid var(--gold);

    border-radius: 50%;

    color: var(--gold);

    font-size: 22px;

    transition:
        0.3s ease;

}


.why-card:hover .why-icon {

    background: var(--green);

    border-color: var(--green);

    color: var(--gold-light);

    transform: translateY(-4px);

}


.why-card h3 {

    color: var(--green);

    font-size: 14px;

}


.why-card p {

    margin-top: 6px;

    color: var(--text-light);

    font-size: 12px;

}


/* =========================================================
   11. MANUFACTURING
   ========================================================= */

.manufacturing-section {

    background: var(--cream);

}


.process-wrapper {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 10px;

    overflow-x: auto;

    padding-bottom: 10px;

}


.process-item {

    min-width: 135px;

    text-align: center;

}


.process-number {

    width: 76px;

    height: 76px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin: auto;

    border: 2px solid var(--gold);

    border-radius: 50%;

    background: var(--white);

    color: var(--green);

    font-family:
        "Playfair Display",
        Georgia,
        serif;

    font-size: 20px;

    font-weight: 600;

}


.process-item h3 {

    margin-top: 13px;

    color: var(--green);

    font-size: 14px;

}


.process-item p {

    margin-top: 3px;

    color: var(--text-light);

    font-size: 11px;

}


.process-arrow {

    flex-shrink: 0;

    color: var(--gold);

    font-size: 24px;

}


/* =========================================================
   12. BULK CTA
   ========================================================= */

.bulk-cta {

    padding: 55px 0;

    background: var(--green);

    color: var(--white);

}


.bulk-cta-inner {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 35px;

}


.bulk-cta-content .section-label {

    color: var(--gold-light);

}


.bulk-cta-content h2 {

    color: var(--white);

    font-family:
        "Playfair Display",
        Georgia,
        serif;

    font-size:
        clamp(30px, 4vw, 42px);

    line-height: 1.1;

}


.bulk-cta-content p {

    max-width: 620px;

    margin-top: 8px;

    color:
        rgba(255, 255, 255, 0.78);

    font-size: 15px;

}


.bulk-cta-buttons {

    display: flex;

    gap: 12px;

    flex-wrap: wrap;

}


.btn-gold {

    background: var(--gold-light);

    color: var(--green-dark);

}


.btn-gold:hover {

    background: #f0d28c;

    transform: translateY(-3px);

}


.btn-white {

    background: var(--white);

    color: var(--green);

}


.btn-white:hover {

    background: var(--cream);

    transform: translateY(-3px);

}


/* =========================================================
   13. TESTIMONIALS
   ========================================================= */

.testimonial-section {

    background: var(--cream-light);

}


.testimonial-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 18px;

}


.testimonial-card {

    position: relative;

    padding: 30px;

    background: var(--white);

    border: 1px solid var(--border);

    border-radius: var(--radius);

}


.quote-mark {

    color: var(--gold);

    font-family: Georgia, serif;

    font-size: 45px;

    line-height: 0.7;

}


.testimonial-card p {

    margin-top: 15px;

    color: #4f5551;

    font-size: 14px;

}


.testimonial-card span {

    display: block;

    margin-top: 20px;

    color: var(--green);

    font-size: 12px;

    font-weight: 700;

}


/* =========================================================
   14. GALLERY
   ========================================================= */

.gallery-preview {

    background: var(--cream);

}


.gallery-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 15px;

}


.gallery-item {

    height: 220px;

    overflow: hidden;

    border-radius: var(--radius);

    background: #e8ddcd;

}


.gallery-item img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition:
        transform 0.5s ease;

}


.gallery-item:hover img {

    transform: scale(1.07);

}


/* =========================================================
   15. FOOTER
   ========================================================= */

.site-footer {

    background: #f1e7d8;

    padding-top: 65px;

}


.footer-grid {

    display: grid;

    grid-template-columns:
        1.5fr 1fr 1fr 1.3fr;

    gap: 45px;

    padding-bottom: 45px;

}


.footer-logo {

    display: inline-block;

    color: var(--green);

    font-family:
        "Playfair Display",
        Georgia,
        serif;

    font-size: 26px;

    font-weight: 700;

    line-height: 0.95;

}


.footer-logo span {

    display: block;

    margin-top: 7px;

    color: var(--gold);

    font-family:
        "DM Sans",
        sans-serif;

    font-size: 9px;

    letter-spacing: 4px;

}


.footer-company>p {

    max-width: 280px;

    margin-top: 15px;

    color: var(--text-light);

    font-size: 13px;

}


.social-links {

    display: flex;

    gap: 8px;

    margin-top: 20px;

}


.social-links a {

    width: 34px;

    height: 34px;

    display: flex;

    align-items: center;

    justify-content: center;

    border: 1px solid #cfc2af;

    border-radius: 50%;

    color: var(--green);

    font-size: 10px;

    font-weight: 700;

    transition:
        0.3s ease;

}


.social-links a:hover {

    background: var(--green);

    border-color: var(--green);

    color: var(--white);

}


.footer-column h3 {

    margin-bottom: 15px;

    color: var(--green);

    font-size: 15px;

}


.footer-column a {

    display: block;

    margin: 9px 0;

    color: var(--text-light);

    font-size: 13px;

    transition:
        0.2s ease;

}


.footer-column a:hover {

    color: var(--green);

    transform: translateX(3px);

}


.footer-contact {

    margin-bottom: 11px;

    color: var(--text-light);

    font-size: 13px;

}


.footer-bottom {

    border-top: 1px solid #d9cdbc;

}


.footer-bottom-inner {

    min-height: 62px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    color: #6b716d;

    font-size: 12px;

}


.footer-bottom-inner div {

    display: flex;

    align-items: center;

    gap: 10px;

}


.footer-bottom-inner a:hover {

    color: var(--green);

}


/* =========================================================
   16. SCROLLBAR
   ========================================================= */

::-webkit-scrollbar {

    width: 8px;

}


::-webkit-scrollbar-track {

    background: var(--cream-light);

}


::-webkit-scrollbar-thumb {

    background: var(--green);

    border-radius: 10px;

}


::-webkit-scrollbar-thumb:hover {

    background: var(--green-light);

}


/* =========================================================
   17. TABLET
   ========================================================= */

@media (max-width: 1100px) {

    .nav-menu {

        gap: 15px;

        font-size: 13px;

    }


    .logo {

        min-width: 180px;

    }


    .nav-quote-btn {

        min-width: 125px;

        padding-left: 14px;

        padding-right: 14px;

    }


    .product-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .brand-grid {

        grid-template-columns:
            repeat(3, 1fr);

    }


    .why-grid {

        grid-template-columns:
            repeat(3, 1fr);

        row-gap: 35px;

    }


    .hero-content {

        width: 60%;

    }

}


/* =========================================================
   18. MOBILE
   ========================================================= */

@media (max-width: 850px) {

    .site-header::before {

        display: none;

    }


    .navbar {

        min-height: 72px;

    }


    .menu-toggle {

        display: block;

    }


    .nav-menu {

        display: none;

        position: absolute;

        top: 72px;

        left: 0;

        right: 0;

        z-index: 999;

        flex-direction: column;

        align-items: stretch;

        gap: 0;

        padding: 15px 5% 22px;

        background: var(--cream-light);

        border-bottom: 1px solid var(--border);

        box-shadow:
            0 15px 30px rgba(0, 0, 0, 0.08);

    }


    .nav-menu.active {

        display: flex;

    }


    .nav-menu>a:not(.nav-quote-btn) {

        padding: 13px 0;

        border-bottom: 1px solid #eee7dc;

    }


    .nav-menu>a:not(.nav-quote-btn)::after {

        display: none;

    }


    .nav-quote-btn {

        margin-top: 12px;

        text-align: center;

    }


    /* HERO */

    .hero-section {

        min-height: 680px;

        background-size:
            auto 100%;

        background-position:
            75% center;

    }


    .hero-content {

        width: 65%;

        padding-top: 75px;

    }


    .hero-features {

        bottom: 20px;

    }


    .hero-feature-container {

        gap: 15px 25px;

    }


    .about-preview-grid {

        gap: 40px;

    }


    .footer-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }

}


/* =========================================================
   19. SMALL MOBILE
   ========================================================= */

@media (max-width: 600px) {

    section {

        padding: 60px 0;

    }


    .container {

        width: 90%;

    }


    .logo {

        min-width: auto;

    }


    .logo-text h2 {

        font-size: 18px;

    }


    .logo-icon {

        width: 40px;

        height: 40px;

        font-size: 19px;

    }


    /* HERO */

    .hero-section {

        min-height: 700px;

        background-size:
            cover;

        background-position:
            67% center;

        background-image:

            linear-gradient(180deg,
                rgba(252, 250, 245, 0.97) 0%,
                rgba(252, 250, 245, 0.88) 43%,
                rgba(252, 250, 245, 0.30) 100%),

            url("../assets/images/hero-bg.jpg");

    }


    .hero-content {

        width: 100%;

        padding-top: 65px;

    }


    .hero-content h1 {

        font-size: 47px;

    }


    .hero-content p {

        max-width: 380px;

        font-size: 15px;

    }


    .hero-features {

        position: absolute;

        bottom: 18px;

    }


    .hero-feature-container {

        display: grid;

        grid-template-columns:
            repeat(2, 1fr);

        gap: 12px;

    }


    .hero-feature {

        font-size: 10px;

    }


    /* GENERAL */

    .section-header {

        flex-direction: column;

        align-items: flex-start;

    }


    .section-header.centered {

        align-items: center;

    }


    .section-header h2 {

        font-size: 33px;

    }


    /* ABOUT */

    .about-preview-grid {

        grid-template-columns: 1fr;

    }


    .about-image {

        height: 320px;

    }


    /* PRODUCTS */

    .product-grid {

        grid-template-columns: 1fr;

    }


    .product-image {

        height: 260px;

    }


    /* BRANDS */

    .brand-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .brand-card {

        min-height: 110px;

    }


    .brand-card h3 {

        font-size: 19px;

    }


    /* WHY */

    .why-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }


    /* MANUFACTURING */

    .process-wrapper {

        justify-content: flex-start;

    }


    /* BULK */

    .bulk-cta-inner {

        flex-direction: column;

        align-items: flex-start;

    }


    .bulk-cta-buttons {

        width: 100%;

    }


    .bulk-cta-buttons .btn {

        width: 100%;

    }


    /* TESTIMONIAL */

    .testimonial-grid {

        grid-template-columns: 1fr;

    }


    /* GALLERY */

    .gallery-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .gallery-item {

        height: 170px;

    }


    /* FOOTER */

    .footer-grid {

        grid-template-columns: 1fr;

        gap: 35px;

    }


    .footer-bottom-inner {

        flex-direction: column;

        justify-content: center;

        padding: 18px 0;

        text-align: center;

    }


    .footer-bottom-inner div {

        flex-wrap: wrap;

        justify-content: center;

    }

}


/* =========================================================
   20. EXTRA SMALL MOBILE
   ========================================================= */

@media (max-width: 380px) {

    .hero-content h1 {

        font-size: 40px;

    }


    .hero-buttons {

        flex-direction: column;

        align-items: stretch;

    }


    .hero-buttons .btn {

        width: 100%;

    }


    .brand-grid {

        grid-template-columns: 1fr;

    }


    .why-grid {

        grid-template-columns: 1fr;

    }

}


/* =========================================================
   21. REVEAL ANIMATION
   ========================================================= */

.reveal {

    opacity: 0;

    transform: translateY(25px);

    transition:
        opacity 0.7s ease,
        transform 0.7s ease;

}


.reveal.show {

    opacity: 1;

    transform: translateY(0);

}

/* =========================================================
   REFERENCE-STYLE HEADER
   ========================================================= */

.site-header {
    min-height: 118px;
    background: #fcfaf5;
    border-top: 4px solid #193f35;
    border-bottom: 1px solid #ddd5c8;
    box-shadow: 0 3px 16px rgba(23, 63, 53, 0.06);
}

.header-main .container {
    width: min(1480px, 90%);
}

.header-top {
    position: absolute;
    top: 9px;
    left: 0;
    width: 100%;
    pointer-events: none;
}

.header-top-inner {
    width: min(1480px, 90%);
    min-height: 32px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.header-top-right,
.header-social {
    display: flex;
    align-items: center;
}

.header-top-right {
    gap: 14px;
}

.header-tagline {
    color: #8c6933;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
}

.header-social {
    gap: 6px;
    pointer-events: auto;
}

.header-social a {
    width: 24px;
    height: 24px;
    display: grid;
    place-items: center;
    color: #fff;
    border-radius: 50%;
    font-family: Arial, sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    transition: transform .2s ease, filter .2s ease;
}

.header-social a:first-child {
    background: #1daa58;
    font-size: 14px;
}

.header-social a:nth-child(2) {
    background: #1877f2;
}

.header-social a:nth-child(3) {
    background: linear-gradient(135deg, #7132c6, #e6337a, #f7a34b);
}

.header-social a:hover {
    transform: translateY(-2px);
    filter: brightness(.92);
}

.navbar {
    position: relative;
    min-height: 114px;
    padding-top: 24px;
    gap: 30px;
}

.logo {
    min-width: 245px;
    gap: 12px;
}

.logo-icon {
    width: 58px;
    height: 58px;
    background: transparent;
    color: #bf8a24;
    font-size: 0;
}

.logo-icon::before {
    content: "❋";
    font-family: Georgia, serif;
    font-size: 55px;
    font-weight: 400;
    line-height: 1;
}

.logo-text h2 {
    font-size: 28px;
    letter-spacing: .8px;
}

.logo-text span {
    margin-top: 7px;
    color: #173f35;
    font-size: 13px;
    letter-spacing: 6px;
}

.nav-menu {
    gap: 30px;
    font-size: 16px;
}

.nav-menu>a:not(.nav-quote-btn) {
    padding: 38px 0 24px;
}

.nav-menu>a:not(.nav-quote-btn)::after {
    bottom: 15px;
    height: 3px;
}

.nav-quote-btn {
    min-width: 172px;
    padding: 13px 19px;
    border-radius: 6px;
    font-size: 16px;
}

@media (max-width: 1200px) {
    .nav-menu {
        gap: 17px;
        font-size: 13px;
    }

    .logo {
        min-width: 205px;
    }

    .logo-text h2 {
        font-size: 23px;
    }

    .header-tagline {
        font-size: 12px;
    }
}

@media (max-width: 850px) {
    .site-header {
        min-height: 72px;
    }

    .header-top {
        display: none;
    }

    .navbar {
        min-height: 68px;
        padding-top: 0;
    }

    .nav-menu {
        top: 68px;
    }

    .nav-menu>a:not(.nav-quote-btn) {
        padding: 13px 0;
    }

    .logo-icon {
        width: 43px;
        height: 43px;
    }

    .logo-icon::before {
        font-size: 41px;
    }

    .logo-text h2 {
        font-size: 19px;
    }

    .logo-text span {
        font-size: 8px;
        letter-spacing: 3.5px;
    }
}

/* The complete desktop navigation needs more than tablet width. */
@media (max-width: 1600px) {
    .site-header {
        min-height: 72px;
    }

    .header-top {
        display: none;
    }

    .navbar {
        min-height: 68px;
        padding-top: 0;
    }

    .menu-toggle {
        display: flex;
        flex-shrink: 0;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 68px;
        left: 0;
        right: 0;
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        margin: 0;
        padding: 15px 5% 22px;
        background: var(--cream-light);
        border-top: 1px solid var(--border);
        border-bottom: 1px solid var(--border);
        box-shadow: 0 15px 30px rgba(0, 0, 0, .08);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu>a:not(.nav-quote-btn) {
        padding: 13px 0;
        border-bottom: 1px solid #eee7dc;
    }

    .nav-menu>a:not(.nav-quote-btn)::after {
        display: none;
    }

    .nav-quote-btn {
        width: 100%;
        margin-top: 12px;
    }
}

/* =========================================================
   MAKHANA HERO
   ========================================================= */

.hero-section {
    min-height: 570px;
    background-image:
        linear-gradient(90deg, rgba(255, 253, 246, .96) 0%, rgba(255, 253, 246, .86) 31%, rgba(255, 253, 246, .28) 52%, rgba(255, 253, 246, 0) 68%),
        url("../assets/images/makhana-hero-wide-v3.png");
    background-size: cover;
    background-position: center;
}

.hero-container,
.hero-feature-container {
    width: min(1480px, 90%);
}

.hero-content {
    width: min(49%, 680px);
    padding: 58px 0 110px;
}

.hero-content h1 {
    max-width: 680px;
    margin-bottom: 15px;
    font-size: clamp(48px, 4.6vw, 72px);
    letter-spacing: -1.4px;
}

.hero-content p {
    max-width: 500px;
    margin-bottom: 24px;
    color: #263a32;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.45;
}

.hero-buttons {
    gap: 28px;
}

.hero-buttons .btn {
    min-width: 225px;
    min-height: 66px;
    padding: 16px 28px;
    border-radius: 7px;
    font-size: 17px;
}

.hero-features {
    bottom: 18px;
}

.hero-feature-container {
    justify-content: space-between;
    gap: 20px;
}

.hero-feature {
    gap: 11px;
    font-size: 15px;
}

.feature-icon {
    width: 40px;
    height: 40px;
    border-width: 2px;
    background: rgba(255, 255, 255, .45);
    font-size: 17px;
}

@media (max-width: 900px) {
    .hero-section {
        min-height: 680px;
        background-position: 63% center;
        background-image:
            linear-gradient(90deg, rgba(255, 253, 246, .98) 0%, rgba(255, 253, 246, .88) 48%, rgba(255, 253, 246, .22) 100%),
            url("../assets/images/makhana-hero-wide-v3.png");
    }

    .hero-content {
        width: min(78%, 580px);
        padding-top: 65px;
    }

    .hero-content h1 {
        font-size: clamp(43px, 8vw, 62px);
    }

    .hero-feature-container {
        justify-content: flex-start;
    }
}

@media (max-width: 600px) {
    .hero-section {
        min-height: 720px;
        background-position: 67% center;
    }

    .hero-content {
        width: 100%;
        padding-top: 56px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .hero-buttons {
        gap: 12px;
    }

    .hero-buttons .btn {
        min-width: 0;
        min-height: 53px;
        font-size: 15px;
    }

    .hero-feature {
        font-size: 11px;
    }

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

/* Keep the product photo framing stable when browser zoom changes. */
@media (min-width: 901px) {
    .hero-section {
        background-color: #fdfbf5;
        /* The new 3:1 banner fills the hero without empty side strips. */
        background-size: 100% 100%;
        background-position: center center;
    }
}

/* Keep all homepage content inside the viewport at every desktop zoom level. */
@media (min-width: 901px) {

    main .container,
    main .hero-container,
    main .hero-feature-container {
        width: 100%;
        max-width: none;
        padding-left: clamp(40px, 4vw, 88px);
        padding-right: clamp(40px, 4vw, 88px);
    }

    .hero-content {
        width: min(48%, 720px);
    }
}

/* 100% browser zoom baseline: no section may create a horizontal layout shift. */
html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

main,
.hero-section,
.site-footer {
    width: 100%;
    max-width: 100%;
}

@media (min-width: 901px) and (max-width: 1440px) {
    .hero-section {
        min-height: 520px;
    }

    .hero-content {
        width: min(50%, 620px);
        padding-top: 50px;
    }

    .hero-content h1 {
        font-size: clamp(48px, 4.2vw, 62px);
    }

    .hero-content p {
        font-size: 16px;
    }

    .hero-buttons .btn {
        min-width: 185px;
        min-height: 56px;
        font-size: 15px;
    }

    .hero-feature {
        font-size: 13px;
    }

    .feature-icon {
        width: 34px;
        height: 34px;
    }
}

/* Reference desktop hero proportions. */
@media (min-width: 1201px) {
    .hero-section {
        min-height: clamp(570px, calc(100svh - 72px), 720px);
        background-size: cover;
        background-position: center center;
    }

    main .hero-container,
    main .hero-feature-container {
        padding-left: clamp(64px, 5.2vw, 100px);
        padding-right: clamp(64px, 5.2vw, 100px);
    }

    .hero-content {
        width: min(46%, 720px);
        padding: clamp(58px, 5.6vw, 96px) 0 88px;
    }

    .hero-content h1 {
        max-width: 720px;
        font-size: clamp(62px, 5.2vw, 94px);
        line-height: .98;
    }

    .hero-content p {
        max-width: 520px;
        font-size: clamp(17px, 1.2vw, 21px);
        line-height: 1.45;
    }

    .hero-buttons .btn {
        min-width: 260px;
        min-height: 72px;
        font-size: 19px;
    }

    .hero-features {
        display: none;
    }

    .hero-feature {
        font-size: 17px;
    }

    .feature-icon {
        width: 49px;
        height: 49px;
        font-size: 20px;
    }

    .hero-benefits {
        position: absolute;
        top: auto;
        right: auto;
        left: clamp(64px, 5.2vw, 100px);
        bottom: 18px;
        width: min(680px, 46%);
        z-index: 2;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px 18px;
    }

    .hero-benefit {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 8px;
        color: var(--green);
        font-size: 13px;
        font-weight: 600;
        line-height: 1.05;
        text-align: left;
    }

    .hero-benefit>span {
        width: 34px;
        height: 34px;
        display: grid;
        place-items: center;
        flex: 0 0 auto;
        border: 1px solid var(--green);
        border-radius: 50%;
        font-size: 16px;
    }
}

@media (max-width: 1200px) {
    .hero-benefits {
        display: none;
    }
}

@media (min-width: 901px) and (max-width: 1200px) {
    .hero-section {
        min-height: max(560px, calc(100svh - 68px));
    }

    .hero-content {
        padding-bottom: 88px;
    }
}

/* =========================================================
   HOME PAGE COMPACT LAYOUT
   ========================================================= */

/* The reference homepage starts directly with the product collection. */
.about-preview,
.gallery-preview {
    display: none;
}

.products-section,
.brands-section,
.why-section,
.manufacturing-section,
.testimonial-section {
    padding: 38px 0;
}

.products-section {
    background: #f8f1e6;
}

.brands-section,
.testimonial-section {
    background: var(--cream-light);
}

.section-header {
    margin-bottom: 18px;
}

.section-header h2 {
    font-size: clamp(27px, 2.3vw, 38px);
}

.section-header p {
    margin-top: 2px;
}

.section-link-button {
    padding: 8px 15px;
}

.product-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.product-card {
    position: relative;
    min-height: 160px;
    overflow: hidden;
    border: 1px solid #eadfce;
    border-radius: 6px;
    background: #f5ead9;
}

.product-image {
    position: absolute;
    right: -8px;
    bottom: 0;
    width: 56%;
    height: 88%;
    background: transparent;
}

.product-image img {
    object-fit: contain;
    object-position: right bottom;
}

.product-content {
    position: relative;
    z-index: 1;
    width: 55%;
    padding: 32px 0 0 12px;
}

.product-category {
    font-size: 9px;
    color: var(--gold);
}

.product-content h3 {
    margin-top: 4px;
    font-size: 18px;
    line-height: 1.15;
}

.product-content p {
    margin-top: 6px;
    font-size: 11px;
    line-height: 1.35;
}

.product-link {
    display: none;
}

.brand-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 11px;
}

.brand-card {
    min-height: 86px;
    border-radius: 5px;
}

.brand-card h3 {
    font-size: 17px;
}

.brand-card span {
    font-size: 9px;
}

.why-section {
    background: #f7f0e5;
}

.why-section .container {
    display: grid;
    grid-template-columns: 27% 1fr;
    align-items: center;
    gap: 14px;
}

.why-section .section-header.centered {
    display: block;
    margin: 0;
    text-align: left;
}

.why-section .section-header h2 {
    font-size: clamp(25px, 2.2vw, 36px);
}

.why-section .why-grid {
    grid-template-columns: repeat(6, 1fr);
    gap: 8px;
}

.why-card {
    padding: 4px 8px;
    border: 0;
    background: transparent;
    text-align: center;
}

.why-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto 7px;
    font-size: 18px;
}

.why-card h3 {
    font-size: 12px;
    line-height: 1.15;
}

.why-card p {
    display: none;
}

.manufacturing-section {
    background: var(--cream-light);
}

.manufacturing-section .section-header {
    margin-bottom: 10px;
}

.process-wrapper {
    gap: 8px;
    padding: 0;
}

.process-item {
    min-width: 0;
    flex: 1;
}

.process-number {
    width: 62px;
    height: 62px;
    font-size: 15px;
}

.process-item h3 {
    margin-top: 7px;
    font-size: 11px;
}

.process-item p {
    display: none;
}

.process-arrow {
    font-size: 17px;
}

.bulk-cta {
    padding: 30px 0;
}

.bulk-cta-content h2 {
    font-size: clamp(25px, 2.6vw, 37px);
}

.bulk-cta-content p {
    font-size: 13px;
}

.bulk-cta .btn {
    min-height: 48px;
}

.testimonial-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 13px;
}

.testimonial-card {
    padding: 18px;
    border-radius: 6px;
}

.testimonial-card p {
    margin-top: 8px;
    font-size: 12px;
}

.testimonial-card span {
    margin-top: 10px;
    font-size: 10px;
}

.quote-mark {
    font-size: 30px;
}

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

    .brand-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .why-section .container {
        display: block;
    }

    .why-section .section-header.centered {
        margin-bottom: 22px;
        text-align: center;
    }

    .why-grid {
        grid-template-columns: repeat(3, 1fr);
        row-gap: 22px;
    }

    .process-wrapper {
        width: 100%;
        max-width: 100%;
        overflow-x: auto;
    }

    .process-item {
        min-width: 105px;
    }
}

@media (max-width: 600px) {

    .products-section,
    .brands-section,
    .why-section,
    .manufacturing-section,
    .testimonial-section {
        padding: 45px 0;
    }

    .product-grid,
    .brand-grid,
    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .product-card {
        min-height: 190px;
    }

    .brand-card {
        min-height: 92px;
    }

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

/* Full-width desktop rhythm: avoids unused side gutters on large screens. */
@media (min-width: 901px) {
    .container {
        width: min(1800px, 94%);
    }

    .hero-container,
    .hero-feature-container {
        width: min(1800px, 94%);
    }

    .products-section,
    .brands-section,
    .why-section,
    .manufacturing-section,
    .testimonial-section {
        padding: 58px 0;
    }

    .section-header {
        margin-bottom: 26px;
    }

    .section-header h2 {
        font-size: clamp(38px, 2.6vw, 52px);
    }

    .section-header p {
        font-size: 18px;
    }

    .section-label {
        font-size: 14px;
    }

    .product-grid {
        gap: 18px;
    }

    .product-card {
        min-height: 240px;
    }

    .product-content {
        padding: 43px 0 0 22px;
    }

    .product-content h3 {
        font-size: 25px;
    }

    .product-content p {
        font-size: 15px;
        line-height: 1.45;
    }

    .product-category {
        font-size: 11px;
    }

    .brand-grid {
        gap: 16px;
    }

    .brand-card {
        min-height: 125px;
    }

    .brand-card h3 {
        font-size: 25px;
    }

    .brand-card span {
        font-size: 12px;
    }

    .why-section .container {
        grid-template-columns: 28% 1fr;
        gap: 28px;
    }

    .why-section .section-header h2 {
        font-size: clamp(36px, 2.5vw, 49px);
    }

    .why-section .section-header p {
        font-size: 16px;
    }

    .why-section .why-grid {
        gap: 16px;
    }

    .why-card {
        padding: 12px 6px;
    }

    .why-icon {
        width: 62px;
        height: 62px;
        margin-bottom: 11px;
        font-size: 26px;
    }

    .why-card h3 {
        font-size: 15px;
        line-height: 1.25;
    }

    .process-number {
        width: 76px;
        height: 76px;
    }

    .process-item h3 {
        font-size: 13px;
    }
}

/* Desktop reference layout: keep the full navigation and compact homepage rhythm. */
@media (min-width: 1201px) {
    .site-header {
        min-height: 118px;
    }

    .header-top {
        display: block;
    }

    .navbar {
        min-height: 114px;
        padding-top: 24px;
    }

    .menu-toggle {
        display: none;
    }

    .nav-menu {
        display: flex;
        position: static;
        width: auto;
        flex-direction: row;
        align-items: center;
        gap: clamp(14px, 1.5vw, 30px);
        padding: 0;
        background: transparent;
        border: 0;
        box-shadow: none;
    }

    .nav-menu>a:not(.nav-quote-btn) {
        padding: 38px 0 24px;
        border: 0;
    }

    .nav-menu>a:not(.nav-quote-btn)::after {
        display: block;
        bottom: 15px;
    }

    .nav-quote-btn {
        width: auto;
        min-width: 145px;
        margin-top: 0;
    }

    .hero-section {
        min-height: 520px;
        padding: 0;
        background-image:
            linear-gradient(90deg, rgba(255, 253, 246, .96) 0%, rgba(255, 253, 246, .86) 31%, rgba(255, 253, 246, .28) 52%, rgba(255, 253, 246, 0) 68%),
            url("../assets/images/hero-bg.jpg");
        background-size: cover;
        background-position: center;
    }

    .hero-container,
    .hero-feature-container {
        width: min(1480px, 90%);
    }

    .hero-content {
        width: min(49%, 680px);
        padding: 58px 0 110px;
    }

    .hero-content h1 {
        max-width: 720px;
        font-size: clamp(54px, 4.4vw, 72px);
        letter-spacing: -1px;
    }

    .hero-content p {
        max-width: 500px;
        font-size: 17px;
    }

    .hero-buttons .btn {
        min-width: 190px;
        min-height: 52px;
        padding: 13px 20px;
        font-size: 15px;
    }

    .hero-features {
        bottom: 18px;
    }

    .hero-feature {
        font-size: 13px;
    }

    .feature-icon {
        width: 34px;
        height: 34px;
        font-size: 15px;
    }

    .products-section,
    .brands-section,
    .why-section,
    .manufacturing-section,
    .testimonial-section {
        padding: 28px 0;
    }

    .section-label {
        display: none;
    }

    .section-header h2 {
        font-size: clamp(27px, 2.3vw, 38px);
    }

    .section-header p {
        font-size: 13px;
    }

    .section-header {
        margin-bottom: 12px;
    }

    .product-card {
        min-height: 160px;
    }

    .brand-card {
        min-height: 86px;
    }

    .brand-card::before {
        content: "◈";
        display: block;
        margin-bottom: 2px;
        color: #5a9639;
        font-size: 22px;
        line-height: 1;
    }

    .featured-brand::before {
        color: var(--gold-light);
    }

    .why-section .section-header h2 {
        font-size: clamp(25px, 2.2vw, 36px);
    }

    .why-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .process-number {
        background-size: cover;
        background-position: center;
        color: transparent;
        border: 0;
    }

    .process-item:nth-child(1) .process-number,
    .process-item:nth-child(5) .process-number {
        background-image: url("../assets/images/makhana-hero-v2.png");
    }

    .process-item:nth-child(3) .process-number,
    .process-item:nth-child(7) .process-number {
        background-image: url("../assets/images/makhana-pack-100g.png");
    }

    .process-item:nth-child(9) .process-number,
    .process-item:nth-child(11) .process-number {
        background-image: url("../assets/images/makhana-bulk-pack.png");
    }

    .bulk-cta {
        padding: 24px 0;
    }

    .bulk-cta-content .section-label {
        display: none;
    }

    .bulk-cta-content h2 {
        font-size: clamp(25px, 2.6vw, 37px);
    }

    .testimonial-section .section-header {
        margin-bottom: 12px;
    }

    .testimonial-section .section-header h2 {
        font-size: clamp(27px, 2.3vw, 38px);
    }

    .testimonial-card {
        padding: 14px;
    }

    .testimonial-card::before {
        content: "●";
        float: left;
        display: grid;
        place-items: center;
        width: 28px;
        height: 28px;
        margin: 0 9px 4px 0;
        border-radius: 50%;
        background: #e9e9e7;
        color: #70736f;
        font-size: 12px;
    }

    .site-footer {
        padding-top: 34px;
    }
}

/* Give the product and brand collections the spacious desktop presentation. */
@media (min-width: 901px) {

    .products-section,
    .brands-section {
        padding-top: 42px;
        padding-bottom: 42px;
    }

    .products-section .section-header,
    .brands-section .section-header {
        margin-bottom: 20px;
    }

    .products-section .section-header h2,
    .brands-section .section-header h2 {
        font-size: clamp(32px, 2.6vw, 48px);
    }

    .products-section .section-header p,
    .brands-section .section-header p {
        font-size: 16px;
    }

    .product-card {
        min-height: 205px;
    }

    .product-image {
        height: 94%;
    }

    .product-content {
        padding: 48px 0 0 28px;
    }

    .product-category {
        font-size: 12px;
    }

    .product-content h3 {
        font-size: 28px;
    }

    .product-content p {
        font-size: 16px;
    }

    .brand-card {
        min-height: 132px;
    }

    .brand-card h3 {
        font-size: 29px;
    }

    .brand-card span {
        font-size: 13px;
    }
}

/* Manufacturing reference band: copy on the left, illustrated process timeline on the right. */
@media (min-width: 1201px) {
    .manufacturing-section {
        min-height: 286px;
        padding: 34px 0;
        background: var(--cream-light);
    }

    .manufacturing-section>.container {
        display: grid;
        grid-template-columns: minmax(300px, 29%) 1fr;
        align-items: center;
        gap: 34px;
        min-height: 218px;
    }

    .manufacturing-section .section-header {
        display: block;
        margin: 0;
    }

    .manufacturing-section .section-label {
        display: none;
    }

    .manufacturing-section .section-header h2 {
        font-size: clamp(34px, 3vw, 56px);
        line-height: 1.02;
    }

    .manufacturing-section .section-header p {
        max-width: 360px;
        margin-top: 12px;
        font-size: 17px;
        line-height: 1.35;
    }

    .manufacturing-section .section-link-button {
        margin-top: 18px;
        padding: 13px 22px;
        border: 0;
        border-radius: 5px;
        background: var(--green);
        color: var(--white);
        font-size: 15px;
    }

    .manufacturing-section .process-wrapper {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 8px;
        overflow: visible;
        padding: 0;
    }

    .manufacturing-section .process-item {
        min-width: 0;
        flex: 1 1 0;
    }

    .manufacturing-section .process-number {
        width: clamp(76px, 5.8vw, 112px);
        height: clamp(76px, 5.8vw, 112px);
        aspect-ratio: 1;
        border: 0;
        border-radius: 50%;
        background-color: #e8dfd1;
        background-position: center;
        background-size: cover;
        color: transparent;
        box-shadow: 0 0 0 4px rgba(255, 255, 255, .8), 0 5px 14px rgba(23, 63, 53, .18);
        overflow: hidden;
        position: relative;
    }

    .manufacturing-section .process-number img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        border-radius: inherit;
    }

    .manufacturing-section .process-number::after {
        content: "";
        position: absolute;
        inset: 0;
        border: 1px solid rgba(255, 255, 255, .72);
        border-radius: inherit;
    }

    .manufacturing-section .process-item:nth-child(1) .process-number {
        background-image: url("../assets/images/makhana-hero-v2.png");
        background-position: 72% center;
    }

    .manufacturing-section .process-item:nth-child(3) .process-number {
        background-image: url("../assets/images/makhana-product-pack-v1.png");
        background-position: center 62%;
    }

    .manufacturing-section .process-item:nth-child(5) .process-number {
        background-image: url("../assets/images/makhana-pack-100g.png");
        background-position: center 62%;
    }

    .manufacturing-section .process-item:nth-child(7) .process-number {
        background-image: url("../assets/images/makhana-hero-v2.png");
        background-position: 72% center;
    }

    .manufacturing-section .process-item:nth-child(9) .process-number {
        background-image: url("../assets/images/makhana-pack-250g.png");
        background-position: center 62%;
    }

    .manufacturing-section .process-item:nth-child(11) .process-number {
        background-image: url("../assets/images/makhana-bulk-pack.png");
        background-position: 58% center;
    }

    .manufacturing-section .process-item:nth-child(13) .process-number {
        background-image: url("../assets/images/makhana-bulk-pack.png");
        background-position: 58% center;
    }

    .manufacturing-section .process-item h3 {
        margin-top: 12px;
        font-size: 15px;
        line-height: 1.15;
    }

    .manufacturing-section .process-item p {
        display: none;
    }

    .manufacturing-section .process-arrow {
        flex: 0 0 auto;
        color: var(--green);
        font-size: 25px;
        line-height: 1;
        transform: translateY(-18px);
    }
}

/* Enlarged bulk partnership banner with a clear handshake visual. */
@media (min-width: 901px) {
    .bulk-cta {
        min-height: 190px;
        padding: 42px 0;
        background: linear-gradient(90deg, #0d493c 0%, #145844 72%, #0e493c 100%);
    }

    .bulk-cta-inner {
        min-height: 106px;
        display: grid;
        grid-template-columns: 122px minmax(0, 1fr) auto;
        align-items: center;
        gap: 30px;
    }

    .bulk-cta-icon {
        display: grid;
        place-items: center;
        width: 112px;
        height: 96px;
    }

    .bulk-cta-icon img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .bulk-cta-content .section-label {
        display: none;
    }

    .bulk-cta-content h2 {
        font-size: clamp(32px, 3vw, 50px);
        line-height: 1.05;
    }

    .bulk-cta-content p {
        max-width: none;
        margin-top: 10px;
        font-size: 17px;
    }

    .bulk-cta-buttons {
        justify-content: flex-end;
    }

    .bulk-cta-buttons .btn {
        min-height: 58px;
        min-width: 210px;
        font-size: 15px;
    }
}

@media (max-width: 900px) {
    .bulk-cta-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 12px;
    }

    .bulk-cta-content p {
        max-width: 520px;
    }
}

/* Elevated partner testimonials with the site's green, gold, and cream palette. */
@media (min-width: 901px) {
    .testimonial-section {
        position: relative;
        min-height: 320px;
        padding: 54px 0 58px;
        background-color: #fbf7ef;
        background-image: linear-gradient(135deg, rgba(198, 154, 69, .06) 0 1px, transparent 1px 28px);
        background-size: 28px 28px;
    }

    .testimonial-section .section-header {
        display: block;
        margin-bottom: 30px;
        text-align: center;
    }

    .testimonial-section .section-label {
        display: block;
        margin-bottom: 8px;
        color: var(--gold);
        font-size: 13px;
        letter-spacing: 2px;
    }

    .testimonial-section .section-header h2 {
        font-size: clamp(38px, 3.4vw, 58px);
        line-height: 1.05;
    }

    .testimonial-grid {
        gap: 22px;
    }

    .testimonial-card {
        min-height: 178px;
        padding: 30px 30px 24px;
        overflow: hidden;
        border: 1px solid #e3d6c3;
        border-radius: 12px;
        background: rgba(255, 255, 255, .92);
        box-shadow: 0 10px 24px rgba(23, 63, 53, .06);
        transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    }

    .testimonial-card:hover {
        border-color: var(--gold);
        box-shadow: 0 16px 32px rgba(23, 63, 53, .12);
        transform: translateY(-5px);
    }

    .testimonial-card::before {
        position: absolute;
        top: 24px;
        left: 22px;
        float: none;
        width: 38px;
        height: 38px;
        margin: 0;
        content: "●";
        border: 1px solid #e3d6c3;
        background: #f1eee8;
        color: var(--green-light);
        font-size: 12px;
    }

    .testimonial-card::after {
        position: absolute;
        top: -34px;
        right: -20px;
        content: "“";
        color: rgba(198, 154, 69, .15);
        font-family: Georgia, serif;
        font-size: 170px;
        line-height: 1;
        pointer-events: none;
    }

    .testimonial-card .quote-mark {
        position: relative;
        z-index: 1;
        margin-left: 48px;
        color: var(--gold);
        font-size: 42px;
        line-height: .5;
    }

    .testimonial-card p {
        position: relative;
        z-index: 1;
        min-height: 48px;
        margin-top: 18px;
        color: #3f4b45;
        font-size: 16px;
        line-height: 1.5;
    }

    .testimonial-card span {
        position: relative;
        z-index: 1;
        margin-top: 18px;
        color: var(--green);
        font-size: 13px;
        letter-spacing: .3px;
    }

    .testimonial-card::before {
        content: none;
    }

    .testimonial-avatar {
        position: absolute;
        top: 20px;
        left: 20px;
        width: 48px;
        height: 48px;
        border: 1px solid #d9d9d5;
        border-radius: 50%;
        background: #e8e9e7;
    }

    .testimonial-avatar::before {
        content: "";
        position: absolute;
        top: 9px;
        left: 17px;
        width: 14px;
        height: 14px;
        border-radius: 50%;
        background: #4d5551;
    }

    .testimonial-avatar::after {
        content: "";
        position: absolute;
        left: 10px;
        bottom: 8px;
        width: 28px;
        height: 17px;
        border-radius: 16px 16px 5px 5px;
        background: #4d5551;
    }

    .testimonial-card .quote-mark,
    .testimonial-card p,
    .testimonial-card span {
        margin-left: 68px;
    }

    .testimonial-card .quote-mark {
        margin-top: 0;
    }

    .testimonial-card p {
        margin-top: 14px;
    }

    .testimonial-card span {
        margin-top: 14px;
    }
}

/* Reference-style footer with a brand lockup and dedicated social column. */
@media (min-width: 901px) {
    .site-footer {
        padding-top: 34px;
        background: #fcfaf5;
        border-top: 1px solid #e3d9ca;
    }

    .footer-grid {
        grid-template-columns: 1.25fr 1fr 1fr 1.45fr 1fr;
        gap: 34px;
        padding-bottom: 30px;
    }

    .footer-company {
        padding-top: 4px;
    }

    .footer-logo {
        display: grid;
        grid-template-columns: 48px auto;
        grid-template-rows: auto auto;
        column-gap: 10px;
        align-items: center;
        color: var(--green);
        font-size: 25px;
        line-height: 1;
    }

    .footer-logo-mark {
        grid-row: 1 / span 2;
        display: grid;
        place-items: center;
        width: 48px;
        height: 48px;
        color: var(--gold);
        font-family: Georgia, serif;
        font-size: 48px;
        line-height: 1;
    }

    .footer-logo strong {
        display: block;
        font-family: "Playfair Display", Georgia, serif;
        font-size: 25px;
        letter-spacing: .5px;
    }

    .footer-logo>span:not(.footer-logo-mark) {
        display: block;
        margin-top: 4px;
        color: var(--green);
        font-family: "DM Sans", sans-serif;
        font-size: 10px;
        letter-spacing: 4px;
    }

    .footer-company>p {
        max-width: 220px;
        margin: 12px 0 0 58px;
        color: var(--text-light);
        font-size: 10px;
        line-height: 1.35;
    }

    .footer-column h3 {
        margin-bottom: 10px;
        color: var(--green);
        font-size: 13px;
    }

    .footer-column a,
    .footer-contact {
        margin: 7px 0;
        color: #48524d;
        font-size: 12px;
        line-height: 1.3;
    }

    .footer-contact {
        white-space: nowrap;
    }

    .footer-follow .social-links {
        display: flex;
        flex-wrap: wrap;
        gap: 7px;
        margin-top: 14px;
    }

    .footer-follow .social-links a {
        width: 24px;
        height: 24px;
        margin: 0;
        border: 0;
        color: #fff;
        font-family: Arial, sans-serif;
        font-size: 11px;
    }

    .footer-follow .social-links a:nth-child(1) {
        background: #1daa58;
    }

    .footer-follow .social-links a:nth-child(2) {
        background: #1877f2;
    }

    .footer-follow .social-links a:nth-child(3) {
        background: #e1306c;
    }

    .footer-follow .social-links a:nth-child(4) {
        background: #e11d26;
    }

    .footer-follow .social-links a:nth-child(5) {
        background: #0a66c2;
    }

    .footer-bottom-inner {
        min-height: 48px;
        font-size: 11px;
    }
}

/* Spacious Why Choose band with the product image anchored on the right. */
@media (min-width: 1201px) {
    .why-section {
        position: relative;
        min-height: 248px;
        overflow: hidden;
        background-color: #f7f0e5;
        background-image: linear-gradient(90deg, #f7f0e5 0%, #f7f0e5 76%, rgba(247, 240, 229, .74) 88%, rgba(247, 240, 229, .08) 100%), url("../assets/images/makhana-hero-v2.png");
        background-repeat: no-repeat;
        background-position: center, right center;
        background-size: cover, 31% 100%;
    }

    .why-section .container {
        position: relative;
        z-index: 1;
        width: min(1800px, 94%);
        min-height: 188px;
        padding-right: clamp(150px, 11vw, 230px);
        grid-template-columns: minmax(260px, 29%) 1fr;
        gap: 34px;
    }

    .why-section .section-header.centered {
        align-self: center;
    }

    .why-section .section-header h2 {
        font-size: clamp(32px, 2.7vw, 50px);
        line-height: 1.03;
    }

    .why-section .section-header p {
        margin-top: 9px;
        font-size: 14px;
    }

    .why-section .why-grid {
        align-items: center;
        gap: 18px;
    }

    .why-section .why-card {
        min-width: 0;
        padding: 10px 4px;
    }

    .why-section .why-icon {
        width: 56px;
        height: 56px;
        margin-bottom: 10px;
        background: rgba(255, 255, 255, .42);
        font-size: 23px;
    }

    .why-section .why-card h3 {
        font-size: 14px;
        line-height: 1.2;
    }
}

/* Green and gold footer palette. */
.site-footer {
    background: var(--green);
    color: var(--gold-light);
    border-top-color: var(--green-light);
}

.site-footer .footer-logo,
.site-footer .footer-logo strong,
.site-footer .footer-logo>span:not(.footer-logo-mark),
.site-footer .footer-column h3 {
    color: var(--gold-light);
}

.site-footer .footer-logo-mark {
    color: var(--gold-light);
}

.site-footer .footer-company>p,
.site-footer .footer-column a,
.site-footer .footer-contact {
    color: rgba(231, 199, 123, .88);
}

.site-footer .footer-column a:hover {
    color: var(--white);
}

.site-footer .footer-contact-icon {
    display: inline-block;
    width: 20px;
    color: var(--gold-light);
    font-size: 15px;
    text-align: center;
}

.site-footer .footer-bottom {
    border-top-color: rgba(231, 199, 123, .28);
}

.site-footer .footer-bottom-inner {
    color: rgba(231, 199, 123, .82);
}

.site-footer .footer-bottom-inner a:hover {
    color: var(--white);
}

.site-footer .footer-follow .social-links a {
    width: 34px;
    height: 34px;
    color: var(--white);
    font-size: 17px;
    line-height: 1;
    box-shadow: 0 2px 6px rgba(0, 0, 0, .18);
}

/* About page */
.about-page {
    background: var(--cream-light);
}

.about-hero {
    padding: 0;
    min-height: 360px;
    background-image: linear-gradient(90deg, rgba(252, 250, 245, .98) 0%, rgba(252, 250, 245, .9) 35%, rgba(252, 250, 245, .16) 72%), url("../assets/images/makhana-hero-wide-v3.png");
    background-position: center;
    background-size: cover;
}

.about-hero-inner {
    position: relative;
    min-height: 360px;
    padding-top: 24px;
}

.about-breadcrumb {
    display: flex;
    gap: 10px;
    color: var(--text-light);
    font-size: 12px;
}

.about-breadcrumb strong {
    color: var(--green);
    font-weight: 600;
}

.about-hero-copy {
    width: min(540px, 52%);
    padding-top: 58px;
}

.about-eyebrow {
    display: block;
    margin-bottom: 9px;
    color: var(--gold);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.about-hero h1,
.about-story h2,
.about-values h2,
.about-roots h2,
.about-cta h2 {
    color: var(--green);
    font-family: "Playfair Display", Georgia, serif;
    line-height: 1.03;
}

.about-hero h1 {
    font-size: clamp(43px, 4.2vw, 70px);
}

.about-hero-lead {
    margin-top: 8px;
    color: var(--gold);
    font-family: "Playfair Display", Georgia, serif;
    font-size: 20px;
}

.about-hero-copy>p:last-child {
    max-width: 470px;
    margin-top: 10px;
    color: #39443f;
    font-size: 15px;
    line-height: 1.45;
}

.about-band {
    padding: 66px 0;
}

.about-story {
    background: var(--cream-light);
}

.about-story-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    align-items: center;
    gap: 34px;
}

.about-story-image {
    position: relative;
    height: 360px;
    overflow: hidden;
    border-radius: 6px;
    background: var(--cream);
}

.about-story-image::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(180deg, rgba(23, 63, 53, .04), rgba(23, 63, 53, .36));
}

.about-story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 72% center;
}

.about-story-image span {
    position: absolute;
    top: 24px;
    left: 24px;
    z-index: 1;
    color: var(--white);
    font-family: Caveat, cursive;
    font-size: 28px;
    line-height: 1.05;
}

.about-story-image em {
    font-size: 31px;
}

.about-story-copy h2,
.about-roots h2 {
    font-size: clamp(32px, 3vw, 52px);
}

.about-rule {
    width: 54px;
    height: 3px;
    margin: 15px 0 18px;
    background: var(--gold);
}

.about-story-copy p,
.about-roots-copy p {
    margin-top: 11px;
    color: #4f5a54;
    font-size: 14px;
    line-height: 1.5;
}

.about-signoff {
    margin-top: 20px !important;
    color: var(--green) !important;
    font-family: Caveat, cursive;
    font-size: 25px !important;
    line-height: 1.05 !important;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 26px;
    border: 1px solid #e7dfd2;
    background: rgba(255, 255, 255, .58);
}

.about-stats div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 86px;
    border-right: 1px solid #e7dfd2;
    text-align: center;
}

.about-stats div:last-child {
    border-right: 0;
}

.about-stats strong {
    color: var(--green);
    font-family: "Playfair Display", Georgia, serif;
    font-size: 26px;
}

.about-stats span {
    color: var(--text-light);
    font-size: 11px;
}

.about-values {
    background: #fbf7ef;
    text-align: center;
}

.about-section-heading p {
    margin-top: 10px;
    color: var(--text-light);
    font-size: 14px;
}

.about-values h2 {
    font-size: clamp(34px, 3.2vw, 52px);
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
    margin-top: 30px;
}

.value-grid article {
    min-height: 150px;
    padding: 18px 12px;
    border: 1px solid #eee5d6;
    border-radius: 8px;
    background: #fffdf8;
}

.value-grid img {
    width: 42px;
    height: 42px;
    margin: 0 auto 10px;
    border-radius: 50%;
    object-fit: cover;
}

.value-grid h3 {
    color: var(--green);
    font-size: 14px;
}

.value-grid p {
    margin-top: 5px;
    color: var(--text-light);
    font-size: 11px;
    line-height: 1.35;
}

.about-roots {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 390px;
    background: var(--green);
}

.about-roots-image {
    min-height: 390px;
    background-image: linear-gradient(rgba(16, 52, 43, .06), rgba(16, 52, 43, .12)), url("../assets/images/makhana-hero-v2.png");
    background-position: center;
    background-size: cover;
}

.about-roots-copy {
    padding: 62px clamp(28px, 6vw, 110px);
    color: var(--white);
}

.about-roots-copy .about-eyebrow {
    color: var(--gold-light);
}

.about-roots-copy h2 {
    color: var(--white);
}

.about-roots-copy .about-rule {
    background: var(--gold-light);
}

.about-roots-copy p {
    max-width: 540px;
    color: rgba(255, 255, 255, .78);
}

.roots-meta {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 24px;
    color: var(--gold-light);
    font-size: 11px;
    line-height: 1.35;
}

.about-cta {
    padding: 22px 0;
    background: #fbf7ef;
}

.about-cta-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 100px;
    padding: 18px 28px;
    overflow: hidden;
    border: 1px solid #e8dfd0;
    border-radius: 8px;
    background: #fffdf8;
}

.about-cta h2 {
    font-size: clamp(25px, 2.5vw, 38px);
}

.about-cta h2 span {
    color: var(--gold);
}

.about-cta p {
    max-width: 550px;
    margin-top: 5px;
    color: var(--text-light);
    font-size: 13px;
}

.about-cta img {
    width: 120px;
    height: 90px;
    margin-left: 12px;
    object-fit: contain;
}

@media (max-width: 900px) {

    .about-hero,
    .about-hero-inner {
        min-height: 530px;
    }

    .about-hero-copy {
        width: 100%;
        padding-top: 150px;
    }

    .about-story-grid,
    .about-roots {
        grid-template-columns: 1fr;
    }

    .about-story-image,
    .about-roots-image {
        min-height: 280px;
        height: 280px;
    }

    .about-band {
        padding: 48px 0;
    }

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

    .value-grid article:last-child {
        grid-column: 1 / -1;
    }

    .about-roots-copy {
        padding: 48px 5%;
    }

    .about-cta-inner {
        align-items: flex-start;
        flex-direction: column;
        gap: 18px;
    }

    .about-cta img {
        position: absolute;
        right: 10px;
        bottom: -8px;
        opacity: .55;
    }
}

@media (max-width: 600px) {
    .about-hero h1 {
        font-size: 44px;
    }

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

    .about-stats div:nth-child(2) {
        border-right: 0;
    }

    .about-stats div:nth-child(-n + 2) {
        border-bottom: 1px solid #e7dfd2;
    }

    .roots-meta {
        grid-template-columns: 1fr;
    }
}

.site-footer .footer-follow .social-links {
    gap: 10px;
    margin-top: 16px;
}

.site-footer .footer-follow .social-links a i {
    display: block;
    line-height: 1;
}

.site-footer .footer-follow .social-links {
    gap: 12px;
}

.site-footer .footer-follow .social-links a {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    font-size: 20px;
}

@media (min-width: 901px) {
    .site-footer {
        padding-top: 44px;
    }

    .site-footer .footer-grid {
        gap: 40px;
        padding-bottom: 38px;
    }

    .site-footer .footer-logo strong {
        font-size: 30px;
    }

    .site-footer .footer-logo>span:not(.footer-logo-mark) {
        font-size: 12px;
        letter-spacing: 5px;
    }

    .site-footer .footer-logo-mark {
        width: 54px;
        height: 54px;
        font-size: 54px;
    }

    .site-footer .footer-logo {
        grid-template-columns: 54px auto;
    }

    .site-footer .footer-company>p {
        margin-left: 64px;
        font-size: 12px;
    }

    .site-footer .footer-column h3 {
        margin-bottom: 14px;
        font-size: 16px;
    }

    .site-footer .footer-column a,
    .site-footer .footer-contact {
        margin: 10px 0;
        font-size: 14px;
        line-height: 1.35;
    }

    .site-footer .footer-contact-icon {
        width: 22px;
        font-size: 17px;
    }

    .site-footer .footer-bottom-inner {
        min-height: 56px;
        font-size: 12px;
    }
}

@media (max-width: 900px) {
    .site-footer .footer-follow .social-links a {
        width: 32px;
        height: 32px;
        font-size: 16px;
    }

    .site-footer .footer-follow .social-links {
        gap: 9px;
    }
}

@media (min-width: 901px) and (max-width: 1400px) {
    .site-footer .footer-grid {
        grid-template-columns: 1.1fr 1fr 1fr 1.3fr 1.1fr;
        gap: 20px;
    }

    .site-footer .footer-follow .social-links {
        flex-wrap: nowrap;
        gap: 9px;
    }

    .site-footer .footer-follow .social-links a {
        width: 34px;
        height: 34px;
        flex: 0 0 34px;
        font-size: 17px;
    }
}

/* =========================================================
   MAHALAXMI FOOTER  (new site-wide footer)
   All class names use the "mxf-" prefix so they can never clash
   with the older footer / brand / social styles above.
   ========================================================= */
.mx-footer {
    --mxf-green-900: #0d3527;
    --mxf-green-800: #113d2e;
    --mxf-green-700: #16483a;
    --mxf-cream: #f4f1e6;
    --mxf-gold: #c9a45c;
    --mxf-gold-line: rgba(201, 164, 92, 0.55);
    --mxf-text: #f1eee3;
    --mxf-font-brand: "Cinzel", "Trajan Pro", Georgia, serif;
    --mxf-font-ui: "Figtree", "Segoe UI", system-ui, -apple-system, Roboto, Arial, sans-serif;

    position: relative;
    width: 100%;
    margin: 0;
    padding: 0;
    font-family: var(--mxf-font-ui);
    color: var(--mxf-text);
    background:
        radial-gradient(120% 140% at 15% 0%, var(--mxf-green-700) 0%, transparent 60%),
        linear-gradient(180deg, var(--mxf-green-800), var(--mxf-green-900));
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.mx-footer *,
.mx-footer *::before,
.mx-footer *::after {
    box-sizing: border-box;
}

/* faint fabric-like grain */
.mx-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.08;
    background-image:
        repeating-linear-gradient(45deg, rgba(255, 255, 255, .5) 0 1px, transparent 1px 3px),
        repeating-linear-gradient(-45deg, rgba(0, 0, 0, .6) 0 1px, transparent 1px 3px);
}

.mx-footer .mxf-inner {
    position: relative;
    max-width: 1640px;
    margin: 0 auto;
    padding: 18px 58px 20px;
}

/* ---------- Top row ---------- */
.mx-footer .mxf-top {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 24px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--mxf-gold-line);
}

/* Brand */
.mx-footer .mxf-brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    justify-self: start;
    color: inherit;
    text-decoration: none;
}

.mx-footer .mxf-mark {
    width: 66px;
    height: 66px;
    flex: none;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--mxf-cream);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.mx-footer .mxf-mark svg {
    width: 38px;
    height: 38px;
}

.mx-footer .mxf-brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.mx-footer .mxf-brand-name {
    font-family: var(--mxf-font-brand);
    font-weight: 600;
    font-size: 24px;
    letter-spacing: 0.04em;
    color: var(--mxf-cream);
}

.mx-footer .mxf-brand-sub {
    margin-top: 8px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--mxf-gold);
}

/* Navigation */
.mx-footer .mxf-nav ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px 27px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.mx-footer .mxf-nav a {
    position: relative;
    display: inline-block;
    padding: 4px 0 6px;
    color: var(--mxf-text);
    font-size: 16.5px;
    font-weight: 400;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.2s ease;
}

.mx-footer .mxf-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1.5px;
    background: var(--mxf-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
}

.mx-footer .mxf-nav a:hover::after,
.mx-footer .mxf-nav a[aria-current="page"]::after {
    transform: scaleX(1);
}

.mx-footer .mxf-nav a:hover {
    color: #fff;
}

/* Social icons */
.mx-footer .mxf-social {
    display: flex;
    justify-self: end;
    gap: 22px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.mx-footer .mxf-social a {
    width: 39px;
    height: 39px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--mxf-cream);
    color: var(--mxf-green-800);
    transition: transform 0.2s ease, background 0.2s ease;
}

.mx-footer .mxf-social a:hover {
    transform: translateY(-2px);
    background: #fff;
}

.mx-footer .mxf-social svg {
    width: 20px;
    height: 20px;
}

/* ---------- Bottom row ---------- */
.mx-footer .mxf-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 8px 24px;
    padding-top: 20px;
    font-size: 14.5px;
    color: var(--mxf-text);
}

.mx-footer .mxf-bottom p {
    margin: 0;
    color: var(--mxf-text);
}

.mx-footer .mxf-tagline {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0 14px;
}

.mx-footer .mxf-divider {
    width: 1px;
    height: 14px;
    background: rgba(241, 238, 227, 0.7);
}

/* ---------- Focus ---------- */
.mx-footer a:focus-visible {
    outline: 2px solid var(--mxf-gold);
    outline-offset: 3px;
    border-radius: 4px;
}

/* ---------- Responsive ---------- */
@media (max-width: 1180px) {
    .mx-footer .mxf-top {
        grid-template-columns: 1fr auto;
        grid-template-areas:
            "brand social"
            "nav   nav";
    }

    .mx-footer .mxf-brand {
        grid-area: brand;
    }

    .mx-footer .mxf-social {
        grid-area: social;
    }

    .mx-footer .mxf-nav {
        grid-area: nav;
    }

    .mx-footer .mxf-nav ul {
        justify-content: flex-start;
    }
}

@media (max-width: 640px) {
    .mx-footer .mxf-inner {
        padding: 22px 20px 20px;
    }

    .mx-footer .mxf-top {
        grid-template-columns: 1fr;
        grid-template-areas: "brand" "nav" "social";
        gap: 20px;
    }

    .mx-footer .mxf-social {
        justify-self: start;
        gap: 16px;
    }

    .mx-footer .mxf-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .mx-footer .mxf-tagline {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .mx-footer .mxf-divider {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .mx-footer * {
        transition: none !important;
    }
}

/* =========================================================
   SITE NOTICE & EMERGENCY STOP MODAL POPUP
   ========================================================= */

.mx-notice-overlay {
    position: fixed;
    inset: 0;
    z-index: 99999999;
    background: rgba(6, 20, 15, 0.88);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.mx-notice-overlay.is-active {
    opacity: 1;
    visibility: visible;
}

.mx-notice-dialog {
    width: 100%;
    max-width: 580px;
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(201, 154, 68, 0.3);
    overflow: hidden;
    transform: scale(0.92) translateY(24px);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    position: relative;
}

.mx-notice-overlay.is-active .mx-notice-dialog {
    transform: scale(1) translateY(0);
}

/* Header Bar */
.mx-notice-header {
    padding: 24px 28px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    border-bottom: 1px solid #f0ece3;
}

.mx-notice-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.mx-notice--emerald .mx-notice-pill {
    background: rgba(15, 61, 46, 0.1);
    color: #0f3d2e;
    border: 1px solid rgba(15, 61, 46, 0.2);
}

.mx-notice--amber .mx-notice-pill {
    background: rgba(217, 119, 6, 0.12);
    color: #b45309;
    border: 1px solid rgba(217, 119, 6, 0.25);
}

.mx-notice--ruby .mx-notice-pill,
.mx-notice--blocking .mx-notice-pill {
    background: rgba(220, 38, 38, 0.12);
    color: #b91c1c;
    border: 1px solid rgba(220, 38, 38, 0.25);
}

.mx-notice-close {
    background: #f4efe6;
    border: none;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    color: #555;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 14px;
}

.mx-notice-close:hover {
    background: #0f3d2e;
    color: #ffffff;
}

/* Modal Body */
.mx-notice-body {
    padding: 24px 28px;
    text-align: center;
}

.mx-notice-icon-wrap {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
}

.mx-notice--emerald .mx-notice-icon-wrap {
    background: rgba(15, 61, 46, 0.1);
    color: #0f3d2e;
}

.mx-notice--amber .mx-notice-icon-wrap {
    background: rgba(217, 119, 6, 0.12);
    color: #d97706;
}

.mx-notice--ruby .mx-notice-icon-wrap,
.mx-notice--blocking .mx-notice-icon-wrap {
    background: rgba(220, 38, 38, 0.12);
    color: #dc2626;
}

.mx-notice-title {
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(20px, 2.5vw, 25px);
    color: #173f35;
    margin: 0 0 12px;
    font-weight: 700;
    line-height: 1.25;
}

.mx-notice--ruby .mx-notice-title,
.mx-notice--blocking .mx-notice-title {
    color: #991b1b;
}

.mx-notice-text {
    font-size: 14.5px;
    color: #4b5550;
    line-height: 1.6;
    margin: 0 0 20px;
    white-space: pre-line;
}

.mx-notice-lock-banner {
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 10px;
    padding: 12px 16px;
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-align: left;
}

.mx-notice-lock-banner svg {
    color: #dc2626;
    flex-shrink: 0;
}

.mx-notice-lock-banner strong {
    display: block;
    font-size: 13px;
    color: #991b1b;
}

.mx-notice-lock-banner p {
    margin: 2px 0 0;
    font-size: 12px;
    color: #7f1d1d;
}

/* Footer / Action */
.mx-notice-footer {
    padding: 16px 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    border-top: 1px solid #f0ece3;
}

.mx-notice-btn-ok {
    width: 100%;
    min-height: 48px;
    border-radius: 8px;
    border: none;
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    background: #0f3d2e;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: inherit;
}

.mx-notice--emerald .mx-notice-btn-ok {
    background: #0f3d2e;
}

.mx-notice--emerald .mx-notice-btn-ok:hover {
    background: #09271d;
}

.mx-notice--amber .mx-notice-btn-ok {
    background: #d97706;
}

.mx-notice--amber .mx-notice-btn-ok:hover {
    background: #b45309;
}

.mx-notice--ruby .mx-notice-btn-ok {
    background: #dc2626;
}

.mx-notice--ruby .mx-notice-btn-ok:hover {
    background: #b91c1c;
}

.mx-notice-contact-note {
    text-align: center;
    font-size: 13px;
    color: #647069;
}

.mx-notice-contact-note a {
    color: #0f3d2e;
    font-weight: 700;
    text-decoration: none;
}

.mx-notice-contact-note a:hover {
    text-decoration: underline;
}

body.mx-notice-locked {
    overflow: hidden !important;
    height: 100vh !important;
    touch-action: none;
}

/* =========================================================
   NEW SECTIONS — HOME PAGE REDESIGN
   ========================================================= */


/* =========================================================
   SCROLL ANIMATION SYSTEM
   ========================================================= */

.anim-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.anim-reveal.anim-visible {
    opacity: 1;
    transform: translateY(0);
}

.anim-slide-left {
    opacity: 0;
    transform: translateX(60px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.anim-slide-left.anim-visible {
    opacity: 1;
    transform: translateX(0);
}

.anim-slide-right {
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.anim-slide-right.anim-visible {
    opacity: 1;
    transform: translateX(0);
}

.anim-reveal-child {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.anim-visible .anim-reveal-child,
.anim-reveal-child.anim-visible {
    opacity: 1;
    transform: translateY(0);
}


/* =========================================================
   HERO BADGE & FLOATING ELEMENTS
   ========================================================= */

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(198, 154, 69, 0.15);
    border: 1px solid rgba(198, 154, 69, 0.3);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: var(--gold-light);
    letter-spacing: 1px;
    margin-bottom: 18px;
    backdrop-filter: blur(4px);
}

.hero-floating-elements {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.hero-float-el {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
    background: var(--gold);
}

.hero-float-el--1 {
    width: 300px; height: 300px;
    top: -50px; right: -80px;
    animation: heroFloat 8s ease-in-out infinite;
}
.hero-float-el--2 {
    width: 200px; height: 200px;
    bottom: 10%; left: -60px;
    animation: heroFloat 10s ease-in-out 2s infinite;
}
.hero-float-el--3 {
    width: 150px; height: 150px;
    top: 40%; right: 20%;
    animation: heroFloat 7s ease-in-out 1s infinite;
}
.hero-float-el--4 {
    width: 100px; height: 100px;
    bottom: 30%; left: 30%;
    animation: heroFloat 9s ease-in-out 3s infinite;
    opacity: 0.05;
}
.hero-float-el--5 {
    width: 180px; height: 180px;
    top: 20%; left: 50%;
    animation: heroFloat 11s ease-in-out 4s infinite;
    opacity: 0.04;
}

@keyframes heroFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-30px) scale(1.05); }
}


/* =========================================================
   STATS COUNTER SECTION
   ========================================================= */

.stats-section {
    padding: 80px 0;
    background: var(--green);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
}

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

.stat-card {
    text-align: center;
    padding: 30px 20px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.4s ease, background 0.4s ease;
}

.stat-card:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.08);
}

.stat-icon {
    font-size: 32px;
    margin-bottom: 12px;
}

.stat-number {
    font-family: "Cinzel", serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--gold);
    line-height: 1.1;
    display: inline;
}

.stat-suffix {
    font-family: "Cinzel", serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--gold-light);
    display: inline;
}

.stat-label {
    font-size: 15px;
    color: rgba(245, 235, 221, 0.7);
    margin-top: 8px;
    font-weight: 500;
}

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

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    .stat-number {
        font-size: 36px;
    }
}


/* =========================================================
   ABOUT IMAGE BADGE
   ========================================================= */

.about-image {
    position: relative;
}

.about-image-badge {
    position: absolute;
    bottom: 20px;
    right: -15px;
    background: var(--green);
    color: var(--cream);
    padding: 16px 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(23, 63, 53, 0.3);
    animation: badgePulse 3s ease-in-out infinite;
}

.about-badge-number {
    display: block;
    font-family: "Cinzel", serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.about-badge-text {
    display: block;
    font-size: 11px;
    color: rgba(245, 235, 221, 0.8);
    margin-top: 4px;
    letter-spacing: 0.5px;
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.04); }
}

/* About Highlights */
.about-highlights {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.about-highlights li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
}

.about-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background: var(--green);
    color: var(--gold);
    border-radius: 50%;
    font-size: 11px;
    flex-shrink: 0;
}

@media (max-width: 600px) {
    .about-highlights {
        grid-template-columns: 1fr;
    }
    .about-image-badge {
        right: 10px;
        bottom: 10px;
    }
}


/* =========================================================
   PRODUCT CARD OVERLAY
   ========================================================= */

.product-overlay {
    position: absolute;
    inset: 0;
    background: rgba(23, 63, 53, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 10px;
}

.product-image {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-overlay-btn {
    padding: 10px 24px;
    background: var(--gold);
    color: var(--green);
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    transform: translateY(10px);
    transition: transform 0.3s ease;
    text-decoration: none;
}

.product-card:hover .product-overlay-btn {
    transform: translateY(0);
}


/* =========================================================
   FEATURED PRODUCT SHOWCASE
   ========================================================= */

.featured-showcase {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f3ea 0%, var(--cream-light) 50%, #f0e8d8 100%);
    position: relative;
    overflow: hidden;
}

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

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

.featured-image img {
    max-width: 400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 20px 40px rgba(23, 63, 53, 0.2));
    transition: transform 0.5s ease;
}

.featured-image:hover img {
    transform: translateY(-10px) scale(1.02);
}

.featured-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(198, 154, 69, 0.15) 0%, transparent 70%);
    z-index: 1;
    animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.15); opacity: 0.8; }
}

.featured-content .section-label {
    margin-bottom: 12px;
}

.featured-content h2 {
    font-family: "Playfair Display", serif;
    font-size: 40px;
    color: var(--green);
    margin-bottom: 16px;
    line-height: 1.2;
}

.featured-content p {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 28px;
}

.featured-benefits {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 30px;
}

.featured-benefit {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.featured-benefit-icon {
    font-size: 24px;
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(23, 63, 53, 0.06);
    border-radius: 10px;
}

.featured-benefit strong {
    display: block;
    font-size: 15px;
    color: var(--text);
    margin-bottom: 2px;
}

.featured-benefit span {
    font-size: 13px;
    color: var(--text-light);
}

@media (max-width: 900px) {
    .featured-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .featured-image img {
        max-width: 280px;
    }
    .featured-content h2 {
        font-size: 30px;
    }
}


/* =========================================================
   TRUST BADGES SECTION
   ========================================================= */

.trust-section {
    padding: 90px 0;
    background: var(--cream-light);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 50px;
}

.trust-card {
    text-align: center;
    padding: 40px 24px;
    background: var(--white);
    border-radius: 14px;
    border: 1px solid var(--border);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    overflow: hidden;
}

.trust-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--green), var(--gold));
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

.trust-card:hover::before {
    transform: scaleX(1);
}

.trust-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
}

.trust-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 18px;
    background: linear-gradient(135deg, var(--green), var(--green-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 24px;
    transition: transform 0.4s ease;
}

.trust-card:hover .trust-icon {
    transform: scale(1.1) rotate(5deg);
}

.trust-card h3 {
    font-family: "Playfair Display", serif;
    font-size: 18px;
    color: var(--green);
    margin-bottom: 8px;
}

.trust-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.5;
}

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

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


/* =========================================================
   TESTIMONIAL CAROUSEL
   ========================================================= */

.testimonial-carousel {
    position: relative;
    overflow: hidden;
    margin-top: 40px;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-carousel .testimonial-card {
    min-width: 100%;
    padding: 0 40px;
    box-sizing: border-box;
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .testimonial-carousel .testimonial-card {
        min-width: 50%;
    }
}

@media (min-width: 1024px) {
    .testimonial-carousel .testimonial-card {
        min-width: 33.333%;
    }
}

.testimonial-stars {
    color: var(--gold);
    font-size: 16px;
    letter-spacing: 2px;
    margin: 12px 0 8px;
}

.testimonial-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
}

.testimonial-prev,
.testimonial-next {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 2px solid var(--border);
    background: var(--white);
    color: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
}

.testimonial-prev:hover,
.testimonial-next:hover {
    background: var(--green);
    color: var(--gold);
    border-color: var(--green);
}

.testimonial-dots {
    display: flex;
    gap: 8px;
}

.testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
}

.testimonial-dot.active {
    background: var(--gold);
    transform: scale(1.2);
}


/* =========================================================
   JOURNEY / OUR STORY SECTION
   ========================================================= */

.journey-section {
    padding: 100px 0;
    background: var(--green);
    color: var(--cream);
    position: relative;
    overflow: hidden;
}

.journey-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(198, 154, 69, 0.05);
}

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

.journey-content .section-label {
    color: var(--gold);
}

.journey-content h2 {
    font-family: "Playfair Display", serif;
    font-size: 40px;
    color: var(--cream);
    margin-bottom: 20px;
    line-height: 1.2;
}

.journey-content p {
    color: rgba(245, 235, 221, 0.7);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 14px;
}

.journey-milestones {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-top: 30px;
}

.journey-milestone {
    padding: 16px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.3s ease, background 0.3s ease;
}

.journey-milestone:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.1);
}

.journey-year {
    font-family: "Cinzel", serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 4px;
}

.journey-desc {
    font-size: 13px;
    color: rgba(245, 235, 221, 0.6);
}

.journey-image-stack {
    position: relative;
    height: 450px;
}

.journey-img {
    position: absolute;
    border-radius: 14px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    object-fit: cover;
    transition: transform 0.5s ease;
}

.journey-img--1 {
    width: 280px;
    height: 340px;
    top: 0;
    left: 0;
    z-index: 2;
}

.journey-img--2 {
    width: 260px;
    height: 300px;
    bottom: 0;
    right: 0;
    z-index: 1;
}

.journey-image-stack:hover .journey-img--1 {
    transform: translate(-8px, -8px) rotate(-2deg);
}

.journey-image-stack:hover .journey-img--2 {
    transform: translate(8px, 8px) rotate(2deg);
}

@media (max-width: 900px) {
    .journey-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .journey-content h2 {
        font-size: 30px;
    }
    .journey-image-stack {
        height: 320px;
    }
    .journey-img--1 {
        width: 200px;
        height: 260px;
    }
    .journey-img--2 {
        width: 180px;
        height: 220px;
    }
}


/* =========================================================
   GALLERY OVERLAY
   ========================================================= */

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(23, 63, 53, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: inherit;
    color: var(--gold);
    font-size: 24px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
}

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

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

.gallery-item img {
    transition: transform 0.5s ease;
}


/* =========================================================
   FAQ SECTION
   ========================================================= */

.faq-section {
    padding: 85px 0 95px;
    background: #faf6ee;
}

.faq-section .section-header.centered {
    text-align: center;
    margin: 0 auto 38px;
    max-width: 700px;
    display: block;
}

.faq-section .section-header h2 {
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(32px, 3.4vw, 42px);
    font-weight: 700;
    color: var(--green);
    margin: 0 0 10px 0;
    line-height: 1.2;
}

.faq-section .section-header p {
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    color: var(--text-light);
    margin: 0 auto;
    line-height: 1.5;
}

.faq-list {
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.faq-item {
    margin-bottom: 0;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e7e1d4;
    background: #ffffff;
    box-shadow: 0 2px 6px rgba(19, 58, 47, 0.025);
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.faq-item:hover {
    border-color: #d1b87a;
    box-shadow: 0 6px 18px rgba(19, 58, 47, 0.06);
}

.faq-item.active {
    border-color: #c69a45;
    box-shadow: 0 6px 22px rgba(19, 58, 47, 0.08);
}

.faq-question {
    width: 100%;
    padding: 20px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border: none;
    background: transparent;
    cursor: pointer;
    text-align: left;
    box-sizing: border-box;
}

.faq-question span {
    font-family: "DM Sans", sans-serif;
    font-size: 16.5px;
    font-weight: 600;
    color: #1a221e;
    line-height: 1.4;
    flex: 1;
    transition: color 0.2s ease;
}

.faq-question:hover span,
.faq-item.active .faq-question span {
    color: var(--green);
}

.faq-icon {
    font-size: 14px;
    color: var(--gold);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                padding 0.4s ease;
    padding: 0 28px;
    box-sizing: border-box;
}

.faq-item.active .faq-answer {
    max-height: 320px;
    padding: 2px 28px 22px;
}

.faq-answer p {
    font-family: "DM Sans", sans-serif;
    font-size: 15px;
    color: #555d58;
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 768px) {
    .faq-list {
        max-width: 100%;
        padding: 0 4px;
    }
    .faq-question {
        padding: 18px 20px;
    }
    .faq-answer {
        padding: 0 20px;
    }
    .faq-item.active .faq-answer {
        padding: 2px 20px 18px;
    }
}


/* =========================================================
   NEWSLETTER SECTION
   ========================================================= */

.newsletter-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 50%, #0d2a22 100%);
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: -60%;
    right: -20%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(198, 154, 69, 0.06);
}

.newsletter-section::after {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -10%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(198, 154, 69, 0.04);
}

.newsletter-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.newsletter-content .section-label {
    color: var(--gold);
}

.newsletter-content h2 {
    font-family: "Playfair Display", serif;
    font-size: 34px;
    color: var(--cream);
    margin-bottom: 12px;
    line-height: 1.2;
}

.newsletter-content p {
    color: rgba(245, 235, 221, 0.6);
    font-size: 15px;
    line-height: 1.6;
}

.newsletter-input-wrap {
    display: flex;
    gap: 0;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: border-color 0.3s ease;
}

.newsletter-input-wrap:focus-within {
    border-color: var(--gold);
}

.newsletter-input {
    flex: 1;
    padding: 16px 20px;
    border: none;
    background: transparent;
    color: var(--cream);
    font-family: "DM Sans", sans-serif;
    font-size: 15px;
    outline: none;
}

.newsletter-input::placeholder {
    color: rgba(245, 235, 221, 0.4);
}

.newsletter-btn {
    padding: 16px 28px;
    background: var(--gold);
    color: var(--green);
    border: none;
    font-family: "DM Sans", sans-serif;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.3s ease;
}

.newsletter-btn:hover {
    background: var(--gold-light);
}

.newsletter-btn span {
    margin-left: 6px;
}

.newsletter-note {
    margin-top: 12px;
    font-size: 12px;
    color: rgba(245, 235, 221, 0.35);
}

.newsletter-success {
    padding: 16px 24px;
    background: rgba(198, 154, 69, 0.15);
    border: 1px solid rgba(198, 154, 69, 0.3);
    border-radius: 10px;
    color: var(--gold-light);
    font-weight: 500;
    text-align: center;
}

@media (max-width: 768px) {
    .newsletter-inner {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .newsletter-content h2 {
        font-size: 26px;
    }
    .newsletter-input-wrap {
        flex-direction: column;
    }
    .newsletter-btn {
        border-radius: 0;
    }
}


/* =========================================================
   ENHANCED PRODUCT CARD HOVER
   ========================================================= */

.product-card {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(23, 63, 53, 0.15);
}


/* =========================================================
   ENHANCED WHY-CARD HOVER
   ========================================================= */

.why-card {
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(23, 63, 53, 0.12);
}

.why-icon {
    transition: transform 0.4s ease;
}

.why-card:hover .why-icon {
    transform: scale(1.15) rotate(5deg);
}


/* =========================================================
   ENHANCED BRAND CARD HOVER
   ========================================================= */

.brand-card {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.brand-card:hover {
    transform: translateY(-6px) scale(1.02);
}



/* =========================================================
   LUXURY REDESIGN: TRUST BADGES & TESTIMONIALS
   ========================================================= */

.trust-section {
    padding: 85px 0 95px !important;
    background: linear-gradient(180deg, #fcfaf5 0%, #f6f0e4 100%) !important;
    position: relative !important;
    border-top: 1px solid rgba(198, 154, 69, 0.15) !important;
    border-bottom: 1px solid rgba(198, 154, 69, 0.15) !important;
}

.trust-section .section-header h2 {
    font-family: "Playfair Display", Georgia, serif !important;
    font-size: clamp(34px, 3.2vw, 48px) !important;
    color: var(--green) !important;
    margin-bottom: 12px !important;
}

.trust-section .section-header p {
    color: var(--text-light) !important;
    font-size: 16px !important;
    max-width: 600px !important;
    margin: 0 auto !important;
}

.trust-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 26px !important;
    margin-top: 48px !important;
}

.trust-card {
    text-align: center !important;
    padding: 44px 28px 36px !important;
    background: #ffffff !important;
    border-radius: 16px !important;
    border: 1px solid var(--border) !important;
    box-shadow: 0 10px 30px rgba(23, 63, 53, 0.05) !important;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease, border-color 0.4s ease !important;
    position: relative !important;
    overflow: hidden !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
}

.trust-card::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: 4px !important;
    background: linear-gradient(90deg, var(--green), var(--gold)) !important;
    transform: scaleX(0) !important;
    transition: transform 0.4s ease !important;
    transform-origin: left !important;
}

.trust-card:hover::before {
    transform: scaleX(1) !important;
}

.trust-card:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 20px 45px rgba(23, 63, 53, 0.12) !important;
    border-color: var(--gold) !important;
}

.trust-icon {
    width: 72px !important;
    height: 72px !important;
    margin: 0 auto 22px !important;
    background: linear-gradient(135deg, var(--green), var(--green-light)) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: var(--gold) !important;
    font-size: 28px !important;
    box-shadow: 0 8px 20px rgba(23, 63, 53, 0.18) !important;
    transition: transform 0.4s ease, background 0.4s ease, color 0.4s ease !important;
}

.trust-card:hover .trust-icon {
    transform: scale(1.1) rotate(6deg) !important;
    background: linear-gradient(135deg, var(--gold), #9e7527) !important;
    color: #ffffff !important;
}

.trust-card h3 {
    font-family: "Playfair Display", Georgia, serif !important;
    font-size: 21px !important;
    color: var(--green) !important;
    margin-bottom: 12px !important;
    font-weight: 700 !important;
}

.trust-card p {
    font-size: 14.5px !important;
    color: var(--text-light) !important;
    line-height: 1.6 !important;
    margin: 0 !important;
}

@media (max-width: 1024px) {
    .trust-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 580px) {
    .trust-grid {
        grid-template-columns: 1fr !important;
    }
    .trust-card {
        padding: 32px 20px 28px !important;
    }
}

/* --- TESTIMONIALS SECTION --- */

.testimonial-section {
    padding: 95px 0 100px !important;
    background-color: #faf5eb !important;
    background-image: radial-gradient(circle at 10% 20%, rgba(198, 154, 69, 0.08) 0%, transparent 40%),
                      radial-gradient(circle at 90% 80%, rgba(23, 63, 53, 0.06) 0%, transparent 40%) !important;
    position: relative !important;
    overflow: hidden !important;
}

.testimonial-section .section-header h2 {
    font-family: "Playfair Display", Georgia, serif !important;
    font-size: clamp(34px, 3.2vw, 48px) !important;
    color: var(--green) !important;
    margin-bottom: 12px !important;
}

.testimonial-section .section-header p {
    color: var(--text-light) !important;
    font-size: 16px !important;
    max-width: 650px !important;
    margin: 0 auto !important;
}

.testimonial-carousel {
    position: relative !important;
    overflow: hidden !important;
    margin: 48px auto 0 !important;
    padding: 10px 0 20px !important;
    max-width: 1200px !important;
}

.testimonial-track {
    display: flex !important;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1) !important;
    will-change: transform !important;
}

.testimonial-carousel .testimonial-card {
    flex: 0 0 calc(33.333% - 20px) !important;
    min-width: calc(33.333% - 20px) !important;
    max-width: calc(33.333% - 20px) !important;
    background: #ffffff !important;
    border: 1px solid var(--border) !important;
    border-radius: 16px !important;
    padding: 32px 26px !important;
    margin: 0 10px !important;
    box-shadow: 0 10px 28px rgba(23, 63, 53, 0.05) !important;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease !important;
    box-sizing: border-box !important;
    display: flex !important;
    flex-direction: column !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
}

.testimonial-carousel .testimonial-card::before,
.testimonial-carousel .testimonial-card::after {
    display: none !important;
}

.testimonial-carousel .testimonial-card:hover {
    transform: translateY(-6px) !important;
    box-shadow: 0 18px 40px rgba(23, 63, 53, 0.12) !important;
    border-color: var(--gold) !important;
}

.testimonial-card-top {
    display: flex !important;
    align-items: center !important;
    gap: 16px !important;
    margin-bottom: 18px !important;
    position: relative !important;
}

.testimonial-avatar {
    width: 52px !important;
    height: 52px !important;
    border-radius: 50% !important;
    background: linear-gradient(135deg, var(--green), var(--green-light)) !important;
    color: var(--gold) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 20px !important;
    border: 2px solid var(--gold) !important;
    box-shadow: 0 6px 16px rgba(23, 63, 53, 0.15) !important;
    flex-shrink: 0 !important;
    position: static !important;
}

.testimonial-avatar::before,
.testimonial-avatar::after {
    display: none !important;
}

.testimonial-meta {
    flex: 1 !important;
}

.testimonial-meta h4 {
    font-family: "Playfair Display", Georgia, serif !important;
    font-size: 18px !important;
    color: var(--green) !important;
    margin: 0 0 3px !important;
    font-weight: 700 !important;
}

.testimonial-meta span {
    font-size: 13.5px !important;
    color: #7a827d !important;
    display: block !important;
    margin: 0 !important;
    letter-spacing: normal !important;
}

.testimonial-quote-icon {
    font-size: 24px !important;
    color: rgba(198, 154, 69, 0.4) !important;
}

.testimonial-stars {
    display: flex !important;
    gap: 4px !important;
    color: #e5a93b !important;
    font-size: 15px !important;
    margin-bottom: 16px !important;
    letter-spacing: normal !important;
}

.testimonial-text {
    color: #3b4540 !important;
    font-size: 15px !important;
    line-height: 1.65 !important;
    font-style: italic !important;
    margin: 0 !important;
    flex: 1 !important;
}

@media (max-width: 1024px) {
    .testimonial-carousel .testimonial-card {
        flex: 0 0 calc(50% - 20px) !important;
        min-width: calc(50% - 20px) !important;
        max-width: calc(50% - 20px) !important;
    }
}

@media (max-width: 700px) {
    .testimonial-carousel .testimonial-card {
        flex: 0 0 calc(100% - 20px) !important;
        min-width: calc(100% - 20px) !important;
        max-width: calc(100% - 20px) !important;
    }
}

.testimonial-nav {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 18px !important;
    margin-top: 40px !important;
}

.testimonial-prev,
.testimonial-next {
    width: 48px !important;
    height: 48px !important;
    border-radius: 50% !important;
    border: 2px solid var(--gold) !important;
    background: #ffffff !important;
    color: var(--green) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    font-size: 16px !important;
    box-shadow: 0 4px 12px rgba(23, 63, 53, 0.08) !important;
    transition: all 0.3s ease !important;
}

.testimonial-prev:hover,
.testimonial-next:hover {
    background: var(--green) !important;
    color: var(--gold) !important;
    border-color: var(--green) !important;
    transform: scale(1.08) !important;
}

.testimonial-dots {
    display: flex !important;
    gap: 10px !important;
    align-items: center !important;
}

.testimonial-dot {
    width: 12px !important;
    height: 12px !important;
    border-radius: 50% !important;
    background: #d8cebe !important;
    border: none !important;
    cursor: pointer !important;
    padding: 0 !important;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}

.testimonial-dot.active {
    background: var(--gold) !important;
    transform: scale(1.35) !important;
    box-shadow: 0 2px 6px rgba(198, 154, 69, 0.4) !important;
}



/* =========================================================
   WHAT OUR PARTNERS SAY (MATCHING USER SPECIFICATION)
   ========================================================= */

.testimonial-section {
    padding: 60px 0 70px !important;
    background: #fbf8f2 !important;
    background-image: none !important;
    border: none !important;
}

.testi-heading {
    font-family: "Playfair Display", Georgia, serif !important;
    font-size: 32px !important;
    font-weight: 700 !important;
    color: #123d30 !important;
    margin: 0 0 24px 0 !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    text-align: left !important;
}

.testi-heading svg {
    width: 24px !important;
    height: 24px !important;
    fill: #173f35 !important;
}

.testimonial-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 22px !important;
}

.testi-card {
    background: #ffffff !important;
    border: 1px solid #e7e2d8 !important;
    border-radius: 12px !important;
    padding: 22px 24px !important;
    display: flex !important;
    align-items: flex-start !important;
    gap: 16px !important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02) !important;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease !important;
}

.testi-card:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 20px rgba(23, 63, 53, 0.07) !important;
    border-color: #c69a45 !important;
}

.testi-avatar {
    width: 48px !important;
    height: 48px !important;
    border-radius: 50% !important;
    background: #e2e4e3 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
    border: none !important;
    box-shadow: none !important;
}

.testi-avatar svg {
    width: 26px !important;
    height: 26px !important;
    fill: #3b423f !important;
}

.testi-content {
    flex: 1 !important;
}

.testi-content p {
    font-size: 14.5px !important;
    line-height: 1.45 !important;
    color: #333333 !important;
    margin-bottom: 12px !important;
    font-weight: 400 !important;
    font-style: normal !important;
}

.testi-content span {
    font-size: 13.5px !important;
    font-weight: 700 !important;
    color: #222b26 !important;
    display: block !important;
    margin: 0 !important;
}

@media (max-width: 900px) {
    .testimonial-grid {
        grid-template-columns: 1fr !important;
    }
}
