/* =========================================================
   PELOGROW WEBSITE - MAIN STYLESHEET
   ========================================================= */

/* ---------- GOOGLE FONTS ---------- */

@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Poppins:wght@300;400;500;600;700&display=swap");


/* ---------- GLOBAL RESET ---------- */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Poppins", sans-serif;
    color: #2d332f;
    background-color: #ffffff;
    line-height: 1.7;
    overflow-x: hidden;
}

img {
    display: block;
    max-width: 100%;
}

a {
    transition: all 0.3s ease;
}


/* ---------- CONTAINERS ---------- */

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.narrow-container {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
}

.section-padding {
    padding: 95px 0;
}


/* ---------- ANNOUNCEMENT BAR ---------- */

.announcement-bar {
    background-color: #1f4434;
    color: #ffffff;
    text-align: center;
    padding: 11px 20px;
    font-size: 13px;
    letter-spacing: 0.4px;
}


/* ---------- HEADER ---------- */

.site-header {
    background-color: rgba(247, 248, 248, 0.942);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(38, 77, 59, 0.1);
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
}

.navigation {
    min-height: 82px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    font-family: "Cormorant Garamond", serif;
    font-size: 35px;
    line-height: 1;
    text-decoration: none;
    color: #022716;
    font-weight: 700;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: #03250c;
    font-size: 14px;
    font-weight: 500;
    position: relative;
}

.nav-menu a:not(.nav-shop-button)::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -7px;
    width: 0;
    height: 1px;
    background-color: #264d3b;
    transition: width 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #264d3b;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-shop-button {
    background-color: #264d3b;
    color: #ffffff !important;
    padding: 12px 24px;
    border-radius: 30px;
    box-shadow: 0 8px 20px rgba(38, 77, 59, 0.18);
}

.nav-shop-button:hover {
    background-color: #183c2c;
    transform: translateY(-2px);
}

.mobile-menu-button {
    display: none;
    background: transparent;
    border: none;
    color: #264d3b;
    font-size: 29px;
    cursor: pointer;
}


/* ---------- HERO SECTION ---------- */

.hero-section {
    min-height: 90vh;
    position: relative;

    background-image:
        linear-gradient(
            90deg,
            rgba(10, 27, 19, 0.76) 0%,
            rgba(10, 27, 19, 0.55) 42%,
            rgba(10, 27, 19, 0.18) 75%,
            rgba(10, 27, 19, 0.08) 100%
        ),
        url("../images/hero/hero.jpg");

    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;

    display: flex;
    align-items: center;
    color: #eef4ef;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            rgba(5, 18, 12, 0.08) 0%,
            rgba(5, 18, 12, 0.18) 100%
        );
    pointer-events: none;
}

.hero-content {
     position:relative;

    z-index:2;

    max-width:900px;

    margin:auto;

    text-align:center;
}
.hero-eyebrow {
    color: #dce9df;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.hero-content h1 {
   font-family:"Cormorant Garamond", serif;

    font-size: 72px;

    line-height:1.1;

    font-weight:600;

    max-width:700px;

    margin:25px auto;

    text-align:center;
}

.hero-description {
     max-width:620px;

    margin:0 auto 35px;

    font-size:18px;

    text-align:center;
}

.hero-buttons{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:20px;

    flex-wrap:wrap;

    margin-top:40px;

}

/* ---------- BUTTONS ---------- */

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 14px 31px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.button:hover {
    transform: translateY(-3px);
}

.button-primary {
    background-color: #ffffff;
    color: #264d3b;
    border-color: #ffffff;
}

.button-primary:hover {
    background-color: #edf4ef;
}

.button-secondary {
    background-color: transparent;
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.85);
}

.button-secondary:hover {
    background-color: #ffffff;
    color: #264d3b;
}

.button-dark {
    background-color: #264d3b;
    color: #ffffff;
    box-shadow: 0 10px 25px rgba(38, 77, 59, 0.22);
}

.button-dark:hover {
    background-color: #183c2c;
}

.button-light {
    background-color: #ffffff;
    color: #264d3b;
}

.button-light:hover {
    background-color: #edf4ef;
}


/* ---------- HEADINGS ---------- */

.section-eyebrow {
    color: #557461;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.section-heading {
    max-width: 780px;
    margin: 0 auto 58px;
    text-align: center;
}

.section-heading h2,
.introduction-section h2,
.product-information h2,
.final-cta h2 {
    font-family: "Cormorant Garamond", serif;
    color: #223c30;
    font-size: 48px;
    line-height: 1.15;
    margin-bottom: 20px;
}


/* ---------- INTRODUCTION ---------- */

.introduction-section {
    background-color: #ffffff;
}

.introduction-section p:last-child {
    color: #68716b;
    font-size: 17px;
}


/* ---------- BENEFITS ---------- */

.benefits-section {
    background-color: #f4f7f4;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.benefit-card {
    background-color: #ffffff;
    border-radius: 20px;
    padding: 42px 34px;
    border: 1px solid rgba(38, 77, 59, 0.08);
    box-shadow: 0 14px 35px rgba(40, 60, 48, 0.07);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(40, 60, 48, 0.12);
}

.benefit-number {
    font-family: "Cormorant Garamond", serif;
    color: #6b8b75;
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 18px;
}

.benefit-card h3 {
    font-family: "Cormorant Garamond", serif;
    color: #244b39;
    font-size: 28px;
    margin-bottom: 13px;
}

.benefit-card p {
    color: #68716b;
    font-size: 15px;
}


/* ---------- FEATURED PRODUCT ---------- */

.featured-product {
    background-color: #ffffff;
}

.product-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 75px;
    align-items: center;
}

.product-image-area {
    position: relative;
}

.product-image-placeholder {
    min-height: 560px;
    background:
        linear-gradient(
            145deg,
            #e8f0e9,
            #f8faf7
        );
    border-radius: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #557461;
    font-size: 18px;
    font-weight: 500;
    border: 1px solid rgba(38, 77, 59, 0.09);
    overflow: hidden;
}

.product-image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-information h2 {
    margin-bottom: 10px;
}

.product-size {
    color: #758079;
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 18px;
}

.price-area {
    display: flex;
    align-items: center;
    margin-bottom: 27px;
}

.sale-price {
    font-family: "Cormorant Garamond", serif;
    font-size: 43px;
    font-weight: 700;
    color: #264d3b;
}

.regular-price {
    margin-left: 16px;
    color: #9a9f9b;
    font-size: 18px;
    text-decoration: line-through;
}

.product-information > p:not(.section-eyebrow):not(.product-size) {
    color: #667069;
    margin-bottom: 25px;
}

.product-highlights {
    list-style: none;
    margin: 28px 0 35px;
}

.product-highlights li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 13px;
    color: #465049;
}

.product-highlights li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #557461;
    font-weight: 700;
}


/* ---------- BRAND STATEMENT ---------- */

.brand-statement {
    background-color: #f5f8f5;
    text-align: center;
}

.brand-quote {
    font-family: "Cormorant Garamond", serif;
    color: #284b39;
    font-size: 40px;
    line-height: 1.3;
    font-style: italic;
    margin-bottom: 30px;
}

.text-link {
    color: #264d3b;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid #264d3b;
    padding-bottom: 4px;
}

.text-link:hover {
    color: #6a8772;
    border-color: #6a8772;
}


/* ---------- FINAL CTA ---------- */

.final-cta {
    background:
        linear-gradient(
            135deg,
            #183c2c,
            #315d47
        );
    color: #ffffff;
    text-align: center;
}

.final-cta .section-eyebrow {
    color: #cbdacc;
}

.final-cta h2 {
    color: #ffffff;
}

.final-cta p {
    color: rgba(255, 255, 255, 0.87);
    margin-bottom: 30px;
}


/* ---------- FOOTER ---------- */

.site-footer {
    background-color: #17231d;
    color: rgba(255, 255, 255, 0.8);
    padding-top: 75px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 65px;
}

.footer-logo {
    display: inline-block;
    font-family: "Cormorant Garamond", serif;
    color: #ffffff;
    text-decoration: none;
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 18px;
}

.footer-brand p {
    max-width: 410px;
    color: rgba(255, 255, 255, 0.68);
}

.footer-links h3 {
    color: #ffffff;
    font-family: "Cormorant Garamond", serif;
    font-size: 23px;
    margin-bottom: 20px;
}

.footer-links a {
    display: block;
    width: fit-content;
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
    margin-bottom: 11px;
    font-size: 14px;
}

.footer-links a:hover {
    color: #ffffff;
    transform: translateX(3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    text-align: center;
    margin-top: 65px;
    padding: 25px 0;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
}


/* ---------- TABLET ---------- */

@media (max-width: 900px) {

    .section-padding {
        padding: 78px 0;
    }

    .navigation {
        min-height: 74px;
    }

    .mobile-menu-button {
        display: block;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #ffffff;
        padding: 24px 5%;
        flex-direction: column;
        align-items: flex-start;
        gap: 19px;
        box-shadow: 0 14px 25px rgba(0, 0, 0, 0.09);
    }

    .nav-menu.menu-open {
        display: flex;
    }

    .nav-menu a {
        width: 100%;
    }

    .nav-shop-button {
        width: auto !important;
    }

    .hero-section {
        min-height: 760px;
        background-position: 60% center;
    }

    .hero-content {
        max-width: 630px;
        padding: 95px 0;
    }

    .hero-content h1 {
        font-size: 56px;
    }

    .hero-description {
        font-size: 17px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .product-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}


/* ---------- MOBILE ---------- */

@media (max-width: 600px) {

    .container {
        width: 88%;
    }

    .section-padding {
        padding: 64px 0;
    }

    .announcement-bar {
        font-size: 11px;
        line-height: 1.5;
        padding: 10px 14px;
    }

    .logo {
        font-size: 29px;
    }

    .hero-section {
        min-height: 720px;

        background-image:
            linear-gradient(
                rgba(8, 24, 16, 0.68),
                rgba(8, 24, 16, 0.62)
            ),
            url("../images/hero/hero.jpg");

        background-position: 65% center;
    }

    .hero-content {
        padding: 78px 0;
    }

    .hero-content h1 {
        font-size: 44px;
        line-height: 1.07;
    }

    .hero-description {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .button {
        width: 100%;
        max-width: 285px;
    }

    .section-heading h2,
    .introduction-section h2,
    .product-information h2,
    .final-cta h2 {
        font-size: 38px;
    }

    .section-heading {
        margin-bottom: 42px;
    }

    .benefit-card {
        padding: 34px 27px;
    }

    .product-image-placeholder {
        min-height: 420px;
    }

    .sale-price {
        font-size: 38px;
    }

    .brand-quote {
        font-size: 31px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-brand {
        grid-column: auto;
    }

    .footer-bottom {
        margin-top: 45px;
    }
}

/* ===========================
   PELOGROW IMAGES
=========================== */

/* Header logo */

.header-logo{
    display:block;
    width:170px;
    height:auto;
}


/* Hero logo */

.hero-logo{
    text-align:center;
    margin-bottom:15px;
}

.hero-logo img{
    display:block;
    width:720px;
    max-width:100%;
    height:auto;
    margin:0 auto;
}


/* Product image */

.product-image-area{
    display:flex;
    justify-content:center;
    align-items:center;
}

.product-image{
    display:block;
    width:360px;
    max-width:100%;
    height:auto;
    transition:transform .4s ease;
    filter:drop-shadow(0 25px 30px rgba(0,0,0,.18));
}

.product-image:hover{
    transform:translateY(-8px);
}


/* Tablet and mobile */

@media(max-width:900px){

    .hero-logo img{
        width:300px;
    }

    .header-logo{
        width:140px;
    }

    .product-image{
        width:280px;
    }
}

/* =========================================================
   PRODUCT PAGE
   ========================================================= */

.product-page-section {
    background-color: #fbfaf6;
}

.product-page-layout {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 75px;
    align-items: start;
}


/* ---------- PRODUCT GALLERY ---------- */

.product-gallery {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 20px;
    position: sticky;
    top: 125px;
}

.product-thumbnails {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.thumbnail-button {
    width: 100%;
    height: 105px;
    padding: 0;
    border: 1px solid rgba(38, 77, 59, 0.12);
    border-radius: 14px;
    overflow: hidden;
    background-color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.thumbnail-button img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumbnail-button:hover,
.thumbnail-button.active {
    border-color: #264d3b;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(38, 77, 59, 0.12);
}

.main-product-image {
    min-height: 650px;
    border-radius: 24px;
    overflow: hidden;
    background:
        linear-gradient(
            145deg,
            #e8efe8,
            #f9faf6
        );
    border: 1px solid rgba(38, 77, 59, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-product-image img {
    width: 100%;
    height: 100%;
    min-height: 650px;
    object-fit: cover;
}


/* ---------- PRODUCT INFORMATION ---------- */

.product-page-information {
    padding-top: 15px;
}

.product-page-information h1 {
    font-family: "Cormorant Garamond", serif;
    color: #193a2a;
    font-size: 57px;
    line-height: 1.05;
    font-weight: 600;
    margin-bottom: 13px;
}

.product-volume {
    color: #78827b;
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 23px;
}

.product-price-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 26px;
}

.product-sale-price {
    font-family: "Cormorant Garamond", serif;
    color: #264d3b;
    font-size: 47px;
    font-weight: 700;
}

.product-regular-price {
    color: #999f9b;
    text-decoration: line-through;
    font-size: 18px;
}

.product-sale-badge {
    background-color: #dfe9d9;
    color: #294a38;
    border-radius: 30px;
    padding: 7px 15px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.product-page-description {
    color: #606a64;
    font-size: 16px;
    margin-bottom: 27px;
}

.product-benefit-list {
    list-style: none;
    margin-bottom: 33px;
}

.product-benefit-list li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 14px;
    color: #3f4943;
    font-size: 15px;
}

.product-benefit-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    width: 21px;
    height: 21px;
    border-radius: 50%;
    background-color: #e5eee5;
    color: #264d3b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
}


/* ---------- QUANTITY ---------- */

.quantity-section {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 25px;
}

.quantity-label {
    color: #344139;
    font-weight: 600;
    font-size: 14px;
}

.quantity-control {
    display: flex;
    align-items: center;
    border: 1px solid rgba(38, 77, 59, 0.25);
    border-radius: 12px;
    overflow: hidden;
    background-color: #ffffff;
}

.quantity-control button {
    width: 44px;
    height: 46px;
    border: none;
    background-color: transparent;
    color: #264d3b;
    font-size: 22px;
    cursor: pointer;
}

.quantity-control button:hover {
    background-color: #edf3ed;
}

.quantity-control input {
    width: 50px;
    height: 46px;
    border: none;
    border-left: 1px solid rgba(38, 77, 59, 0.12);
    border-right: 1px solid rgba(38, 77, 59, 0.12);
    text-align: center;
    font-family: inherit;
    font-size: 15px;
    color: #26362d;
    outline: none;
}

.quantity-control input::-webkit-inner-spin-button,
.quantity-control input::-webkit-outer-spin-button {
    appearance: none;
}


/* ---------- PURCHASE BUTTONS ---------- */

.product-purchase-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 35px;
}

.product-purchase-buttons .button {
    width: 100%;
}

.product-buy-button {
    background-color: transparent;
    color: #264d3b;
    border-color: #264d3b;
}

.product-buy-button:hover {
    background-color: #264d3b;
    color: #ffffff;
}


/* ---------- PURCHASE ASSURANCE ---------- */

.purchase-assurance {
    padding-top: 28px;
    border-top: 1px solid rgba(38, 77, 59, 0.12);
    display: grid;
    gap: 17px;
}

.assurance-item {
    display: flex;
    align-items: flex-start;
    gap: 13px;
}

.assurance-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background-color: #edf3ed;
    color: #264d3b;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-weight: 700;
}

.assurance-item strong {
    display: block;
    color: #2e3d34;
    font-size: 14px;
    margin-bottom: 2px;
}

.assurance-item p {
    color: #7a827d;
    font-size: 12px;
}


/* ---------- PRODUCT TABS ---------- */

.product-details-section {
    background-color: #ffffff;
}

.product-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    border-bottom: 1px solid rgba(38, 77, 59, 0.15);
    margin-bottom: 45px;
}

.product-tab {
    border: none;
    background: transparent;
    padding: 0 0 17px;
    color: #6f7872;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    position: relative;
}

.product-tab::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 0;
    height: 2px;
    background-color: #264d3b;
    transition: width 0.3s ease;
}

.product-tab:hover,
.product-tab.active {
    color: #264d3b;
}

.product-tab.active::after {
    width: 100%;
}

.product-tab-content {
    display: none;
}

.product-tab-content.active {
    display: block;
}

.product-detail-layout {
    display: grid;
    grid-template-columns: 1fr 0.85fr;
    gap: 70px;
    align-items: center;
}

.product-detail-copy h2,
.product-information-panel h2 {
    font-family: "Cormorant Garamond", serif;
    color: #233f31;
    font-size: 44px;
    line-height: 1.15;
    margin-bottom: 23px;
}

.product-detail-copy p:not(.section-eyebrow),
.product-information-panel p {
    color: #626d66;
    margin-bottom: 18px;
}

.product-detail-image {
    border-radius: 22px;
    overflow: hidden;
    min-height: 400px;
}

.product-detail-image img {
    width: 100%;
    height: 100%;
    min-height: 400px;
    object-fit: cover;
}

.product-information-panel {
    max-width: 850px;
}

.usage-steps {
    margin: 25px 0 30px 22px;
    color: #47514b;
}

.usage-steps li {
    margin-bottom: 14px;
    padding-left: 8px;
}

.product-caution {
    padding: 18px 22px;
    border-left: 3px solid #6d8a75;
    background-color: #f3f7f3;
    border-radius: 0 10px 10px 0;
    font-size: 14px;
}


/* ---------- PRODUCT FEATURES ---------- */

.product-features-section {
    background-color: #f4f7f4;
}

.product-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.product-feature-card {
    background-color: #ffffff;
    padding: 38px 31px;
    border-radius: 19px;
    border: 1px solid rgba(38, 77, 59, 0.08);
    box-shadow: 0 12px 35px rgba(40, 60, 48, 0.06);
}

.feature-symbol {
    font-family: "Cormorant Garamond", serif;
    color: #72907a;
    font-size: 39px;
    font-weight: 600;
    margin-bottom: 14px;
}

.product-feature-card h3 {
    font-family: "Cormorant Garamond", serif;
    color: #264d3b;
    font-size: 27px;
    margin-bottom: 12px;
}

.product-feature-card p {
    color: #69736d;
    font-size: 14px;
}


/* ---------- PRODUCT PAGE TABLET ---------- */

@media (max-width: 950px) {

    .product-page-layout {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .product-gallery {
        position: static;
    }

    .product-page-information h1 {
        font-size: 50px;
    }

    .product-detail-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .product-feature-grid {
        grid-template-columns: 1fr;
    }
}


/* ---------- PRODUCT PAGE MOBILE ---------- */

@media (max-width: 600px) {

    .product-gallery {
        grid-template-columns: 1fr;
    }

    .product-thumbnails {
        order: 2;
        flex-direction: row;
    }

    .thumbnail-button {
        height: 82px;
    }

    .main-product-image {
        min-height: 440px;
    }

    .main-product-image img {
        min-height: 440px;
    }

    .product-page-information h1 {
        font-size: 41px;
    }

    .product-sale-price {
        font-size: 40px;
    }

    .product-purchase-buttons {
        grid-template-columns: 1fr;
    }

    .product-tabs {
        gap: 24px;
    }

    .product-detail-copy h2,
    .product-information-panel h2 {
        font-size: 36px;
    }
}
/* ---------- INGREDIENTS SECTION ---------- */

.ingredients-intro {
    max-width: 760px;
    margin: 0 auto 30px;
    color: #555;
    line-height: 1.8;
    text-align: center;
}

.ingredients-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.ingredients-list li {
    display: flex;
    align-items: center;
    padding: 18px 22px;
    background: #f7f5ef;
    border: 1px solid #ddd5c2;
    border-radius: 12px;
    color: #294737;
    font-size: 16px;
    font-style: italic;      /* Scientific names */
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0,0,0,0.04);
}

.ingredients-list li::before {
    content: "✦";
    margin-right: 12px;
    color: #b08d57;
    font-size: 18px;
    font-style: normal;
}

.ingredients-list li:hover {
    transform: translateY(-3px);
    background: #fcfbf8;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.ingredients-note {
    margin-top: 20px;
    text-align: center;
    color: #777;
    font-size: 14px;
    font-style: italic;
    line-height: 1.7;
}

/* ---------- MOBILE ---------- */

@media (max-width: 768px) {

    .ingredients-list {
        grid-template-columns: 1fr;
    }

    .ingredients-list li {
        padding: 16px 18px;
        font-size: 15px;
    }

}

.hero-description {
     max-width:620px;

    margin:0 auto 35px;

    font-size:18px;

    text-align:center;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}



/* =========================================================
   HOW TO USE SECTION
   ========================================================= */

.how-to-use-header {
    max-width: 760px;
    margin: 0 auto 45px;
    text-align: center;
}

.how-to-use-header h2 {
    font-family: "Cormorant Garamond", serif;
    color: #233f31;
    font-size: 46px;
    line-height: 1.15;
    margin-bottom: 16px;
}

.how-to-use-header > p:last-child {
    color: #667069;
    font-size: 16px;
    line-height: 1.8;
}

.usage-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.usage-card {
    background-color: #ffffff;
    border: 1px solid rgba(38, 77, 59, 0.1);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(40, 60, 48, 0.08);
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.usage-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 20px 45px rgba(40, 60, 48, 0.14);
}

.usage-image {
    width: 100%;
    height: 330px;
    overflow: hidden;
    background-color: #edf2ed;
}

.usage-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.usage-card:hover .usage-image img {
    transform: scale(1.04);
}

.usage-card-content {
    position: relative;
    padding: 30px 28px 34px;
}

.usage-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin-bottom: 18px;
    border-radius: 50%;
    background-color: #e6eee5;
    color: #264d3b;
    font-family: "Cormorant Garamond", serif;
    font-size: 21px;
    font-weight: 700;
}

.usage-card-content h3 {
    font-family: "Cormorant Garamond", serif;
    color: #264d3b;
    font-size: 29px;
    line-height: 1.2;
    margin-bottom: 12px;
}

.usage-card-content p {
    color: #69736d;
    font-size: 15px;
    line-height: 1.8;
}

#how-to-use .product-caution {
    max-width: 900px;
    margin: 0 auto;
}


/* ---------- HOW TO USE TABLET ---------- */

@media (max-width: 900px) {

    .usage-image {
        height: 280px;
    }

}


/* ---------- HOW TO USE MOBILE ---------- */

@media (max-width: 650px) {

    .how-to-use-header {
        margin-bottom: 32px;
    }

    .how-to-use-header h2 {
        font-size: 37px;
    }

    .usage-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .usage-image {
        height: 280px;
    }

    .usage-card-content {
        padding: 25px 22px 29px;
    }

    .usage-card-content h3 {
        font-size: 27px;
    }

}

/* ---------- SHIPPING ---------- */

.shipping-section{
    padding:40px 0;
}

.shipping-section h2{
    text-align:center;
    font-size:34px;
    color:#234a37;
    margin-bottom:12px;
}

.shipping-intro{
    max-width:700px;
    margin:0 auto 40px;
    text-align:center;
    color:#666;
    line-height:1.8;
}

.shipping-grid{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:24px;
}

.shipping-card{

    background:#ffffff;

    border:1px solid #e8ece9;

    border-radius:18px;

    padding:32px;

    box-shadow:0 12px 30px rgba(0,0,0,.05);

    transition:.3s;
}

.shipping-card:hover{

    transform:translateY(-6px);

    box-shadow:0 18px 40px rgba(0,0,0,.08);

}

.shipping-icon{

    width:70px;

    height:70px;

    border-radius:50%;

    background:#eef5f0;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:30px;

    margin-bottom:20px;
}

.shipping-card h3{

    color:#234a37;

    margin-bottom:12px;
}

.shipping-card p{

    color:#666;

    line-height:1.8;
}

@media(max-width:768px){

.shipping-grid{

grid-template-columns:1fr;

}

}

/* ==================================================
   ABOUT PAGE
================================================== */

/* ---------- ABOUT HERO ---------- */

.about-hero {
    background:
        linear-gradient(
            135deg,
            rgba(246, 242, 234, 0.96),
            rgba(235, 242, 235, 0.92)
        );
}

.about-hero-layout {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 70px;
    align-items: center;
}

.about-hero-content {
    max-width: 650px;
}

.about-hero-content h1 {
    margin-bottom: 24px;
    color: #1f3b2e;
    font-size: clamp(42px, 6vw, 72px);
    line-height: 1.08;
}

.about-hero-description {
    max-width: 590px;
    margin-bottom: 32px;
    color: #56635c;
    font-size: 18px;
    line-height: 1.9;
}

.about-hero-image {
    min-height: 560px;
    overflow: hidden;
    border-radius: 32px 8px 32px 8px;
    box-shadow: 0 24px 60px rgba(31, 59, 46, 0.18);
}

.about-hero-image img {
    width: 100%;
    height: 100%;
    min-height: 560px;
    display: block;
    object-fit: cover;
}


/* ---------- BRAND STORY ---------- */

.about-story-section {
    background: #ffffff;
}

.about-story-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 80px;
    align-items: center;
}

.about-story-image {
    min-height: 570px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 55px;
    overflow: hidden;
    border-radius: 8px 32px 8px 32px;
    background:
        radial-gradient(
            circle at center,
            #f6f2e9 0%,
            #e6eee7 100%
        );
}

.about-story-image img {
    width: 100%;
    max-width: 340px;
    height: auto;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 25px 25px rgba(28, 55, 42, 0.2));
}

.about-story-content {
    max-width: 680px;
}

.about-story-content h2 {
    margin-bottom: 25px;
    color: #213d30;
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.18;
}

.about-story-content p {
    margin-bottom: 20px;
    color: #5b625e;
    font-size: 17px;
    line-height: 1.9;
}


/* ---------- MISSION AND VALUES ---------- */

.about-mission-section {
    background: #f5f2eb;
}

.about-mission-section .section-heading {
    max-width: 760px;
    margin: 0 auto 55px;
    text-align: center;
}

.about-mission-section .section-heading h2 {
    margin-bottom: 20px;
}

.about-mission-section .section-heading > p:last-child {
    color: #5c655f;
    font-size: 17px;
    line-height: 1.8;
}

.about-values-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.about-value-card {
    position: relative;
    min-height: 315px;
    padding: 38px 32px;
    overflow: hidden;
    border: 1px solid rgba(42, 78, 59, 0.13);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.84);
    box-shadow: 0 15px 35px rgba(34, 66, 50, 0.08);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.about-value-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 24px 45px rgba(34, 66, 50, 0.14);
}

.about-value-number {
    display: inline-flex;
    width: 48px;
    height: 48px;
    margin-bottom: 28px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #294f3b;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
}

.about-value-card h3 {
    margin-bottom: 16px;
    color: #233f32;
    font-size: 24px;
}

.about-value-card p {
    color: #616a64;
    line-height: 1.8;
}


/* ---------- INGREDIENT PHILOSOPHY ---------- */

.about-philosophy-section {
    background: #ffffff;
}

.about-philosophy-layout {
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    gap: 80px;
    align-items: center;
}

.about-philosophy-content {
    max-width: 660px;
}

.about-philosophy-content h2 {
    margin-bottom: 24px;
    color: #203d30;
    font-size: clamp(34px, 4vw, 50px);
    line-height: 1.2;
}

.about-philosophy-content p {
    margin-bottom: 20px;
    color: #5c655f;
    font-size: 17px;
    line-height: 1.9;
}

.about-philosophy-content .button {
    margin-top: 12px;
}

.about-philosophy-panel {
    padding: 45px;
    border-radius: 28px 8px 28px 8px;
    background:
        linear-gradient(
            145deg,
            #264d3b,
            #173528
        );
    box-shadow: 0 24px 55px rgba(27, 58, 43, 0.22);
}

.philosophy-item {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 18px;
    padding: 26px 0;
    color: #ffffff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.philosophy-item:first-child {
    padding-top: 0;
}

.philosophy-item:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.philosophy-item > span {
    display: flex;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    color: #d9c99c;
}

.philosophy-item h3 {
    margin-bottom: 8px;
    color: #ffffff;
    font-size: 21px;
}

.philosophy-item p {
    margin: 0;
    color: rgba(255, 255, 255, 0.76);
    line-height: 1.7;
}


/* ---------- COMPANY SECTION ---------- */

.about-company-section {
    background:
        linear-gradient(
            180deg,
            #eef3ee,
            #f7f4ed
        );
}

.about-company-box {
    max-width: 960px;
    padding: 70px 75px;
    border: 1px solid rgba(38, 77, 59, 0.12);
    border-radius: 32px;
    background: rgba(255, 255, 255, 0.86);
    text-align: center;
    box-shadow: 0 20px 50px rgba(31, 59, 46, 0.1);
}

.about-company-box h2 {
    margin-bottom: 25px;
    color: #203d30;
    font-size: clamp(34px, 4vw, 50px);
}

.about-company-box p {
    max-width: 760px;
    margin: 0 auto 18px;
    color: #5d6660;
    font-size: 17px;
    line-height: 1.85;
}

.about-company-box p:last-child {
    margin-bottom: 0;
}


/* ---------- ABOUT RESPONSIVE ---------- */

@media (max-width: 960px) {

    .about-hero-layout,
    .about-story-layout,
    .about-philosophy-layout {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .about-hero-content,
    .about-story-content,
    .about-philosophy-content {
        max-width: 100%;
    }

    .about-hero-image,
    .about-hero-image img {
        min-height: 470px;
    }

    .about-story-image {
        min-height: 480px;
    }

    .about-values-grid {
        grid-template-columns: 1fr;
    }

    .about-value-card {
        min-height: auto;
    }

}

@media (max-width: 640px) {

    .about-hero-content h1 {
        font-size: 40px;
    }

    .about-hero-description {
        font-size: 16px;
    }

    .about-hero-image,
    .about-hero-image img {
        min-height: 380px;
    }

    .about-story-image {
        min-height: 400px;
        padding: 35px 25px;
    }

    .about-story-image img {
        max-width: 260px;
    }

    .about-value-card {
        padding: 32px 26px;
    }

    .about-philosophy-panel {
        padding: 34px 25px;
    }

    .philosophy-item {
        grid-template-columns: 36px 1fr;
        gap: 14px;
    }

    .about-company-box {
        padding: 48px 25px;
        border-radius: 24px;
    }

}

/* ==================================================
   DISCOVER PELOGROW MODAL
================================================== */

.discover-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    visibility: hidden;
    opacity: 0;
    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;
}

.discover-modal.active {
    visibility: visible;
    opacity: 1;
}

.discover-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(12, 27, 20, 0.78);
    backdrop-filter: blur(8px);
}

.discover-modal-box {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1150px;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 28px;
    background: #ffffff;
    box-shadow: 0 35px 90px rgba(0, 0, 0, 0.35);
    transform: translateY(30px) scale(0.97);
    transition: transform 0.35s ease;
}

.discover-modal.active .discover-modal-box {
    transform: translateY(0) scale(1);
}

.discover-modal-close {
    position: absolute;
    top: 18px;
    right: 20px;
    z-index: 5;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.94);
    color: #234333;
    font-size: 32px;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.15);
    transition:
        background 0.25s ease,
        transform 0.25s ease;
}

.discover-modal-close:hover {
    background: #ffffff;
    transform: rotate(90deg);
}

.discover-modal-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    min-height: 680px;
}

.discover-modal-image {
    position: relative;
    min-height: 680px;
    overflow: hidden;
    border-radius: 28px 0 0 28px;
    background: #e9eee8;
}

.discover-modal-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            transparent 55%,
            rgba(18, 48, 34, 0.2)
        );
}

.discover-modal-image img {
    width: 100%;
    height: 100%;
    min-height: 680px;
    display: block;
    object-fit: cover;
}

.discover-modal-content {
    padding: 65px 55px 50px;
}

.discover-modal-content h2 {
    margin: 12px 0 22px;
    color: #203d30;
    font-size: clamp(34px, 4vw, 50px);
    line-height: 1.15;
}

.discover-modal-description {
    margin-bottom: 30px;
    color: #5c655f;
    font-size: 16px;
    line-height: 1.85;
}

.discover-modal-section {
    margin-bottom: 28px;
}

.discover-modal-section h3 {
    margin-bottom: 15px;
    color: #244535;
    font-size: 20px;
}

.discover-ingredient-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.discover-ingredient-list li {
    padding: 12px 15px;
    border: 1px solid rgba(38, 77, 59, 0.12);
    border-radius: 10px;
    background: #f3f6f2;
    color: #3c5749;
    font-size: 14px;
    font-weight: 500;
}

.discover-benefit-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 13px 24px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.discover-benefit-list li {
    display: flex;
    gap: 10px;
    color: #566159;
    font-size: 14px;
    line-height: 1.55;
}

.discover-benefit-list li span {
    flex-shrink: 0;
    color: #2c6448;
    font-weight: 700;
}

.discover-modal-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.discover-modal-actions .button {
    border: none;
    cursor: pointer;
}

.discover-modal-note {
    margin-top: 24px;
    color: #7a817d;
    font-size: 12px;
    line-height: 1.65;
}

body.modal-open {
    overflow: hidden;
}


/* ---------- RESPONSIVE ---------- */

@media (max-width: 900px) {

    .discover-modal {
        padding: 20px;
    }

    .discover-modal-layout {
        grid-template-columns: 1fr;
    }

    .discover-modal-image {
        min-height: 380px;
        border-radius: 28px 28px 0 0;
    }

    .discover-modal-image img {
        min-height: 380px;
        max-height: 480px;
    }

    .discover-modal-content {
        padding: 45px 35px;
    }

}

@media (max-width: 600px) {

    .discover-modal {
        align-items: flex-start;
        padding: 12px;
    }

    .discover-modal-box {
        max-height: calc(100vh - 24px);
        border-radius: 20px;
    }

    .discover-modal-image {
        min-height: 300px;
        border-radius: 20px 20px 0 0;
    }

    .discover-modal-image img {
        min-height: 300px;
    }

    .discover-modal-content {
        padding: 38px 22px 30px;
    }

    .discover-modal-content h2 {
        font-size: 32px;
    }

    .discover-ingredient-list,
    .discover-benefit-list {
        grid-template-columns: 1fr;
    }

    .discover-modal-actions {
        flex-direction: column;
    }

    .discover-modal-actions .button {
        width: 100%;
        text-align: center;
    }

}

/* ==================================================
   FAQ PAGE
================================================== */

/* ---------- FAQ HERO ---------- */

.faq-hero {
    background:
        linear-gradient(
            135deg,
            rgba(245, 241, 232, 0.96),
            rgba(231, 239, 232, 0.94)
        );
    text-align: center;
}

.faq-hero h1 {
    margin-bottom: 22px;
    color: #203d30;
    font-size: clamp(42px, 6vw, 70px);
    line-height: 1.08;
}

.faq-hero-description {
    max-width: 720px;
    margin: 0 auto;
    color: #59645e;
    font-size: 18px;
    line-height: 1.85;
}


/* ---------- FAQ CONTENT ---------- */

.faq-section {
    background: #ffffff;
}

.faq-layout {
    max-width: 980px;
}

.faq-category {
    margin-bottom: 70px;
}

.faq-category:last-child {
    margin-bottom: 0;
}

.faq-category-heading {
    margin-bottom: 28px;
}

.faq-category-heading h2 {
    color: #203d30;
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.2;
}

.faq-list {
    display: grid;
    gap: 14px;
}

.faq-item {
    overflow: hidden;
    border: 1px solid rgba(38, 77, 59, 0.13);
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 10px 28px rgba(32, 61, 48, 0.06);
    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.faq-item.active {
    border-color: rgba(38, 77, 59, 0.28);
    box-shadow: 0 16px 34px rgba(32, 61, 48, 0.1);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 23px 26px;
    border: 0;
    background: transparent;
    color: #294838;
    text-align: left;
    font: inherit;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
}

.faq-question:hover {
    background: #f6f8f5;
}

.faq-question:focus-visible {
    outline: 3px solid rgba(52, 97, 73, 0.25);
    outline-offset: -3px;
}

.faq-icon {
    flex-shrink: 0;
    display: inline-flex;
    width: 34px;
    height: 34px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #edf3ed;
    color: #2d5942;
    font-size: 24px;
    font-weight: 400;
    line-height: 1;
    transition:
        transform 0.3s ease,
        background 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    background: #294f3b;
    color: #ffffff;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    visibility: hidden;
    opacity: 0;
    transition:
        max-height 0.4s ease,
        opacity 0.3s ease,
        visibility 0.3s ease;
}

.faq-item.active .faq-answer {
    visibility: visible;
    opacity: 1;
}

.faq-answer p,
.faq-answer ol {
    margin: 0;
    padding: 0 26px 25px;
    color: #606963;
    line-height: 1.85;
}

.faq-answer a {
    color: #2a5a42;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.faq-steps {
    padding-left: 50px !important;
}

.faq-steps li {
    margin-bottom: 10px;
}

.faq-steps li:last-child {
    margin-bottom: 0;
}


/* ---------- CONTACT PANEL ---------- */

.faq-contact-section {
    background:
        linear-gradient(
            180deg,
            #f1f5f1,
            #f8f4ec
        );
}

.faq-contact-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 45px;
    padding: 58px 65px;
    border: 1px solid rgba(38, 77, 59, 0.12);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 20px 50px rgba(32, 61, 48, 0.09);
}

.faq-contact-box h2 {
    margin-bottom: 15px;
    color: #203d30;
    font-size: clamp(32px, 4vw, 46px);
}

.faq-contact-box p {
    max-width: 650px;
    margin: 0;
    color: #5e6861;
    font-size: 17px;
    line-height: 1.8;
}

.faq-contact-box .button {
    flex-shrink: 0;
}


/* ---------- RESPONSIVE ---------- */

@media (max-width: 760px) {

    .faq-hero-description {
        font-size: 16px;
    }

    .faq-category {
        margin-bottom: 52px;
    }

    .faq-question {
        padding: 20px;
        font-size: 16px;
    }

    .faq-answer p,
    .faq-answer ol {
        padding-right: 20px;
        padding-bottom: 22px;
        padding-left: 20px;
    }

    .faq-steps {
        padding-left: 42px !important;
    }

    .faq-contact-box {
        flex-direction: column;
        align-items: flex-start;
        padding: 42px 28px;
    }

    .faq-contact-box .button {
        width: 100%;
        text-align: center;
    }

}

/* ==========================================
   CUSTOMER SUPPORT CARD
========================================== */

.support-card-section{

    padding:90px 0;

    background:#ffffff;

}

.support-card{

    max-width:900px;

    margin:auto;

    padding:70px;

    border-radius:28px;

    text-align:center;

    background:linear-gradient(
        135deg,
        #f8f6f1,
        #eef5ef
    );

    box-shadow:0 20px 45px rgba(0,0,0,.08);

}

.support-card h2{

    margin:18px 0 22px;

    color:#1f3b2f;

}

.support-description{

    max-width:650px;

    margin:0 auto 40px;

    color:#5d6760;

    line-height:1.8;

}

.support-details{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:25px;

    margin-bottom:40px;

}

.support-item{

    display:flex;

    align-items:center;

    gap:18px;

    padding:25px;

    border-radius:18px;

    background:white;

}

.support-icon{

    font-size:34px;

}

.support-item strong{

    display:block;

    margin-bottom:6px;

    color:#264d3b;

}

.support-item p{

    margin:0;

    color:#666;

}

@media(max-width:768px){

.support-card{

    padding:40px 25px;

}

.support-details{

    grid-template-columns:1fr;

}

}

/* ==================================================
   POLICY PAGES
   Privacy, Shipping, Returns and Terms
================================================== */

.policy-hero {
    padding: 90px 0 75px;
    background:
        linear-gradient(
            135deg,
            rgba(244, 239, 226, 0.96),
            rgba(223, 232, 218, 0.96)
        );
    text-align: center;
}

.policy-hero-content {
    max-width: 820px;
}

.policy-hero h1 {
    margin: 10px 0 20px;
    color: #173d2d;
    font-size: clamp(2.4rem, 6vw, 4.5rem);
    line-height: 1.08;
}

.policy-hero-intro {
    max-width: 720px;
    margin: 0 auto;
    color: #48584f;
    font-size: 1.08rem;
    line-height: 1.8;
}

.policy-updated {
    margin-top: 22px;
    color: #6c746f;
    font-size: 0.9rem;
}

.policy-section {
    background: #f8f7f2;
}

.policy-content {
    max-width: 920px;
    margin: 0 auto;
}

.policy-block {
    margin-bottom: 24px;
    padding: 30px 34px;
    background: #ffffff;
    border: 1px solid rgba(31, 81, 61, 0.12);
    border-radius: 16px;
    box-shadow: 0 12px 34px rgba(23, 61, 45, 0.06);
}

.policy-block:last-child {
    margin-bottom: 0;
}

.policy-block h2 {
    margin: 0 0 16px;
    color: #173d2d;
    font-size: clamp(1.35rem, 3vw, 1.75rem);
    line-height: 1.3;
}

.policy-block p {
    margin: 0 0 15px;
    color: #4c554f;
    line-height: 1.8;
}

.policy-block p:last-child {
    margin-bottom: 0;
}

.policy-block a {
    color: #1f6548;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.policy-block a:hover {
    color: #123d2b;
}

.policy-list {
    margin: 18px 0;
    padding-left: 24px;
    color: #4c554f;
}

.policy-list li {
    margin-bottom: 10px;
    padding-left: 5px;
    line-height: 1.7;
}

.policy-list li:last-child {
    margin-bottom: 0;
}

.policy-contact-block {
    background:
        linear-gradient(
            135deg,
            #173d2d,
            #245c43
        );
    border-color: transparent;
}

.policy-contact-block h2,
.policy-contact-block p,
.policy-contact-block .section-eyebrow,
.policy-contact-block address {
    color: #ffffff;
}

.policy-contact-block a {
    color: #f0d98b;
}

.policy-contact-block a:hover {
    color: #ffffff;
}

.policy-address {
    margin-top: 18px;
    font-style: normal;
    line-height: 1.8;
}

.policy-email {
    overflow-wrap: anywhere;
}


/* Policy-page mobile layout */

@media (max-width: 768px) {

    .policy-hero {
        padding: 65px 0 55px;
    }

    .policy-hero-intro {
        font-size: 1rem;
    }

    .policy-block {
        padding: 24px 20px;
        border-radius: 12px;
    }

    .policy-list {
        padding-left: 20px;
    }
}