/* =========================
   GLOBAL
========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "DM Sans", sans-serif;
    color: #173b2b;
    background: #ffffff;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: 90%;
    max-width: 1250px;
    margin: auto;
}


/* =========================
   HEADER
========================= */

.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 22px 0;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* Logo */

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 2px solid white;
    border-radius: 50%;

    color: white;
    font-size: 17px;
    font-weight: 700;
}

.logo-text {
    display: flex;
    flex-direction: column;
    color: white;
    line-height: 1.1;
}

.logo-text strong {
    font-size: 21px;
    letter-spacing: 2px;
}

.logo-text small {
    font-size: 8px;
    letter-spacing: 2px;
    margin-top: 4px;
}


/* Navigation */

.navbar {
    display: flex;
    align-items: center;
    gap: 30px;
}

.navbar a {
    position: relative;

    color: white;
    font-size: 14px;
    font-weight: 500;

    transition: 0.3s;
}

.navbar a:hover,
.navbar a.active {
    color: #d7e9b8;
}

.navbar a::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: -8px;

    width: 0;
    height: 2px;

    background: #d7e9b8;

    transition: 0.3s;
}

.navbar a:hover::after,
.navbar a.active::after {
    width: 100%;
}


/* Header Button */

.nav-btn {
    padding: 13px 22px;

    background: white;
    color: #173b2b;

    border-radius: 30px;

    font-size: 13px;
    font-weight: 700;

    transition: 0.3s;
}

.nav-btn:hover {
    transform: translateY(-2px);
}


/* Mobile Button */

.menu-btn {
    display: none;

    background: none;
    border: none;

    color: white;
    font-size: 30px;

    cursor: pointer;
}


/* =========================
   HERO
========================= */

.hero {
    position: relative;

    min-height: 100vh;

    display: flex;
    align-items: center;

    background:
        linear-gradient(90deg,
            rgba(12, 48, 31, 0.94),
            rgba(20, 72, 44, 0.72),
            rgba(20, 72, 44, 0.20)),
        url("https://images.unsplash.com/photo-1550583724-b2692b85b150?auto=format&fit=crop&w=2000&q=85");

    background-size: cover;
    background-position: center;
}


/* Hero Content */

.hero-content {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding-top: 70px;
}


/* Hero Text */

.hero-text {
    max-width: 700px;
}

.hero-tag {
    display: inline-block;

    color: #d7e9b8;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 3px;

    margin-bottom: 22px;
}

.hero h1 {
    color: white;

    font-family: "Playfair Display", serif;

    font-size: clamp(48px, 6vw, 82px);

    line-height: 1.05;

    margin-bottom: 25px;
}

.hero h1 span {
    color: #d7e9b8;
}

.hero-text p {
    max-width: 590px;

    color: rgba(255, 255, 255, 0.82);

    font-size: 17px;

    line-height: 1.8;

    margin-bottom: 35px;
}


/* Buttons */

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.primary-btn,
.secondary-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;

    padding: 16px 25px;

    border-radius: 30px;

    font-size: 14px;
    font-weight: 700;

    transition: 0.3s;
}

.primary-btn {
    background: #d7e9b8;
    color: #173b2b;
}

.primary-btn:hover {
    transform: translateY(-3px);
}

.primary-btn span {
    font-size: 20px;
}

.secondary-btn {
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.secondary-btn:hover {
    background: white;
    color: #173b2b;
}


/* =========================
   HERO CARD
========================= */

.hero-card {
    width: 290px;

    padding: 30px;

    border-radius: 20px;

    background: rgba(255, 255, 255, 0.12);

    border: 1px solid rgba(255, 255, 255, 0.25);

    backdrop-filter: blur(12px);

    color: white;
}

.card-icon {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #d7e9b8;
    color: #173b2b;

    margin-bottom: 20px;
}

.hero-card h3 {
    font-family: "Playfair Display", serif;

    font-size: 23px;

    margin-bottom: 12px;
}

.hero-card p {
    color: rgba(255, 255, 255, 0.75);

    font-size: 14px;

    line-height: 1.7;
}


/* =========================
   SCROLL
========================= */

.scroll-down {
    position: absolute;

    bottom: 30px;
    left: 50%;

    transform: translateX(-50%);

    display: flex;
    align-items: center;
    gap: 12px;

    color: rgba(255, 255, 255, 0.7);

    font-size: 11px;

    letter-spacing: 1px;
}

.scroll-down span {
    width: 25px;
    height: 40px;

    border: 1px solid rgba(255, 255, 255, 0.5);

    border-radius: 20px;

    position: relative;
}

.scroll-down span::after {
    content: "";

    position: absolute;

    top: 8px;
    left: 50%;

    width: 4px;
    height: 8px;

    transform: translateX(-50%);

    background: white;
    border-radius: 5px;
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 900px) {

    .navbar,
    .nav-btn {
        display: none;
    }

    .menu-btn {
        display: block;
    }

    .hero-content {
        padding-top: 110px;
    }

    .hero-card {
        display: none;
    }

}


@media (max-width: 600px) {

    .container {
        width: 92%;
    }

    .hero {
        min-height: 100svh;
    }

    .hero h1 {
        font-size: 48px;
    }

    .hero-text p {
        font-size: 15px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .scroll-down {
        display: none;
    }

}

/* =========================
   ABOUT SECTION
========================= */

.about-section {
    padding: 120px 0 90px;
    background: #f7f8f2;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
    align-items: center;
}


/* Image */

.about-image {
    position: relative;
}

.image-box {
    width: 100%;
    height: 570px;
    overflow: hidden;
    border-radius: 4px;
    background: #dfe8d8;
}

.image-box img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s ease;
}

.image-box:hover img {
    transform: scale(1.05);
}


/* Experience Card */

.experience-card {
    position: absolute;

    right: -35px;
    bottom: 35px;

    width: 170px;

    padding: 25px;

    background: #173b2b;
    color: white;

    display: flex;
    flex-direction: column;

    border-left: 5px solid #c9df9d;
}

.experience-card strong {
    font-family: "Playfair Display", serif;
    font-size: 42px;
    color: #d7e9b8;
}

.experience-card span {
    font-size: 12px;
    letter-spacing: 1px;
    margin-top: 5px;
}


/* Content */

.section-tag {
    display: inline-block;

    color: #65804e;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 2.5px;

    margin-bottom: 20px;
}

.about-content h2 {
    font-family: "Playfair Display", serif;

    font-size: clamp(40px, 4vw, 58px);

    line-height: 1.12;

    color: #173b2b;

    margin-bottom: 25px;
}

.about-content h2 span {
    color: #78965b;
}

.about-content p {
    color: #68756c;

    font-size: 15px;

    line-height: 1.8;

    margin-bottom: 15px;
}

.about-intro {
    font-size: 17px !important;
    color: #425548 !important;
}


/* Features */

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 25px;

    margin: 30px 0;
}

.feature {
    display: flex;
    gap: 13px;
    align-items: flex-start;
}

.feature-icon {
    min-width: 40px;
    height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #dfeacb;
    color: #365633;

    font-weight: 700;
}

.feature h4 {
    color: #173b2b;
    font-size: 15px;
    margin-bottom: 5px;
}

.feature p {
    font-size: 12px !important;
    margin: 0;
}


/* Button */

.about-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;

    padding: 15px 23px;

    background: #173b2b;
    color: white;

    border-radius: 30px;

    font-size: 13px;
    font-weight: 700;

    transition: 0.3s;
}

.about-btn:hover {
    background: #78965b;
    transform: translateY(-3px);
}

.about-btn span {
    font-size: 18px;
}


/* =========================
   STATISTICS
========================= */

.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    margin-top: 100px;

    border-top: 1px solid #dce2d7;
    padding-top: 45px;
}

.stat-item {
    text-align: center;

    border-right: 1px solid #dce2d7;
}

.stat-item:last-child {
    border-right: none;
}

.stat-item strong {
    display: block;

    font-family: "Playfair Display", serif;

    font-size: 48px;

    color: #173b2b;
}

.stat-item strong::after {
    content: "+";
}

.stat-item span {
    display: block;

    margin-top: 5px;

    color: #788279;

    font-size: 12px;

    letter-spacing: 1px;
}


/* =========================
   ABOUT RESPONSIVE
========================= */

@media (max-width: 900px) {

    .about-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .image-box {
        height: 450px;
    }

    .experience-card {
        right: 20px;
    }

    .stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
    }

    .stat-item:nth-child(2) {
        border-right: none;
    }

}


@media (max-width: 600px) {

    .about-section {
        padding: 80px 0;
    }

    .image-box {
        height: 350px;
    }

    .experience-card {
        right: 10px;
        bottom: 20px;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .stats {
        grid-template-columns: 1fr 1fr;
        margin-top: 70px;
    }

    .stat-item strong {
        font-size: 35px;
    }

}

/* =========================
   PRODUCTS SECTION
========================= */

.products-section {
    padding: 120px 0;
    background: #ffffff;
}


/* Heading */

.products-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 50px;

    margin-bottom: 50px;
}

.products-heading h2 {
    font-family: "Playfair Display", serif;

    font-size: clamp(40px, 5vw, 64px);

    line-height: 1.1;

    color: #173b2b;
}

.products-heading h2 span {
    color: #78965b;
}

.products-heading>p {
    max-width: 380px;

    color: #707b73;

    font-size: 15px;

    line-height: 1.8;
}


/* =========================
   FILTERS
========================= */

.product-filters {
    display: flex;
    align-items: center;

    gap: 10px;

    margin-bottom: 40px;

    flex-wrap: wrap;
}

.filter-btn {
    padding: 11px 21px;

    border: 1px solid #dce3d9;

    border-radius: 30px;

    background: transparent;

    color: #637067;

    font-family: "DM Sans", sans-serif;

    font-size: 13px;

    cursor: pointer;

    transition: 0.3s;
}

.filter-btn:hover,
.filter-btn.active {
    background: #173b2b;
    border-color: #173b2b;
    color: white;
}


/* =========================
   PRODUCT GRID
========================= */

.product-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 22px;
}


/* Product Card */

.product-card {
    background: #f6f8f2;

    overflow: hidden;

    transition: 0.4s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(23, 59, 43, 0.12);
}


/* Product Image */

.product-image {
    height: 360px;
    position: relative;
    overflow: hidden;
    border-radius: 0 !important;
}

.product-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border-radius: 0 !important;
    transition: transform 0.7s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.08);
}


/* Number */

.product-number {
    position: absolute;

    top: 18px;
    left: 18px;

    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.9);

    color: #173b2b;

    font-size: 11px;
    font-weight: 700;
}


/* Arrow */

.product-arrow {
    position: absolute;

    right: 18px;
    bottom: 18px;

    width: 45px;
    height: 45px;

    border: none;

    border-radius: 50%;

    background: #d7e9b8;

    color: #173b2b;

    font-size: 20px;

    cursor: pointer;

    opacity: 0;

    transform: translateY(10px);

    transition: 0.35s;
}

.product-card:hover .product-arrow {
    opacity: 1;
    transform: translateY(0);
}


/* Product Info */

.product-info {
    padding: 25px 23px 30px;
}

.product-info>span {
    color: #78965b;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 2px;
}

.product-info h3 {
    margin: 8px 0 10px;

    color: #173b2b;

    font-family: "Playfair Display", serif;

    font-size: 27px;
}

.product-info p {
    color: #748078;

    font-size: 13px;

    line-height: 1.7;
}


/* =========================
   HIDDEN PRODUCTS
========================= */

.product-card.hide {
    display: none;
}


/* =========================
   BOTTOM BUTTON
========================= */

.products-bottom {
    display: flex;
    justify-content: center;

    margin-top: 55px;
}

.products-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;

    padding: 16px 27px;

    border: 1px solid #173b2b;

    border-radius: 30px;

    color: #173b2b;

    font-size: 13px;
    font-weight: 700;

    transition: 0.3s;
}

.products-btn:hover {
    background: #173b2b;
    color: white;
}

.products-btn span {
    font-size: 18px;
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1100px) {

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-image {
        height: 400px;
    }

}


@media (max-width: 700px) {

    .products-section {
        padding: 80px 0;
    }

    .products-heading {
        flex-direction: column;
        align-items: flex-start;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }

    .product-image {
        height: 420px;
    }

}

/* =========================
   QUALITY SECTION
========================= */

.quality-section {
    padding: 120px 0;

    background: #173b2b;

    color: white;
}


/* Top */

.quality-top {
    display: grid;

    grid-template-columns: 1.2fr 0.8fr;

    gap: 80px;

    align-items: end;

    margin-bottom: 65px;
}

.quality-section .section-tag {
    color: #b7d18f;
}

.quality-title h2 {
    max-width: 700px;

    font-family: "Playfair Display", serif;

    font-size: clamp(42px, 5vw, 65px);

    line-height: 1.08;

    color: white;
}

.quality-title h2 span {
    color: #b7d18f;
}

.quality-description p {
    color: rgba(255, 255, 255, 0.68);

    font-size: 15px;

    line-height: 1.8;

    margin-bottom: 25px;
}


/* Quality Link */

.quality-link {
    display: inline-flex;

    align-items: center;

    gap: 12px;

    color: #d7e9b8;

    font-size: 13px;

    font-weight: 700;

    border-bottom: 1px solid rgba(215, 233, 184, 0.5);

    padding-bottom: 7px;
}

.quality-link span {
    font-size: 18px;

    transition: 0.3s;
}

.quality-link:hover span {
    transform: translate(4px, -4px);
}


/* =========================
   QUALITY GRID
========================= */

.quality-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    border-top: 1px solid rgba(255, 255, 255, 0.15);

    border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.quality-card {
    position: relative;

    min-height: 310px;

    padding: 30px;

    border-right: 1px solid rgba(255, 255, 255, 0.15);

    border-bottom: 1px solid rgba(255, 255, 255, 0.15);

    overflow: hidden;

    transition: 0.4s ease;
}

.quality-card:hover {
    background: rgba(255, 255, 255, 0.06);

    transform: translateY(-5px);
}


/* Card Top */

.quality-card-top {
    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-bottom: 65px;
}

.quality-number {
    color: rgba(255, 255, 255, 0.4);

    font-size: 11px;

    letter-spacing: 2px;
}

.quality-icon {
    width: 48px;
    height: 48px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #d7e9b8;

    color: #173b2b;

    font-size: 18px;

    transition: 0.4s;
}

.quality-card:hover .quality-icon {
    transform: rotate(10deg) scale(1.08);
}


/* Card Content */

.quality-card h3 {
    font-family: "Playfair Display", serif;

    font-size: 27px;

    margin-bottom: 14px;
}

.quality-card p {
    color: rgba(255, 255, 255, 0.62);

    font-size: 13px;

    line-height: 1.75;
}


/* Bottom Line */

.quality-line {
    position: absolute;

    left: 30px;
    bottom: 25px;

    width: 35px;
    height: 2px;

    background: #b7d18f;

    transition: 0.4s;
}

.quality-card:hover .quality-line {
    width: 80px;
}


/* =========================
   QUALITY BANNER
========================= */

.quality-banner {
    margin-top: 70px;

    min-height: 210px;

    padding: 45px 55px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    background:
        linear-gradient(100deg,
            rgba(215, 233, 184, 0.13),
            rgba(215, 233, 184, 0.03));

    border: 1px solid rgba(215, 233, 184, 0.2);
}

.quality-banner-content>span {
    color: #b7d18f;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 3px;
}

.quality-banner h3 {
    max-width: 650px;

    margin-top: 10px;

    font-family: "Playfair Display", serif;

    font-size: clamp(30px, 4vw, 48px);

    line-height: 1.15;
}

.quality-banner h3 em {
    color: #b7d18f;

    font-style: normal;
}


.quality-banner-number {
    display: flex;

    flex-direction: column;

    align-items: flex-end;
}

.quality-banner-number strong {
    color: #d7e9b8;

    font-family: "Playfair Display", serif;

    font-size: 55px;

    line-height: 1;
}

.quality-banner-number span {
    margin-top: 8px;

    color: rgba(255, 255, 255, 0.5);

    font-size: 10px;

    letter-spacing: 3px;
}


/* =========================
   QUALITY RESPONSIVE
========================= */

@media (max-width: 1000px) {

    .quality-top {
        grid-template-columns: 1fr;

        gap: 30px;
    }

    .quality-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


@media (max-width: 650px) {

    .quality-section {
        padding: 80px 0;
    }

    .quality-grid {
        grid-template-columns: 1fr;
    }

    .quality-card {
        min-height: 270px;
    }

    .quality-card-top {
        margin-bottom: 45px;
    }

    .quality-banner {
        flex-direction: column;

        align-items: flex-start;

        gap: 35px;

        padding: 35px 25px;
    }

    .quality-banner-number {
        align-items: flex-start;
    }

}

@media (max-width: 900px) {

    .navbar.show {
        display: flex;

        position: absolute;

        top: 80px;
        left: 5%;
        right: 5%;

        flex-direction: column;
        align-items: flex-start;

        gap: 20px;

        padding: 25px;

        background: #173b2b;

        border-radius: 15px;

        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    }

}

/* =========================
   SUSTAINABILITY SECTION
========================= */

.sustainability-section {
    padding: 120px 0;

    background: #f3f6ed;
}


/* Heading */

.sustainability-heading {
    max-width: 850px;

    margin-bottom: 65px;
}

.sustainability-heading .section-tag {
    color: #6d8956;
}

.sustainability-heading h2 {
    font-family: "Playfair Display", serif;

    font-size: clamp(42px, 5vw, 68px);

    line-height: 1.08;

    color: #173b2b;

    margin-bottom: 20px;
}

.sustainability-heading h2 span {
    color: #78965b;
}

.sustainability-heading>p {
    max-width: 620px;

    color: #6f7c72;

    font-size: 15px;

    line-height: 1.8;
}


/* =========================
   MAIN AREA
========================= */

.sustainability-main {
    display: grid;

    grid-template-columns: 1fr 1fr;

    min-height: 620px;
}


/* Image */

.sustainability-image {
    position: relative;

    overflow: hidden;
}

.sustainability-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: 0.7s ease;
}

.sustainability-image:hover img {
    transform: scale(1.05);
}


/* Badge */

.sustainability-badge {
    position: absolute;

    left: 30px;
    bottom: 30px;

    width: 125px;
    height: 125px;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #d7e9b8;

    color: #173b2b;

    transform: rotate(-8deg);
}

.sustainability-badge span {
    font-size: 9px;

    font-weight: 700;

    letter-spacing: 3px;
}

.sustainability-badge strong {
    font-family: "Playfair Display", serif;

    font-size: 24px;

    line-height: 1;
}

.sustainability-badge small {
    font-size: 10px;

    margin-top: 4px;
}


/* Content */

.sustainability-content {
    padding: 70px 65px;

    background: #173b2b;

    color: white;
}

.small-label {
    color: #b7d18f;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 3px;
}

.sustainability-content h3 {
    max-width: 500px;

    margin: 15px 0 20px;

    font-family: "Playfair Display", serif;

    font-size: clamp(38px, 4vw, 55px);

    line-height: 1.1;
}

.sustainability-content h3 em {
    color: #b7d18f;

    font-style: normal;
}

.sustainability-content>p {
    max-width: 520px;

    color: rgba(255, 255, 255, 0.65);

    font-size: 14px;

    line-height: 1.8;

    margin-bottom: 40px;
}


/* =========================
   SUSTAINABILITY ITEMS
========================= */

.sustainability-items {
    display: flex;

    flex-direction: column;

    gap: 22px;
}

.sustainability-item {
    display: flex;

    gap: 18px;

    padding-bottom: 22px;

    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.sustainability-icon {
    min-width: 46px;
    height: 46px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(215, 233, 184, 0.12);

    color: #d7e9b8;

    font-size: 17px;
}

.sustainability-item h4 {
    font-size: 15px;

    margin-bottom: 5px;
}

.sustainability-item p {
    color: rgba(255, 255, 255, 0.52);

    font-size: 12px;

    line-height: 1.6;
}


/* =========================
   SUSTAINABILITY STATS
========================= */

.sustainability-stats {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    margin-top: 55px;

    border-top: 1px solid #d9e1d1;
    border-bottom: 1px solid #d9e1d1;
}

.sustainability-stat {
    display: flex;

    align-items: center;

    gap: 15px;

    padding: 30px 25px;

    border-right: 1px solid #d9e1d1;
}

.sustainability-stat:last-child {
    border-right: none;
}

.stat-icon {
    width: 42px;
    height: 42px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #dce9c9;

    color: #527344;

    font-size: 16px;
}

.sustainability-stat strong {
    display: block;

    color: #173b2b;

    font-family: "Playfair Display", serif;

    font-size: 25px;
}

.sustainability-stat p {
    margin-top: 3px;

    color: #7b857d;

    font-size: 10px;

    letter-spacing: 0.5px;
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1000px) {

    .sustainability-main {
        grid-template-columns: 1fr;
    }

    .sustainability-image {
        height: 500px;
    }

    .sustainability-content {
        padding: 60px 45px;
    }

    .sustainability-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .sustainability-stat:nth-child(2) {
        border-right: none;
    }

}


@media (max-width: 600px) {

    .sustainability-section {
        padding: 80px 0;
    }

    .sustainability-heading {
        margin-bottom: 40px;
    }

    .sustainability-image {
        height: 400px;
    }

    .sustainability-content {
        padding: 50px 25px;
    }

    .sustainability-stats {
        grid-template-columns: 1fr;
    }

    .sustainability-stat {
        border-right: none;

        border-bottom: 1px solid #d9e1d1;
    }

    .sustainability-stat:last-child {
        border-bottom: none;
    }

}

/* =========================
   NEWS SECTION
========================= */

.news-section {
    padding: 120px 0;

    background: #ffffff;
}


/* Heading */

.news-heading {
    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 50px;

    margin-bottom: 55px;
}

.news-heading h2 {
    font-family: "Playfair Display", serif;

    color: #173b2b;

    font-size: clamp(42px, 5vw, 64px);

    line-height: 1.08;
}

.news-heading h2 span {
    color: #78965b;
}

.news-heading>p {
    max-width: 350px;

    color: #748078;

    font-size: 14px;

    line-height: 1.8;
}


/* =========================
   NEWS GRID
========================= */

.news-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 25px;
}


/* Card */

.news-card {
    background: #f5f7f1;

    overflow: hidden;

    transition: 0.4s ease;
}

.news-card:hover {
    transform: translateY(-7px);

    box-shadow: 0 20px 45px rgba(23, 59, 43, 0.12);
}


/* Image */

.news-image {
    position: relative;

    height: 280px;

    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: 0.7s ease;
}

.news-card:hover .news-image img {
    transform: scale(1.07);
}


/* Category */

.news-category {
    position: absolute;

    top: 18px;
    left: 18px;

    padding: 8px 12px;

    background: #d7e9b8;

    color: #173b2b;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 1.5px;
}


/* Content */

.news-content {
    padding: 27px 25px 30px;
}

.news-date {
    color: #78965b;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1.5px;

    margin-bottom: 12px;
}

.news-content h3 {
    color: #173b2b;

    font-family: "Playfair Display", serif;

    font-size: 25px;

    line-height: 1.25;

    margin-bottom: 12px;
}

.news-content p {
    color: #748078;

    font-size: 13px;

    line-height: 1.7;

    margin-bottom: 20px;
}


/* Read More */

.read-more {
    display: inline-flex;

    align-items: center;

    gap: 12px;

    color: #173b2b;

    font-size: 12px;

    font-weight: 700;

    border-bottom: 1px solid #b9c8af;

    padding-bottom: 5px;
}

.read-more span {
    font-size: 17px;

    transition: 0.3s;
}

.read-more:hover span {
    transform: translateX(5px);
}


/* Button */

.news-bottom {
    display: flex;

    justify-content: center;

    margin-top: 55px;
}

.news-btn {
    display: inline-flex;

    align-items: center;

    gap: 14px;

    padding: 15px 25px;

    border: 1px solid #173b2b;

    border-radius: 30px;

    color: #173b2b;

    font-size: 13px;

    font-weight: 700;

    transition: 0.3s;
}

.news-btn:hover {
    background: #173b2b;

    color: white;
}

.news-btn span {
    font-size: 18px;
}


/* =========================
   NEWS RESPONSIVE
========================= */

@media (max-width: 950px) {

    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .news-card:last-child {
        grid-column: span 2;
    }

}


@media (max-width: 650px) {

    .news-section {
        padding: 80px 0;
    }

    .news-heading {
        flex-direction: column;

        align-items: flex-start;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }

    .news-card:last-child {
        grid-column: auto;
    }

    .news-image {
        height: 300px;
    }

}

/* =========================
   CONTACT SECTION
========================= */

.contact-section {
    padding: 120px 0;

    background: #f5f7f1;
}

.contact-wrapper {
    display: grid;

    grid-template-columns: 0.9fr 1.1fr;

    gap: 90px;

    align-items: center;
}


/* =========================
   CONTACT INFO
========================= */

.contact-info h2 {
    max-width: 600px;

    font-family: "Playfair Display", serif;

    font-size: clamp(42px, 5vw, 64px);

    line-height: 1.08;

    color: #173b2b;

    margin-bottom: 22px;
}

.contact-info h2 span {
    color: #78965b;
}

.contact-info>p {
    max-width: 520px;

    color: #707b73;

    font-size: 15px;

    line-height: 1.8;

    margin-bottom: 45px;
}


/* =========================
   CONTACT DETAILS
========================= */

.contact-details {
    display: flex;

    flex-direction: column;

    gap: 25px;
}

.contact-item {
    display: flex;

    gap: 17px;

    align-items: flex-start;
}

.contact-icon {
    min-width: 45px;
    height: 45px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #dce9c9;

    color: #426139;

    font-size: 16px;
}

.contact-item span {
    display: block;

    color: #78965b;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 2px;

    margin-bottom: 5px;
}

.contact-item h4 {
    color: #173b2b;

    font-size: 15px;

    margin-bottom: 3px;
}

.contact-item p {
    color: #7b857d;

    font-size: 12px;

    line-height: 1.5;
}


/* =========================
   FORM BOX
========================= */

.contact-form-box {
    padding: 50px;

    background: white;

    box-shadow: 0 25px 60px rgba(23, 59, 43, 0.08);
}

.form-heading {
    margin-bottom: 35px;
}

.form-heading>span {
    color: #78965b;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 2.5px;
}

.form-heading h3 {
    margin-top: 8px;

    color: #173b2b;

    font-family: "Playfair Display", serif;

    font-size: 32px;
}


/* Form */

.form-row {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 20px;
}

.form-group {
    margin-bottom: 22px;
}

.form-group label {
    display: block;

    color: #173b2b;

    font-size: 11px;

    font-weight: 700;

    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;

    padding: 14px 15px;

    border: 1px solid #dce2d8;

    outline: none;

    background: #fafbf8;

    color: #173b2b;

    font-family: "DM Sans", sans-serif;

    font-size: 13px;

    transition: 0.3s;
}

.form-group textarea {
    resize: vertical;

    min-height: 130px;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #78965b;

    background: white;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #a1aaa3;
}


/* Submit */

.contact-submit {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 15px;

    width: 100%;

    padding: 16px 25px;

    border: none;

    border-radius: 30px;

    background: #173b2b;

    color: white;

    font-family: "DM Sans", sans-serif;

    font-size: 13px;

    font-weight: 700;

    cursor: pointer;

    transition: 0.3s;
}

.contact-submit:hover {
    background: #78965b;

    transform: translateY(-2px);
}

.contact-submit span {
    font-size: 18px;
}


/* Form Message */

.form-message {
    text-align: center;

    margin-top: 15px;

    font-size: 12px;
}


/* =========================
   CONTACT RESPONSIVE
========================= */

@media (max-width: 950px) {

    .contact-wrapper {
        grid-template-columns: 1fr;

        gap: 60px;
    }

}


@media (max-width: 600px) {

    .contact-section {
        padding: 80px 0;
    }

    .contact-form-box {
        padding: 30px 22px;
    }

    .form-row {
        grid-template-columns: 1fr;

        gap: 0;
    }

}

/* =========================
   FOOTER
========================= */

.footer {
    background: #102c20;

    color: white;

    padding: 80px 0 25px;
}


/* =========================
   NEWSLETTER
========================= */

.newsletter {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 50px;

    padding-bottom: 65px;

    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.newsletter-text>span {
    color: #b7d18f;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 3px;
}

.newsletter-text h2 {
    margin-top: 10px;

    font-family: "Playfair Display", serif;

    font-size: clamp(32px, 4vw, 48px);

    line-height: 1.1;
}

.newsletter-text h2 em {
    color: #b7d18f;

    font-style: normal;
}


/* Newsletter Form */

.newsletter-form {
    width: 430px;

    display: flex;

    border-bottom: 1px solid rgba(255, 255, 255, 0.45);
}

.newsletter-form input {
    flex: 1;

    min-width: 0;

    padding: 15px 5px;

    border: none;

    outline: none;

    background: transparent;

    color: white;

    font-family: "DM Sans", sans-serif;

    font-size: 13px;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.45);
}

.newsletter-form button {
    border: none;

    background: transparent;

    color: #d7e9b8;

    font-family: "DM Sans", sans-serif;

    font-size: 12px;

    font-weight: 700;

    cursor: pointer;

    white-space: nowrap;
}

.newsletter-form button span {
    margin-left: 8px;

    font-size: 17px;
}


/* =========================
   FOOTER MAIN
========================= */

.footer-main {
    display: grid;

    grid-template-columns: 2fr 1fr 1fr 1.3fr;

    gap: 50px;

    padding: 65px 0;
}


/* Brand */

.footer-logo {
    display: inline-flex;

    align-items: center;

    gap: 10px;
}

.footer-logo-icon {
    width: 45px;
    height: 45px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid #b7d18f;

    border-radius: 50%;

    color: #d7e9b8;

    font-size: 15px;

    font-weight: 700;
}

.footer-logo>span:last-child {
    display: flex;

    flex-direction: column;

    line-height: 1.1;
}

.footer-logo strong {
    color: white;

    font-size: 20px;

    letter-spacing: 2px;
}

.footer-logo small {
    margin-top: 4px;

    color: #8fa38f;

    font-size: 7px;

    letter-spacing: 2px;
}

.footer-brand>p {
    max-width: 300px;

    margin: 22px 0;

    color: rgba(255, 255, 255, 0.5);

    font-size: 13px;

    line-height: 1.8;
}


/* Social */

.social-links {
    display: flex;

    gap: 8px;
}

.social-links a {
    width: 34px;
    height: 34px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 255, 255, 0.2);

    border-radius: 50%;

    color: rgba(255, 255, 255, 0.7);

    font-size: 11px;

    font-weight: 700;

    transition: 0.3s;
}

.social-links a:hover {
    background: #d7e9b8;

    border-color: #d7e9b8;

    color: #173b2b;
}


/* Footer Columns */

.footer-column {
    display: flex;

    flex-direction: column;

    align-items: flex-start;
}

.footer-column h4 {
    margin-bottom: 22px;

    color: #b7d18f;

    font-size: 10px;

    letter-spacing: 2px;
}

.footer-column a,
.footer-column p {
    margin-bottom: 12px;

    color: rgba(255, 255, 255, 0.55);

    font-size: 12px;

    line-height: 1.6;

    transition: 0.3s;
}

.footer-column a:hover {
    color: #d7e9b8;

    transform: translateX(3px);
}


/* Contact */

.footer-contact a {
    color: rgba(255, 255, 255, 0.65);
}


/* =========================
   FOOTER BOTTOM
========================= */

.footer-bottom {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    padding-top: 25px;

    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.35);

    font-size: 10px;
}

.footer-bottom div {
    display: flex;

    gap: 25px;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.4);

    font-size: 10px;

    transition: 0.3s;
}

.footer-bottom a:hover {
    color: #d7e9b8;
}


/* =========================
   BACK TO TOP
========================= */

.back-to-top {
    position: fixed;

    right: 25px;
    bottom: 25px;

    width: 45px;
    height: 45px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: none;

    border-radius: 50%;

    background: #d7e9b8;

    color: #173b2b;

    font-size: 20px;

    cursor: pointer;

    opacity: 0;

    visibility: hidden;

    transform: translateY(15px);

    transition: 0.3s;

    z-index: 500;
}

.back-to-top.show {
    opacity: 1;

    visibility: visible;

    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-4px);
}


/* =========================
   FOOTER RESPONSIVE
========================= */

@media (max-width: 900px) {

    .newsletter {
        flex-direction: column;

        align-items: flex-start;
    }

    .newsletter-form {
        width: 100%;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
    }

}


@media (max-width: 600px) {

    .footer {
        padding-top: 60px;
    }

    .footer-main {
        grid-template-columns: 1fr;

        gap: 40px;

        padding: 50px 0;
    }

    .footer-bottom {
        flex-direction: column;

        align-items: flex-start;
    }

    .footer-bottom div {
        flex-direction: column;

        gap: 8px;
    }

    .newsletter-form {
        width: 100%;
    }

}

/* =========================
   FINAL PREMIUM POLISH
========================= */

/* Header after scroll */

.header {
    transition: 0.35s ease;
}

.header.scrolled {
    position: fixed;
    padding: 13px 0;

    background: rgba(16, 44, 32, 0.96);

    backdrop-filter: blur(12px);

    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}


/* =========================
   SCROLL REVEAL
========================= */

.reveal {
    opacity: 0;

    transform: translateY(35px);

    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}

.reveal.active {
    opacity: 1;

    transform: translateY(0);
}


/* =========================
   PAGE LOADING
========================= */

body {
    overflow-x: hidden;
}

.page-loader {
    position: fixed;
    inset: 0;
    z-index: 9999;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #173b2b;

    animation: hideLoader 0.6s ease 1.5s forwards;

    pointer-events: none;
}

@keyframes hideLoader {

    0% {
        opacity: 1;
        visibility: visible;
    }

    100% {
        opacity: 0;
        visibility: hidden;
    }

}

.loader-logo {
    display: flex;

    flex-direction: column;

    align-items: center;

    color: white;
}

.loader-circle {
    width: 65px;
    height: 65px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 2px solid #b7d18f;

    border-radius: 50%;

    font-size: 18px;

    font-weight: 700;

    animation: loaderPulse 1.4s infinite;
}

.loader-logo span {
    margin-top: 12px;

    color: #d7e9b8;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 3px;
}

@keyframes loaderPulse {

    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.08);
        opacity: 0.65;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }

}


/* =========================
   SMOOTH BUTTON EFFECT
========================= */

.primary-btn,
.secondary-btn,
.about-btn,
.products-btn,
.news-btn,
.contact-submit,
.nav-btn {
    will-change: transform;
}


/* =========================
   MOBILE MENU
========================= */

@media (max-width: 900px) {

    .navbar {
        display: none;
    }

    .navbar.show {
        display: flex;

        position: absolute;

        top: 75px;

        left: 5%;
        right: 5%;

        padding: 25px;

        flex-direction: column;

        align-items: flex-start;

        gap: 20px;

        background: #173b2b;

        border-radius: 15px;

        box-shadow: 0 20px 45px rgba(0, 0, 0, 0.2);
    }

    .navbar.show a {
        color: white;
    }

    .navbar.show a::after {
        bottom: -5px;
    }

}


/* =========================
   REDUCED MOTION
========================= */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;

        animation-duration: 0.01ms !important;

        animation-iteration-count: 1 !important;

        transition-duration: 0.01ms !important;
    }

}

/* ===============================
   PRODUCT CONTINUOUS CAROUSEL
================================ */

.product-track {
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 24px !important;
    overflow: hidden !important;
    width: 100% !important;
    transform: none !important;
}

.product-track .product-card {
    flex: 0 0 calc(25% - 18px) !important;
    width: calc(25% - 18px) !important;
}

/* Tablet */
@media (max-width: 1000px) {

    .product-track .product-card {
        flex: 0 0 calc(50% - 12px) !important;
        width: calc(50% - 12px) !important;
    }

}

/* Mobile */
@media (max-width: 600px) {

    .product-track {
        gap: 16px !important;
    }

    .product-track .product-card {
        flex: 0 0 85% !important;
        width: 85% !important;
    }

}

/* ===============================
   GHEE IMAGE FIX
================================ */

.ghee-image {
    object-fit: contain !important;
    object-position: center !important;
    background: #f5f1e8;
}

/* ===============================
   PRODUCT DETAILS MODAL
================================ */

.product-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 30px;

    visibility: hidden;
    opacity: 0;

    transition:
        opacity 0.35s ease,
        visibility 0.35s ease;
}


/* Modal Open */

.product-modal.active {
    visibility: visible;
    opacity: 1;
}


/* Background Overlay */

.product-modal-overlay {
    position: absolute;
    inset: 0;

    background: rgba(7, 35, 25, 0.78);

    backdrop-filter: blur(8px);
}


/* Main Box */

.product-modal-content {
    position: relative;
    z-index: 2;

    width: min(1000px, 100%);

    display: grid;
    grid-template-columns: 1fr 1fr;

    background: #f7f7f0;

    border-radius: 18px;

    overflow: hidden;

    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.25);

    transform: translateY(30px) scale(0.96);

    transition:
        transform 0.4s ease;
}


/* Open Animation */

.product-modal.active .product-modal-content {
    transform: translateY(0) scale(1);
}


/* Close Button */

.product-modal-close {
    position: absolute;

    top: 18px;
    right: 18px;

    z-index: 5;

    width: 46px;
    height: 46px;

    border: none;
    border-radius: 50%;

    background: white;

    color: #123d2d;

    font-size: 30px;

    line-height: 1;

    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;

    transition:
        transform 0.3s ease,
        background 0.3s ease;
}


.product-modal-close:hover {
    transform: rotate(90deg);
    background: #e9f0df;
}


/* Large Product Image */

.product-modal-image {
    width: 100%;
    height: 560px;

    background: #eee;

    overflow: hidden;
}


.product-modal-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;

    transition: transform 0.5s ease;
}


.product-modal-content:hover .product-modal-image img {
    transform: scale(1.03);
}


/* Product Information */

.product-modal-info {
    padding: 70px 55px;

    display: flex;
    flex-direction: column;
    justify-content: center;
}


/* Category */

.modal-product-category {
    display: block;

    margin-bottom: 16px;

    color: #7b9666;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 3px;
}


/* Product Name */

.modal-product-name,
#modalProductName {
    margin: 0 0 22px;

    color: #123d2d;

    font-family:
        "Playfair Display",
        serif;

    font-size: clamp(38px, 4vw, 58px);

    line-height: 1.05;
}


/* Description */

#modalProductDescription {
    margin: 0 0 30px;

    color: #68736d;

    font-size: 16px;

    line-height: 1.8;
}


/* Features */

.modal-product-features {
    display: flex;
    flex-direction: column;

    gap: 14px;

    margin-bottom: 35px;
}


.modal-product-features div {
    display: flex;
    align-items: center;

    gap: 12px;

    color: #334d40;

    font-size: 15px;
}


.modal-product-features span {
    width: 25px;
    height: 25px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #dce9c5;

    color: #173f2e;

    font-size: 13px;

    font-weight: 700;
}


/* Button */

.modal-product-button {
    width: fit-content;

    display: inline-flex;
    align-items: center;

    gap: 20px;

    padding: 15px 24px;

    border-radius: 40px;

    background: #143f2f;

    color: white;

    text-decoration: none;

    font-size: 14px;

    font-weight: 600;

    transition:
        transform 0.3s ease,
        background 0.3s ease;
}


.modal-product-button span {
    font-size: 20px;
}


.modal-product-button:hover {
    transform: translateX(4px);

    background: #285d45;
}


/* ===============================
   TABLET
================================ */

@media (max-width: 800px) {

    .product-modal {
        padding: 20px;
    }

    .product-modal-content {
        grid-template-columns: 1fr;
        max-height: 90vh;

        overflow-y: auto;
    }

    .product-modal-image {
        height: 350px;
    }

    .product-modal-info {
        padding: 40px 30px;
    }

}


/* ===============================
   MOBILE
================================ */

@media (max-width: 500px) {

    .product-modal {
        padding: 12px;
    }

    .product-modal-content {
        border-radius: 14px;
    }

    .product-modal-image {
        height: 280px;
    }

    .product-modal-info {
        padding: 32px 24px;
    }

    #modalProductName {
        font-size: 36px;
    }

    #modalProductDescription {
        font-size: 14px;
    }

    .product-modal-close {
        width: 40px;
        height: 40px;

        top: 12px;
        right: 12px;

        font-size: 25px;
    }

}

/* ===============================
   PRODUCT MODAL PRICE
================================ */

.modal-product-price {
    display: inline-block;

    margin-bottom: 22px;

    color: #527344;

    font-family: "DM Sans", sans-serif;

    font-size: 24px;

    font-weight: 700;

    letter-spacing: 0.5px;
}

/* ===============================
   PRODUCT CARD PRICE
================================ */

.product-card-price {
    margin: 8px 0 12px;

    color: #527344;

    font-size: 18px;

    font-weight: 700;

    letter-spacing: 0.3px;
}

/* ===============================
   PRODUCT CARD HOVER EFFECT
================================ */

.product-card {
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 18px 40px rgba(0, 0, 0, 0.12);
}


/* Image Zoom */

.product-card .product-image img {
    transition:
        transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.06);
}


/* Price Highlight */

.product-card:hover .product-card-price {
    transform: translateX(4px);
}

.product-card-price {
    transition:
        transform 0.3s ease,
        color 0.3s ease;
}


/* Arrow */

.product-card .product-arrow {
    transition:
        transform 0.3s ease,
        background 0.3s ease;
}

.product-card:hover .product-arrow {
    transform: translateX(5px);
}

/* ===============================
   CHECKOUT MODAL
================================ */

.checkout-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 20px;

    opacity: 0;
    visibility: hidden;

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;
}

.checkout-modal.active {
    opacity: 1;
    visibility: visible;
}


/* Overlay */

.checkout-overlay {
    position: absolute;
    inset: 0;

    background: rgba(7, 35, 25, 0.78);

    backdrop-filter: blur(8px);
}


/* Checkout Box */

.checkout-box {
    position: relative;
    z-index: 2;

    width: min(620px, 100%);
    max-height: 92vh;

    overflow-y: auto;

    padding: 42px;

    background: #f7f7f0;

    border-radius: 20px;

    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.25);

    transform: translateY(25px) scale(0.96);

    transition:
        transform 0.35s ease;
}

.checkout-modal.active .checkout-box {
    transform: translateY(0) scale(1);
}


/* Close */

.checkout-close {
    position: absolute;

    top: 16px;
    right: 16px;

    width: 42px;
    height: 42px;

    border: none;
    border-radius: 50%;

    background: white;

    color: #143f2f;

    font-size: 28px;

    cursor: pointer;

    transition:
        transform 0.3s ease,
        background 0.3s ease;
}

.checkout-close:hover {
    transform: rotate(90deg);
    background: #e9f0df;
}


/* Header */

.checkout-header {
    margin-bottom: 28px;
}

.checkout-header h2 {
    margin: 8px 0 12px;

    color: #143f2f;

    font-family:
        "Playfair Display",
        serif;

    font-size: 42px;

    line-height: 1.1;
}

.checkout-header h2 span {
    color: #527344;
}

.checkout-header p {
    margin: 0;

    color: #68736d;

    line-height: 1.7;
}


/* Product Summary */

.checkout-product {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 20px;

    padding: 20px;

    margin-bottom: 24px;

    background: white;

    border-radius: 14px;

    border: 1px solid #e2e8dc;
}

.checkout-product span,
.checkout-product-price span {
    display: block;

    margin-bottom: 6px;

    color: #7b9666;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 2px;
}

.checkout-product h3 {
    margin: 0;

    color: #143f2f;

    font-size: 20px;
}

.checkout-product-price {
    text-align: right;
}

.checkout-product-price strong {
    color: #527344;

    font-size: 18px;
}


/* Quantity */

.checkout-quantity {
    display: flex;

    align-items: center;
    justify-content: space-between;

    margin-bottom: 18px;
}

.checkout-quantity label {
    color: #334d40;

    font-size: 15px;

    font-weight: 600;
}

.quantity-control {
    display: flex;

    align-items: center;

    gap: 18px;

    padding: 5px;

    border: 1px solid #dce4d7;

    border-radius: 40px;

    background: white;
}

.quantity-control button {
    width: 34px;
    height: 34px;

    border: none;
    border-radius: 50%;

    background: #e9f0df;

    color: #143f2f;

    font-size: 20px;

    cursor: pointer;
}

.quantity-control span {
    min-width: 20px;

    text-align: center;

    color: #143f2f;

    font-weight: 700;
}


/* Total */

.checkout-total {
    display: flex;

    justify-content: space-between;
    align-items: center;

    padding: 18px 0;

    margin-bottom: 22px;

    border-top: 1px solid #dce4d7;
    border-bottom: 1px solid #dce4d7;
}

.checkout-total span {
    color: #334d40;

    font-weight: 600;
}

.checkout-total strong {
    color: #143f2f;

    font-size: 24px;
}


/* Form */

.checkout-form {
    display: grid;

    gap: 16px;

    margin-bottom: 24px;
}

.checkout-field {
    display: flex;

    flex-direction: column;

    gap: 7px;
}

.checkout-field label,
.payment-method>label {
    color: #334d40;

    font-size: 14px;

    font-weight: 600;
}

.checkout-field input,
.checkout-field textarea {
    width: 100%;

    box-sizing: border-box;

    padding: 13px 15px;

    border: 1px solid #dce4d7;

    border-radius: 10px;

    background: white;

    color: #243c31;

    font-family: inherit;

    font-size: 14px;

    outline: none;

    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.checkout-field textarea {
    resize: vertical;
}

.checkout-field input:focus,
.checkout-field textarea:focus {
    border-color: #7b9666;

    box-shadow:
        0 0 0 3px rgba(123, 150, 102, 0.12);
}


/* Payment */

.payment-method {
    margin-bottom: 24px;
}

.payment-method>label {
    display: block;

    margin-bottom: 12px;
}

.payment-options {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 10px;
}

.payment-option {
    display: flex;

    align-items: center;

    gap: 8px;

    padding: 13px;

    border: 1px solid #dce4d7;

    border-radius: 10px;

    background: white;

    cursor: pointer;

    font-size: 13px;
}

.payment-option input {
    accent-color: #527344;
}


/* Place Order */

.place-order-btn {
    width: 100%;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 15px;

    padding: 16px 24px;

    border: none;

    border-radius: 40px;

    background: #143f2f;

    color: white;

    font-size: 15px;

    font-weight: 600;

    cursor: pointer;

    transition:
        transform 0.3s ease,
        background 0.3s ease;
}

.place-order-btn:hover {
    transform: translateY(-2px);

    background: #285d45;
}

.place-order-btn span {
    font-size: 20px;
}


/* Mobile */

@media (max-width: 600px) {

    .checkout-modal {
        padding: 12px;
    }

    .checkout-box {
        padding: 32px 22px;

        border-radius: 16px;
    }

    .checkout-header h2 {
        font-size: 34px;
    }

    .checkout-product {
        align-items: flex-start;

        flex-direction: column;
    }

    .checkout-product-price {
        text-align: left;
    }

    .payment-options {
        grid-template-columns: 1fr;
    }

}

/* ===============================
   ORDER SUCCESS POPUP
================================ */

.order-success-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 99999;

    align-items: center;
    justify-content: center;

    background: rgba(0, 0, 0, 0.65);
    padding: 20px;
}

.order-success-modal.active {
    display: flex;
}

.order-success-box {
    width: 100%;
    max-width: 420px;

    background: #ffffff;
    border-radius: 20px;

    padding: 35px 25px;
    text-align: center;

    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.success-icon {
    width: 70px;
    height: 70px;

    margin: 0 auto 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #dff5df;
    color: #249b45;

    font-size: 40px;
    font-weight: 700;
}

.order-success-box h2 {
    margin: 0 0 12px;
    font-size: 25px;
}

.order-success-box p {
    margin: 0 0 25px;
    line-height: 1.6;
    color: #666;
}

#successCloseBtn {
    border: none;
    cursor: pointer;

    padding: 12px 30px;

    border-radius: 10px;

    background: #249b45;
    color: white;

    font-size: 16px;
    font-weight: 600;
}

.header-order-button {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 8px;

    background: #dcefa9 !important;
    color: #103d2d !important;

    padding: 12px 28px;
    border-radius: 35px;

    text-decoration: none;
    font-weight: 700;
    font-size: 15px;

    visibility: visible !important;
    opacity: 1 !important;
}

/* ========================= CLIENT REVIEWS ========================= */
.client-reviews {
    padding: 110px 7%;
    background: #f7f7ef;
}

.reviews-header {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 55px;
}

.reviews-small-title {
    color: #82976e;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 4px;
    margin-bottom: 18px;
}

.reviews-header h2 {
    font-family: Georgia, serif;
    font-size: clamp(42px, 5vw, 65px);
    color: #103d2d;
    margin-bottom: 18px;
}

.reviews-header p {
    color: #65716b;
    font-size: 17px;
    line-height: 1.7;
}

.reviews-grid {
    max-width: 1400px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.review-card {
    background: #ffffff;
    border: 1px solid #e1e5dc;
    border-radius: 20px;
    padding: 32px 28px;
    transition: 0.35s ease;
}

.review-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 18px 40px rgba(16, 61, 45, 0.12);
}

.review-stars {
    color: #82976e;
    font-size: 19px;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.review-card>p {
    color: #56645d;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 28px;
}

.review-client {
    display: flex;
    align-items: center;
    gap: 13px;
}

.client-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #dcefa9;
    color: #103d2d;
    display: flex;
    align-items:
        center;
    justify-content: center;
    font-weight: 700;
    font-size: 17px;
}

.review-client strong {
    display: block;
    color: #103d2d;
    font-size: 15px;
    margin-bottom: 4px;
}

.review-client span {
    display: block;
    color: #829078;
    font-size: 12px;
}

/* MOBILE */
@media (max-width: 1000px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .client-reviews {
        padding: 75px 5%;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .reviews-header h2 {
        font-size: 42px;
    }
}

/* ========================= OUR COMMITMENT ========================= */
.our-commitment {
    padding: 105px 7%;
    background: #e9eee2;
}

.commitment-header {
    max-width: 760px;
    margin: 0 auto 55px;
    text-align: center;
}

.commitment-small-title {
    color: #82976e;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 4px;
    margin-bottom: 16px;
}

.commitment-header h2 {
    font-family: Georgia, serif;
    color: #103d2d;
    font-size: clamp(42px, 5vw, 65px);
    margin-bottom: 18px;
}

.commitment-header p {
    color: #65716b;
    font-size: 17px;
    line-height: 1.8;
}

.commitment-grid {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.commitment-card {
    position: relative;
    background: #ffffff;
    border: 1px solid #dfe5d9;
    border-radius: 22px;
    padding: 38px 30px;
    text-align: center;
    transition: .35s ease;
}

.commitment-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(16, 61, 45, .12);
}

.commitment-number {
    position: absolute;
    top: 18px;
    right: 20px;
    color: #a0ae96;
    font-size: 11px;
    font-weight: bold;
    letter-spacing: 2px;
}

.commitment-icon {
    width: 68px;
    height: 68px;
    margin: 0 auto 22px;
    border-radius: 50%;
    background: #dcefa9;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.commitment-card h3 {
    font-family: Georgia, serif;
    color: #103d2d;
    font-size: 26px;
    margin-bottom: 13px;
}

.commitment-card p {
    color: #68736d;
    font-size: 14px;
    line-height: 1.8;
}

/* MOBILE */
@media (max-width: 850px) {
    .commitment-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .our-commitment {
        padding: 75px 5%;
    }

    .commitment-grid {
        grid-template-columns: 1fr;
    }
}