@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@500;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@400;500&display=swap');

body {
    margin: 0;
    font-family: "Arial", sans-serif;
    background: white;

    padding-top: 100px;
    box-sizing: border-box;
}

/* ================= NAVBAR ================= */

.navbar {
    height: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px 0 10px;
    box-sizing: border-box;
    background: rgba(255, 255, 255, 0.90);

    position: fixed;
    top: 0;
    left: 0;
    width: 100%;

    z-index: 1000;
}

.logo {
    width: 300px;
    height: 100px;
    flex-shrink: 0;
    transition: transform 0.35s ease;
}

.logo:hover {
    transform: scale(1.035);
}

.logo img {
    width: 300px;
    height: 100px;
    display: block;
}
.logo-name {
    font-size: 23px;
    font-weight: 700;
    letter-spacing: -1px;
}

.logo-tagline {
    font-size: 11px;
    margin-top: 2px;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 55px;
}

.nav-links a {
    text-decoration: none;
    color: #668357;
    font-size: 20px;
    font-weight: 530;
    transition: transform 0.35s ease, color 0.35s ease;
}

.nav-links a:last-child {
    border: 1px solid #dddddd;
    border-radius: 12px;
    padding: 11px 65px;
    color: #668357;
    background: white;
    transition: background 0.35s ease, color 0.35s ease;
}

.nav-links a:not(:last-child):hover {
    transform: scale(1.05);
}

.nav-links a:last-child:hover {
    background: #355f2a;
    color: white;
}


/* ================= HERO ================= */

.hero {
    position: relative;
    height: 620px;
    overflow: hidden;

    background: linear-gradient(
        to right,
        #ffffff 0%,
        #f8f8f4 55%,
        #f8f8f4 100%
    );

    display: flex;
    justify-content: center;
    align-items: flex-start;

    text-align: center;

    padding-top: 120px;
    box-sizing: border-box;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1050px;
}


/* HEADING */

.hero h1 {
    margin: 0;

    font-family: "Manrope", sans-serif;
    font-size: 75px;
    font-weight: 1000;

    letter-spacing: -1.2928px;
    line-height: 150px;

    color: #668357;

    text-align: center;

    -webkit-font-smoothing: antialiased;
}


/* DESCRIPTION */

/* DESCRIPTION */

.hero p {
    max-width: 826.4px;

    margin: 2px auto 105px;

    font-family: "Inter", "Inter Placeholder", sans-serif;
    font-size: 20px;
    font-weight: 500;

    line-height: 33px;
    letter-spacing: 0.384px;

    color: #404040;

    text-align: center;

    -webkit-font-smoothing: antialiased;
}


/* BUTTONS */

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 70px;
}

.hero-buttons a {
    width: 230px;
    box-sizing: border-box;
    padding: 14px 18px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 16px;
    border: 1px solid #668357;
    transition: background 0.35s ease, color 0.35s ease;
}

.hero-buttons a:first-child {
    background: #668357;
    color: white;
}

.hero-buttons a:last-child {
    color: #668357;
    background: white;
}

/* Hover for BOTH buttons */
.hero-buttons a:hover {
    background: #355f2a;
    color: white;
}


/* ================= HERB IMAGE ================= */

.hero-image {
    position: absolute;

    right: 0;
    top: 50px;

    width: 440px;
    height: 570px;

    z-index: 1;

    /* Smoothly blends image into the background */
    -webkit-mask-image: linear-gradient(
        to right,
        transparent 0%,
        rgba(0, 0, 0, 0.25) 12%,
        black 32%,
        black 100%
    );

    mask-image: linear-gradient(
        to right,
        transparent 0%,
        rgba(0, 0, 0, 0.25) 12%,
        black 32%,
        black 100%
    );
}
.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;

    opacity: 0.40;
}

/* ================= MORE THAN PERSONAL CARE ================= */

.nature-section {
    position: relative;
    min-height: 800px;
    overflow: hidden;
    background: #F0EEE0;
    box-sizing: border-box;
}

/* Background watercolor image */

.nature-background {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.nature-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
    opacity: 0.12;
}

/* Main content */

.nature-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding-top: 75px;
}

/* Heading */

.nature-content h2 {
    margin: 0 0 52px;

    font-family: "Manrope", sans-serif;
    font-size: 35px;
    font-weight: 700;
    letter-spacing: -0.64px;
    line-height: 22.4px;

    color: #404040;
    text-align: center;
}

.nature-content p {
    max-width: 847.2px;

    margin: 0 auto 70px;

    font-family: Inter, "Inter Placeholder", sans-serif;
    font-size: 17.6px;
    font-weight: 400;
    line-height: 24.64px;
    letter-spacing: -0.704px;

    color: #4F4F4F;

    text-align: center;
    -webkit-font-smoothing: antialiased;
}

/* ================= THREE VIDEOS ================= */

.nature-videos {
    display: flex;
    justify-content: center;
    align-items: flex-start;

    gap: 18px;

    width: 100%;
    max-width: 1360px;

    margin: 0 auto;
}


/* ================= INDIVIDUAL VIDEO ================= */

.nature-video {
    width: 360px;
    height: 440px;
    gap: 18px;
    max-width: 1360px;

    flex-shrink: 0;

    overflow: hidden;
    border-radius: 10px;

    background: #f8f8f4;
}


/* ================= VIDEO ================= */

.nature-video video {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}

/* ================= JOIN THE HERB CULT ================= */

.cult-section {
    position: relative;
    min-height: 0px;

    background: linear-gradient(
        to left,
        #EDF3D6 0%,
        #F2F7E2 15%,
        #F7FAEE 30%,
        #ffffff 55%,
        #ffffff 100%
    );

    padding: 70px 0 90px;
    box-sizing: border-box;
}

/* Join the herb cult SVG */

.cult-title {
    display: block;

    width: 320px;
    height: auto;

    margin-left: 48px;
    margin-bottom: 70px;
}


/* Main card */

.cult-card {
    width: calc(100% - 340px);
    max-width: 1150px;

    min-height: 480px;

    margin: 0 auto;

    display: flex;
    gap: 30px;

    padding: 18px;

    box-sizing: border-box;

    background: #F7F3DF;

    border: 1px solid #deded7;
    border-radius: 10px;
}


/* Left image */

.cult-image {
    width: 57%;
    height: 440px;
    overflow: hidden;
    border-radius: 5px;
}

.cult-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}


/* Right content */

.cult-content {
    flex: 1;

    padding: 8px 20px 10px 0;

    box-sizing: border-box;

    color: #404040;
}


/* Featured Collection */

.cult-label {
    font-family: Arial, sans-serif;

    font-size: 16px;
    font-weight: 400;

    color: #668357;

    margin-bottom: 20px;
}


/* Product heading */

.cult-content h2 {
    margin: 0 0 24px;

    font-family: "Manrope", sans-serif;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.4512px;
    line-height: 22.56px;

    color: #404040;
}


/* Description */

.cult-description {
    margin: 0 0 28px;

    font-family: "Inter", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: normal;

    color: #4f4f4f;
}

/* Crafted with */

.cult-content h3 {
    margin: 0 0 10px;

    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 19.2px;
    letter-spacing: -0.24px;

    color: #404040;
}


/* Ingredients */

.ingredients {
    margin: 5px 0 25px;

    font-family: "Inter", sans-serif;
    font-size: 19px;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: normal;

    color: #4f4f4f;
}


/* Benefits */

.cult-benefits {
    margin: 0 0 28px;

    font-family: "Inter", sans-serif;
    font-size: 18.08px;
    font-weight: 500;
    line-height: 23.504px;
    letter-spacing: -0.3616px;

    color: #668357;
}


/* Learn More button */

.cult-button {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 240px;
    height: 50px;

    box-sizing: border-box;

    padding: 10px 20px;

    background: #668357;
    color: white;

    border-radius: 8px;

    text-decoration: none;

    font-family: sans-serif;
    font-size: 17px;

    gap: 4px;

    cursor: pointer;

    transition: background 0.3s ease, transform 0.3s ease;
}

.cult-button span {
    margin-left: 4px;
    font-size: 18px;
}

.cult-button:hover {
    background: #355f2a;
    transform: scale(1.02);
}

/* ================= PRODUCT COLLECTION ================= */

.products-section {
    position: relative;
    min-height: 900px;

    padding: 40px 0 80px;

    box-sizing: border-box;

    background: linear-gradient(
    to top,
    #EDF3D6 0%,
    #F2F7E2 25%,
    #F7FAEE 50%,
    #ffffff 100%
 );
}


/* TWO CARDS */

.products-container {
    width: calc(100% - 460px);
    max-width: 1400px;

    margin: 0 auto;

    display: flex;
    justify-content: center;
    align-items: flex-start;

    gap: 50px;
}


/* INDIVIDUAL CARD */

.product-card {
    width: 680px;

    min-height: 850px;

    padding: 18px;

    box-sizing: border-box;

    background: #ffffff;

    border: 1px solid #dedede;
    border-radius: 10px;

    overflow: hidden;
}


/* IMAGE */

.product-image {
    width: 100%;
    height: 375px;

    overflow: hidden;

    border-radius: 5px;
}

.product-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}


/* TEXT AREA */

.product-content {
    padding: 28px 0 16px;

    box-sizing: border-box;

    color: #404040;
}


/* FEATURED COLLECTION */

.product-label {
    font-family: Arial, sans-serif;

    font-size: 16px;
    font-weight: 400;

    color: #668357;

    margin-bottom: 20px;
}


/* PRODUCT TITLE */

.product-content h2 {
    margin: 0 0 24px;

    font-family: "Manrope", sans-serif;

    font-size: 24px;
    font-weight: 700;

    letter-spacing: -0.4512px;
    line-height: 22.56px;

    color: #404040;
}


/* DESCRIPTION */

.product-description {
    margin: 0 0 28px;

    font-family: "Inter", sans-serif;

    font-size: 18px;
    font-weight: 400;

    line-height: 1.4;
    letter-spacing: normal;

    color: #4f4f4f;
}


/* CRAFTED WITH */

.product-content h3 {
    margin: 0 0 10px;

    font-family: "Inter", sans-serif;

    font-size: 16px;
    font-weight: 600;

    line-height: 19.2px;
    letter-spacing: -0.24px;

    color: #404040;
}


/* INGREDIENTS */

.product-ingredients {
    margin: 5px 0 25px;

    font-family: "Inter", sans-serif;

    font-size: 19px;
    font-weight: 400;

    line-height: 1.4;
    letter-spacing: normal;

    color: #4f4f4f;
}


/* BENEFITS */

.product-benefits {
    margin: 0 0 28px;

    font-family: "Inter", sans-serif;

    font-size: 18.08px;
    font-weight: 500;

    line-height: 23.504px;
    letter-spacing: -0.3616px;

    color: #668357;
}


/* LEARN MORE */

.product-button {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 240px;
    height: 50px;

    box-sizing: border-box;

    padding: 10px 20px;

    background: #668357;
    color: white;

    border-radius: 8px;

    text-decoration: none;

    font-family: sans-serif;
    font-size: 17px;

    gap: 4px;

    cursor: pointer;

    transition: background 0.3s ease, transform 0.3s ease;
}

.product-button span {
    margin-left: 4px;
    font-size: 18px;
}

.product-button:hover {
    background: #355f2a;
    transform: scale(1.02);
}

/* ================= OUR PHILOSOPHY ================= */

.philosophy-section {
    position: relative;

    min-height: 330px;

    background: #fbfaf9;

    display: flex;
    align-items: center;

    justify-content: space-between;

    padding: 0px 45px 70px;

    box-sizing: border-box;

    overflow: hidden;
}


/* LEFT CONTENT */

.philosophy-content {
    width: 60%;

    box-sizing: border-box;

    padding-right: 50px;
    transform: translateY(-30px);

    color: #17212b;
}


/* HEADING */

.philosophy-content h2 {
    margin:  0 0 50px;

    font-family: "Caveat", sans-serif;
    font-size: 33px;
    font-weight: 333;

    letter-spacing: -1.1072px;
    line-height: 38.752px;

    color: #668357;

    text-align: left;

    text-shadow:
        0.4px 0 #668357,
        -0.4px 0 #668357,
        0 0.4px #668357,
        0 -0.4px #668357;

    -webkit-font-smoothing: antialiased;
}


/* TEXT */

.philosophy-content p {
    margin: 20px 0 0;

    font-family: "Inter", "Inter Placeholder", sans-serif;
    font-size: 16px;
    font-weight: 600;

    line-height: 22px;
    letter-spacing: -0.24px;

    color: #404040;

    -webkit-font-smoothing: antialiased;
}
.philosophy-second {
    margin-bottom: 60px !important;
}

/* FINAL LINE */

.philosophy-content .philosophy-final {
    margin: 35px 0 0;

    font-family: "Inter", "Inter Placeholder", sans-serif;
    font-size: 18px;
    font-weight: 500;

    line-height: 18px;
    letter-spacing: normal;

    color: #4F4F4F;

    -webkit-font-smoothing: antialiased;
}


/* RIGHT IMAGE */

.philosophy-image {
    width: 38%;

    height: 570px;

    display: flex;

    align-items: center;
    justify-content: center;

    box-sizing: border-box;
}


.philosophy-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: contain;
}

/* ================= USER REVIEWS ================= */

.reviews-section {
    width: 100%;
    background: #ffffff;
    overflow: hidden;
    padding-bottom: 25px;
}


/* GREEN TOP BAND */

.reviews-heading {
    width: 100%;
    height: 40px;

    background: #668357;
    color: #ffffff;

    display: flex;
    align-items: center;
    justify-content: center;

    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 600;

    box-sizing: border-box;
}


/* SLIDER AREA */

.reviews-slider {
    width: 100%;
    overflow: hidden;

    padding-top: 90px;
    padding-bottom: 15px;
}


/* MOVING TRACK */

.reviews-track {
    display: flex;
    gap: 20px;

    width: max-content;

    animation: reviewScroll 20s linear infinite;
}


/* REVIEW CARD */

.review-card {
    width: 380px;
    height: auto;
    min-height: 0;

    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 10px;

    padding: 22px;
    box-sizing: border-box;

    flex-shrink: 0;

    display: block;
}


/* REVIEW IMAGE */

.review-card img {
    width: 165px;
    height: 180px;

    object-fit: cover;

    border-radius: 9px;

    display: block;

    margin: 0 auto 28px;
}


/* REVIEW TEXT */

.review-card p {
    margin: 0;

    font-family: "Inter", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;

    color: #555555;
}


/* PERSON NAME */

.review-name {
    margin-top: 27px;
    padding-top: 0;

    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 600;

    line-height: 1.4;

    color: #668357;
}


/* RIGHT → LEFT INFINITE SCROLL */

@keyframes reviewScroll {

    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-50% - 10px));
    }

}

/* ================= OUR GIFT SECTION ================= */

.gift-section {
    width: 100%;
    height: 240px;
    background-color: #6B865F;

    display: flex;
    align-items: center;
    justify-content: center;

    box-sizing: border-box;
}

.gift-section h2 {
    margin: 0;

    font-family: "Inter", sans-serif;
    font-size: 75px;
    font-weight: 400;

    color: white;
    text-align: center;
}

/* ================= FREE SAMPLE SECTION ================= */

.sample-section {
    width: 100%;
    min-height: 650px;

    background-color: #fbf8e9;

    display: flex;
    justify-content: space-between;
    align-items: flex-start;

    padding: 75px 45px 75px;

    box-sizing: border-box;
}


/* LEFT SIDE */

.sample-left {
    width: 55%;
    box-sizing: border-box;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.sample-left h2 {
    margin: 0;

    font-family: "Manrope", "Manrope Placeholder", sans-serif;
    font-size: 36px;
    font-weight: 600;
    line-height: 22.4px;
    letter-spacing: -0.64px;

    color: #404040;
    text-align: left;
}

.sample-left p {
    width: 600px;

    margin: 75px 0 0;

    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;

    color: #34485a;
}


/* HERBAL IMAGE */

.sample-image {
    width: 530px;
    margin-top: 65px;
}

.sample-image img {
    width: 100%;
    height: auto;
    opacity: 0.5;

    display: block;
}


/* RIGHT FORM CARD */

.sample-form-card {
    width: 520px;

    background-color: #ffffff;

    border: 1px solid #6f8d61;
    border-radius: 20px;

    padding: 55px 48px;

    box-sizing: border-box;
}


.sample-form-card form {
    display: flex;
    flex-direction: column;
}


/* LABELS */

.sample-form-card label {
    margin-bottom: 16px;

    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 500;

    color: #404040;
}


/* INPUTS */

.sample-form-card input,
.sample-form-card select,
.sample-form-card textarea {
    width: 100%;
    box-sizing: border-box;

    background-color: #f5f5f5;

    border: 1px solid #e5e5e5;
    border-radius: 12px;

    padding: 20px 16px;

    font-family: "Inter", sans-serif;
    font-size: 16px;

    color: #17212b;

    outline: none;
}

.sample-form-card select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;

    color: #aeb7c0;

    padding: 0 16px;
}

.sample-form-card select option {
    color: #17212b;
    background-color: #f5f5f5;
}

/* Default Select... */
.sample-form-card select option[value=""] {
    color: #aeb7c0;
}

/* SPACE BETWEEN FIELDS */

.sample-form-card input,
.sample-form-card select {
    height: 55px;
    margin-bottom: 42px;
}


.sample-form-card textarea {
    height: 125px;

    resize: none;

    margin-bottom: 38px;
}


.sample-form-card input::placeholder,
.sample-form-card textarea::placeholder {
    color: #aeb7c0;
}


/* SUBMIT BUTTON */

.sample-form-card button {
    width: 100%;
    height: 60px;

    border: none;
    border-radius: 12px;

    background-color: #6f8d61;
    color: white;

    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 500;

    cursor: pointer;
}

.sample-form-card button:hover {
    background-color: #355f2a;
}

/* ================= FOOTER ================= */

/* ================= FOOTER ================= */

.footer {
    width: 100%;
    min-height: 150px;

    background-color: #6B865F;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 30px 80px;

    box-sizing: border-box;

    color: white;
}


/* ================= FOOTER LEFT ================= */

.footer-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 3px;
}

.footer-logo {
    width: 190px;
    height: auto;
}

.footer-logo img {
    width: 190px;
    height: auto;
    display: block;
}

.footer-left p {
    margin: 0;

    font-family: "Inter", sans-serif;
    font-size: 13px;
    font-weight: 400;

    color: white;
}


/* ================= FOOTER LINKS ================= */

.footer-links {
    display: flex;
    align-items: center;
    gap: 55px;
}

.footer-links a {
    color: white;

    text-decoration: none;

    font-family: "Inter", sans-serif;
    font-size: 17px;
    font-weight: 400;
}


/* ================= MOBILE FOOTER ================= */

@media (max-width: 800px) {

    .footer {
        min-height: 220px !important;

        height: auto !important;

        padding: 30px 20px !important;

        display: flex !important;
        flex-direction: column !important;

        align-items: center !important;
        justify-content: center !important;

        gap: 22px !important;
    }


    .footer-left {
        width: 100% !important;

        display: flex !important;
        flex-direction: column !important;

        align-items: center !important;

        gap: 5px !important;
    }


    .footer-logo {
        width: 190px !important;
        height: auto !important;
    }


    .footer-logo img {
        width: 190px !important;
        height: auto !important;
    }


    .footer-left p {
        margin: 0 !important;

        font-size: 11px !important;

        text-align: center !important;
    }


    .footer-links {
        width: 100% !important;

        display: flex !important;

        flex-direction: row !important;

        align-items: center !important;
        justify-content: center !important;

        flex-wrap: wrap !important;

        gap: 12px 22px !important;

        transform: none !important;
    }


    .footer-links a {
        font-size: 14px !important;

        white-space: nowrap !important;
    }
}


/* ================= SMALL MOBILE ================= */

@media (max-width: 560px) {

    .footer {
        min-height: 230px !important;

        padding: 25px 15px !important;
    }


    .footer-logo,
    .footer-logo img {
        width: 170px !important;
    }


    .footer-left p {
        font-size: 10px !important;
    }


    .footer-links {
        gap: 12px 18px !important;
    }


    .footer-links a {
        font-size: 13px !important;
    }
}

/* =========================================================
   RESPONSIVE DESIGN
   ========================================================= */

/* ================= TABLET ================= */

@media (max-width: 1000px) {

    /* NAVBAR */
    .navbar {
        padding: 0 25px;
    }

    .logo,
    .logo img {
        width: 220px;
        height: auto;
    }

    .nav-links {
        gap: 25px;
    }

    .nav-links a {
        font-size: 17px;
    }

    .nav-links a:last-child {
        padding: 10px 30px;
    }


    /* HERO */
    .hero {
        height: auto;
        min-height: 600px;
        padding: 90px 30px 70px;
    }

    .hero h1 {
        font-size: 58px;
        line-height: 1.2;
    }

    .hero p {
        max-width: 700px;
        font-size: 18px;
        line-height: 28px;
        margin-bottom: 70px;
    }

    .hero-image {
        width: 320px;
        height: 450px;
    }


    /* THREE VIDEOS */
    .nature-section {
        padding-bottom: 70px;
    }

    .nature-videos {
        padding: 0 25px;
        box-sizing: border-box;
    }

    .nature-video {
        width: 30%;
        height: 350px;
    }


    /* CULT CARD */
    .cult-card {
        width: calc(100% - 100px);
    }

    .cult-image {
        width: 50%;
    }


    /* PRODUCT CARDS */
    .products-container {
        width: calc(100% - 80px);
        gap: 25px;
    }

    .product-card {
        width: 50%;
        min-height: auto;
    }

    .product-image {
        height: 300px;
    }


    /* PHILOSOPHY */
    .philosophy-section {
        padding-left: 30px;
        padding-right: 30px;
    }

    .philosophy-content {
        width: 55%;
    }

    .philosophy-image {
        width: 42%;
    }


    /* GIFT */
    .gift-section h2 {
        font-size: 55px;
    }


    /* CONTACT */
    .sample-section {
        gap: 50px;
        padding-left: 30px;
        padding-right: 30px;
    }

    .sample-left {
        width: 50%;
    }

    .sample-left p {
        width: 100%;
    }

    .sample-image {
        width: 100%;
    }

    .sample-form-card {
        width: 48%;
        padding: 45px 35px;
    }


    /* FOOTER */
    .footer {
        padding-left: 60px;
        padding-right: 60px;
    }

}


/* ================= MOBILE ================= */

@media (max-width: 700px) {

    /* NAVBAR */

    body {
        padding-top: 80px;
    }

    .navbar {
        height: 80px;
        padding: 0 18px;
    }

    .logo,
    .logo img {
        width: 160px;
        height: auto;
    }

    .nav-links {
        gap: 12px;
    }

    .nav-links a {
        font-size: 14px;
    }

    .nav-links a:last-child {
        padding: 8px 15px;
        border-radius: 8px;
    }


    /* HERO */

    .hero {
        min-height: 650px;
        padding: 70px 20px 50px;
    }

    .hero-content {
        width: 100%;
    }

    .hero h1 {
        font-size: 43px;
        line-height: 1.15;
        letter-spacing: -1px;
    }

    .hero p {
        font-size: 16px;
        line-height: 25px;
        margin: 20px auto 50px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .hero-buttons a {
        width: 220px;
    }

    .hero-image {
        width: 240px;
        height: 350px;
        top: 250px;
        opacity: 0.35;
    }


    /* NATURE SECTION */

    .nature-section {
        min-height: auto;
        padding-bottom: 60px;
    }

    .nature-content {
        padding: 60px 20px 0;
    }

    .nature-content h2 {
        font-size: 29px;
        line-height: 1.2;
        margin-bottom: 35px;
    }

    .nature-content p {
        font-size: 16px;
        line-height: 24px;
        margin-bottom: 45px;
    }


    /* VIDEOS */

    .nature-videos {
        flex-direction: column;
        align-items: center;
        gap: 18px;
        padding: 0 20px;
    }

    .nature-video {
        width: 100%;
        max-width: 360px;
        height: 400px;
    }


    /* CULT SECTION */

    .cult-section {
        padding: 50px 20px 60px;
    }

    .cult-title {
        width: 230px;
        margin-left: 0;
        margin-bottom: 40px;
    }

    .cult-card {
        width: 100%;
        margin: 0;
        flex-direction: column;
        gap: 25px;
        padding: 12px;
    }

    .cult-image {
        width: 100%;
        height: 350px;
    }

    .cult-content {
        padding: 10px 10px 20px;
    }


    /* PRODUCT COLLECTION */

    .products-section {
        min-height: auto;
        padding: 50px 20px 70px;
    }

    .products-container {
        width: 100%;
        flex-direction: column;
        gap: 25px;
    }

    .product-card {
        width: 100%;
        min-height: auto;
    }

    .product-image {
        height: 300px;
    }


    /* PHILOSOPHY */

    .philosophy-section {
        min-height: auto;
        flex-direction: column;
        padding: 60px 25px;
    }

    .philosophy-content {
        width: 100%;
        padding-right: 0;
        transform: none;
    }

    .philosophy-content h2 {
        font-size: 30px;
        margin-bottom: 35px;
    }

    .philosophy-content p {
        font-size: 15px;
        line-height: 22px;
    }

    .philosophy-image {
        width: 100%;
        height: 350px;
        margin-top: 30px;
    }


    /* REVIEWS */

    .reviews-slider {
        padding-top: 50px;
    }

    .review-card {
        width: 300px;
        padding: 18px;
    }

    .review-card p {
        font-size: 16px;
    }


    /* GIFT */

    .gift-section {
        height: 180px;
        padding: 20px;
    }

    .gift-section h2 {
        font-size: 42px;
    }


    /* CONTACT */

    .sample-section {
        flex-direction: column;
        gap: 50px;
        padding: 55px 25px 65px;
    }

    .sample-left {
        width: 100%;
    }

    .sample-left h2 {
        font-size: 32px;
        line-height: 1.2;
    }

    .sample-left p {
        width: 100%;
        margin-top: 35px;
        font-size: 16px;
        line-height: 1.5;
    }

    .sample-image {
        width: 100%;
        margin-top: 40px;
    }

    .sample-form-card {
        width: 100%;
        padding: 40px 25px;
        border-radius: 16px;
    }


    /* FOOTER */

    .footer {
        height: auto;
        min-height: 220px;

        flex-direction: column;
        align-items: center;
        justify-content: center;

        padding: 40px 25px;
        gap: 25px;
    }

    .footer-left {
        align-items: center;
    }

    .footer-logo {
        width: 170px;
    }

    .footer-logo img {
        width: 250px;
    }

    .footer-left p {
        margin: 0;
        text-align: center;
    }

    .footer-links {
        gap: 25px;
        transform: none;
    }

    .footer-links a {
        font-size: 16px;
    }

}


/* ================= VERY SMALL MOBILE ================= */

@media (max-width: 450px) {

    .nav-links {
        gap: 8px;
    }

    .nav-links a {
        font-size: 12px;
    }

    .nav-links a:last-child {
        padding: 7px 10px;
    }

    .logo,
    .logo img {
        width: 130px;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero p {
        font-size: 15px;
    }

    .nature-content h2 {
        font-size: 26px;
    }

    .gift-section h2 {
        font-size: 34px;
    }

    .sample-left h2 {
        font-size: 28px;
    }

    .sample-form-card {
        padding: 30px 18px;
    }

}

/* ================= FOOTER RESPONSIVE FIX ================= */

@media (max-width: 800px) {

    .footer {
        width: 100%;
        height: auto;
        min-height: 190px;

        padding: 25px 20px;

        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;

        gap: 20px;

        box-sizing: border-box;
    }


    /* Logo + copyright */
    .footer-left {
        width: 100%;

        display: flex;
        flex-direction: column;
        align-items: center;

        gap: 6px;
    }


    .footer-logo {
        width: 180px;
        height: auto;
    }


    .footer-logo img {
        width: 180px;
        height: auto;
        display: block;
    }


    .footer-left p {
        margin: 0;

        font-size: 11px;
        text-align: center;
    }


    /* Footer navigation */
    .footer-links {
        width: 100%;

        display: flex;
        align-items: center;
        justify-content: center;

        flex-wrap: wrap;

        gap: 15px 25px;

        transform: none;
    }


    .footer-links a {
        font-size: 14px;
        white-space: nowrap;
    }

}


/* ================= SMALL MOBILE FOOTER ================= */

@media (max-width: 560px) {

    .footer {
        min-height: 210px;

        padding: 25px 15px;
        gap: 18px;
    }


    .footer-logo,
    .footer-logo img {
        width: 160px;
    }


    .footer-left p {
        font-size: 10px;
    }


    .footer-links {
        gap: 14px 20px;
    }


    .footer-links a {
        font-size: 13px;
    }

}

/* ================= MOBILE HAMBURGER ================= */

.menu-toggle {
    display: none;

    background: none;
    border: none;

    font-size: 32px;
    color: #668357;

    cursor: pointer;

    padding: 5px;
}

@media (max-width: 800px) {

    .navbar {
        height: 80px;
        padding: 0 20px 0 10px;
    }

    .logo {
        width: 200px;
        height: 80px;
    }

    .logo img {
        width: 200px;
        height: 80px;
    }

    .nav-links {
        display: none;
    }

    .menu-toggle {
        display: block;
    }
}

@media (max-width: 800px) {

    .nav-links.mobile-menu {
        display: flex;

        position: absolute;

        top: 80px;
        right: 20px;

        width: 180px;

        flex-direction: column;
        align-items: stretch;

        gap: 0;

        background: white;

        border: 1px solid #dddddd;
        border-radius: 10px;

        padding: 10px 0;

        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);

        z-index: 1001;
    }

    .nav-links.mobile-menu a {
        padding: 14px 20px;

        font-size: 17px;

        color: #668357;

        text-decoration: none;

        transform: none;
    }

    .nav-links.mobile-menu a:hover {
        background: #f4f6ee;
        transform: none;
    }

    .nav-links.mobile-menu a:last-child {
        border: none;
        border-radius: 0;

        padding: 14px 20px;

        background: transparent;
        color: #668357;
    }

    .nav-links.mobile-menu a:last-child:hover {
        background: #f4f6ee;
        color: #668357;
    }
}

/* ================= REQUIRED FIELD ================= */

.required {
    color: #c94a4a;
    font-weight: 600;
}


/* ================= DISABLED SUBMIT ================= */

.sample-form-card button:disabled {
    background-color: #b8c4b2;
    color: #ffffff;
    cursor: not-allowed;
    opacity: 0.8;
}

.sample-form-card button:not(:disabled) {
    background-color: #6f8d61;
    cursor: pointer;
}