@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&family=Strichpunkt+Sans:wght@400..900&display=swap');

:root {
    --green: #317111;
    --green-2: #67a91f;
    --green-dark: #25580b;
    --text: #123017;
    --muted: #586155;
    --glass: rgba(255, 255, 255, 0.68);
    --line: rgba(18, 48, 23, .08);
}

body {
    /* font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial; */
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: var(--text);
}

a {
    text-decoration: none;
}

.hero {
    min-height: 100vh;
    background: linear-gradient(to right, #f6f6f6 50%, transparent 65%), url(../images/hero-bg.png) no-repeat right top;
    background-size: 100%, contain;
    position: relative;

    color: var(--text);
    overflow: hidden;
    padding-bottom: 80px;
}

/* NAV */
.navbar-hero {
    padding: 10px 0;
    background: transparent;
}

.brand-mark {
    width: 44px;
    height: 44px;
    border-radius: 50% 50% 50% 0;
    transform: rotate(-28deg);
    background: linear-gradient(180deg, #ffd54a 0%, #ff9f1c 60%);
    display: inline-block;
    margin-right: 10px;
    vertical-align: middle;
}

.navbar-hero .navbar-nav .nav-link {
    color: #243026;
    font-weight: 600;
    position: relative;
    padding: 10px 15px;
}

.navbar-hero .nav-link.active {
    color: var(--green-2);
}

.navbar-hero .nav-link.active::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: calc(100% - 25px);
    height: 2px;
    background: var(--green-2);
    border-radius: 50px;
}



.navbar-hero .navbar-nav .nav-link:hover {
    color: var(--green-2);

    &::after {
        content: "";
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        bottom: 0;
        width: calc(100% - 25px);
        height: 2px;
        background: var(--green-2);
        border-radius: 50px;
    }
}

.contact-btn {
    background: linear-gradient(180deg, #55a318, #3f8a1a);
    color: #fff;
    border-radius: 10px;
    padding: 10px 18px;
    font-weight: 700;
    box-shadow: 0 8px 22px rgba(63, 138, 26, .18);
}

.contact-btn1 {
    background: transparent;
    border: 2px solid #f37835;
    color: #f37835;
    border-radius: 10px;
    padding: 10px 18px;
    font-weight: 700;
    box-shadow: 0 8px 22px rgba(63, 138, 26, .18);
}


.navbar-toggler {
    border: 0;
    padding: 8px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    width: 28px;
    height: 28px;
}

@media (max-width: 991.98px) {

    .navbar-hero {
        padding: 10px 0;
    }

    .navbar-hero .navbar-collapse {
        padding-top: 15px;
    }

    .navbar-hero .navbar-nav {
        gap: 0 !important;
    }

    .navbar-hero .navbar-nav .nav-link {
        padding: 12px 5px;
    }

    .navbar-hero .navbar-nav .nav-link.active::after,
    .navbar-hero .navbar-nav .nav-link:hover::after {
        display: none;
    }

}


/* MAIN HERO CONTENT */
.hero-inner {
    padding: 56px 0 24px;
}

.hero-row {
    align-items: center;
    min-height: calc(100vh - 220px);
}

.left-col {
    padding-top: 28px;
    padding-bottom: 28px;
    max-width: 720px;
}

.headline {
    font-size: clamp(28px, 5.6vw, 56px);
    line-height: 0.98;
    font-weight: 600;
    color: var(--green-dark);
    margin: 0 0 18px 0;
    letter-spacing: -1.6px;
}

.subline {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.subline .rule {
    color: var(--green);
    border-radius: 3px;
    display: inline-block;
}

.subline .leaf {
    color: var(--green-2);
    font-size: 18px
}

.hero-desc {
    color: var(--muted);
    font-size: 1.05rem;
    max-width: 520px;
    margin-bottom: 26px;
}

/* feature icons row */
.features {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 28px;
}

.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 10px 2px;
    min-width: 120px;
    color: #2c342d;
    position: relative;
}

.feature i {
    font-size: 38px;
    color: var(--green-2);
    margin-bottom: 8px;
}

.feature span {
    font-size: .72rem;
    font-weight: 400;
    color: #2f3a33;
    line-height: 1.3;
}

/* vertical separators between features (desktop) */
.feature.sep-right::after {
    content: "";
    position: absolute;
    right: -10px;
    top: 6px;
    bottom: 6px;
    width: 2px;
    background: #e0e3d8;
    border-radius: 1px;
}

/* CTA */
.cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    background: linear-gradient(180deg, #55a318, #3f8a1a);
    color: #fff;
    border-radius: 12px;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(63, 138, 26, .14);
    text-decoration: none;
}

.cta1 {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 22px;
    background: transparent;
    color: #55a318;
    border: 2px solid #55a318;
    border-radius: 12px;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(63, 138, 26, .14);
    text-decoration: none;
}

/* RIGHT VISUAL */
.visual-wrap {
    display: flex;
    justify-content: flex-end;
    position: relative;
}

.product-card {
    width: min(640px, 90%);
    transform: translateX(6%);
    text-align: right;
}

.product-card img {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 26px 38px rgba(22, 35, 18, .14));
}

/* TRUST STRIP */
.trust-strip {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 5px;
    width: min(1180px, 94%);
    background: var(--glass);
    backdrop-filter: blur(8px);
    border-radius: 14px;
    padding: 14px 18px;
    box-shadow: 0 12px 26px rgba(40, 60, 30, .08);
}

.bdr-right {
    border-right: 3px solid #d8e0d2;
}

.trust-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #203126;
    font-weight: 600;
    padding: 6px 12px;
}

.trust-item i {
    color: var(--green-2);
    font-size: 24px;
}

.trust-item span {
    font-size: .85rem;
}

.hero-main-img img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 12px;
}

/* small screens adjustments */
@media (max-width:991.98px) {
    .product-card {
        transform: none;
        margin-top: 18px;
    }

    .visual-wrap {
        justify-content: center;
    }

    .hero-row {
        min-height: auto;
        padding-bottom: 18px;
    }

    .features {
        gap: 12px;
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .feature {
        flex: 1 1 45%;
    }

    .feature.sep-right::after {
        display: none;
    }

    .trust-item {
        font-size: .82rem;
        flex-direction: column;
        gap: 6px;
        text-align: center;
    }
}

@media (max-width:768px) {
    .navbar-hero {
        background: #fff;
        box-shadow: 0 6px 15px rgba(63, 138, 26, .12);
    }

    .hero {
        padding-bottom: 135px;
        background: linear-gradient(to right, #f6f6f6 45%, transparent 70%);
    }

    .hero-inner {
        padding: 20px 0 18px;
    }

    .headline {
        font-size: 36px;
        line-height: 1.02;
    }

    .left-col {
        padding-top: 16px;
    }

    /* .navbar-hero .navbar-nav {
        display: none !important;
    } */

    .contact-btn {
        display: none;
    }

    .trust-strip {
        flex-direction: column;
        gap: 6px;
        position: static;
        padding: 0;
        transform: none;
        border-radius: 12px;
    }


}


/* about  */

.about-section {
    background: #f8fbf4;
}

.about-content .section-tag {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 999px;
    background: #e9f5dc;
    color: #4f8f18;
    font-weight: 700;
    font-size: .9rem;
    margin-bottom: 18px;
}

.about-content h2 {
    font-size: clamp(2rem, 3.5vw, 2.5rem);
    line-height: 1.15;
    font-weight: 600;
    color: var(--green-dark);
    margin-bottom: 20px;
}

.about-content p {
    color: #556155;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 12px;
}

.about-signature {
    display: inline-block;
    padding: 14px 18px;
    border-left: 4px solid #67a91f;
    background: #ffffff;
    border-radius: 10px;
    color: #223024;
    box-shadow: 0 10px 24px rgba(0, 0, 0, .06);
}

.about-image-wrap img {
    width: 100%;
    height: auto;
    aspect-ratio: 4/3;
    object-fit: cover;
}


/* product card  */

.pc-product-showcase {
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}

.pc-section-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(103, 161, 31, 0.10);
    color: var(--green);
    font-weight: 700;
    font-size: .92rem;
    letter-spacing: .02em;
    margin-bottom: 18px;
}

.pc-section-title {
    font-size: clamp(2rem, 2.6vw, 3.6rem);
    line-height: 1.02;
    font-weight: 900;
    margin-bottom: 14px;
    color: var(--text);
}

.pc-section-copy {
    color: var(--muted);
    font-size: 1.05rem;
    margin-bottom: 0;
    line-height: 1.7;
}

.pc-product-grid {
    margin-top: 42px;
}

.pc-product-card {
    position: relative;
    height: 100%;
    background: var(--glass);
    border: 1px solid rgba(18, 48, 23, .08);
    border-radius: 20px;
    padding: 15px;
    box-shadow: 0 18px 40px rgba(68, 104, 35, .10);
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.pc-product-glow {
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(132, 198, 76, .18) 0%, rgba(132, 198, 76, 0) 70%);
    top: -60px;
    right: -40px;
    pointer-events: none;
}

.pc-product-media {
    position: relative;
    border-radius: 20px;
    margin-bottom: 20px;
    overflow: hidden;
}

.pc-product-image {
    width: 100%;
    height: 100%;
    aspect-ratio: 4/3.2;

    object-fit: cover;
    display: block;
    mix-blend-mode: multiply;
}

.pc-product-title {
    font-size: 1.25rem;
    line-height: 1.24;
    font-weight: 700;
    margin-bottom: 12px;
    /* height: 50px; */
    color: var(--text);

}

.pc-product-copy {
    color: var(--muted);
    font-size: .96rem;
    line-height: 1.65;
    margin-bottom: 18px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.pc-product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-top: 10px;
    border-top: 1px solid rgba(18, 48, 23, .08);
}

.pc-product-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--green);
    font-weight: 800;
    text-decoration: none;
}

.pc-product-arrow {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(180deg, var(--green-2) 0%, var(--green) 100%);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 18px rgba(58, 110, 20, .22);
}

@media (max-width: 991.98px) {
    .pc-section-title {
        max-width: none;
    }

    .pc-product-copy,
    .pc-product-title {
        min-height: auto;
    }
}



/* about page  */

.hx-about-page {
    padding: 56px 0 80px;
}

/* ── IMAGE BOX ── */
.hx-image-box {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
}

.hx-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 28px;
    min-height: 460px;
}

.hx-image-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(255, 255, 255, .92);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 22px rgba(63, 138, 26, .14);
    backdrop-filter: blur(8px);
}

.hx-badge-icon {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: linear-gradient(180deg, var(--green-2), var(--green));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .95rem;
    flex: 0 0 auto;
}

.hx-image-badge strong {
    display: block;
    font-weight: 900;
    color: var(--text);
    font-size: .95rem;
}

.hx-image-badge span {
    color: var(--muted);
    font-size: .82rem;
}

/* ── CONTENT PANEL ── */
.hx-content-panel {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 28px;
    padding: 15px;
    box-shadow: 0 20px 40px rgba(63, 138, 26, .08);
    height: 100%;
}

.hx-section-tag {
    font-weight: 800;
    font-size: .88rem;
    color: var(--green);
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: block;
}

.hx-section-heading {
    font-weight: 900;
    font-size: 1.75rem;
    color: var(--text);
    margin-bottom: 6px;
    line-height: 1.2;
}

.hx-divider {
    width: 48px;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--green-2), var(--green));
    margin: 10px 0 15px;
}

.hx-content-panel h3 {
    font-size: 1.5rem;
    line-height: 1.3;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 12px;
}

.hx-content-panel h4 {
    font-size: 1.25rem;
    line-height: 1.28;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 10px;
}

.hx-content-panel h5 {
    font-size: 1.15rem;
    line-height: 1.1;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
}

.hx-para {
    color: var(--muted);
    line-height: 1.65;
    font-size: 0.95rem;
    margin-bottom: 7px;
}

.hx-content-panel ul li,
.hx-content-panel ol li {
    color: var(--muted);
    line-height: 1.65;
    font-size: 0.95rem;
    margin-bottom: 6px;
}

.hx-para:last-of-type {
    margin-bottom: 0;
}

/* ── QUOTE SECTION ── */
.hx-quote-section {
    margin-top: 40px;
}

.hx-quote-box {
    background: linear-gradient(140deg, #1a3d08 0%, #2d6612 40%, #3f8a1a 100%);
    border-radius: 28px;
    padding: 52px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hx-quote-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hx-quote-icon {
    font-size: 2.8rem;
    color: rgba(255, 255, 255, .2);
    margin-bottom: 16px;
    position: relative;
}

.hx-quote-text {
    font-weight: 700;
    font-size: clamp(1.15rem, 2vw, 1.45rem);
    color: #fff;
    line-height: 1.7;
    max-width: 680px;
    margin: 0 auto 22px;
    position: relative;
}

.hx-quote-text em {
    color: rgba(255, 255, 255, .75);
    font-style: normal;
}

.hx-quote-cta {
    background: rgba(255, 255, 255, .14);
    border: 1px solid rgba(255, 255, 255, .22);
    color: #fff;
    font-weight: 800;
    padding: 12px 28px;
    border-radius: 14px;
    text-decoration: none;
    display: inline-block;
    transition: .25s;
    position: relative;
}

.hx-quote-cta:hover {
    background: rgba(255, 255, 255, .24);
    color: #fff;
}

/* ── RESPONSIVE ── */
@media (max-width:991.98px) {
    .hx-image-box img {
        min-height: 340px;
    }

    .hx-quote-box {
        padding: 40px 28px;
    }
}

@media (max-width:767.98px) {
    .hx-about-page {
        padding: 36px 0 60px;
    }

    .hx-content-panel {
        padding: 0px;
        border: none;
        box-shadow: none;
    }

    .hx-content-panel h3 {
        font-size: 1.25rem;
        line-height: 1.3;
    }

    .hx-content-panel h4 {
        font-size: 1.1rem;
        line-height: 1.28;
    }

    .hx-content-panel h5 {
        font-size: 1rem;
        line-height: 1.1;
    }

    .hx-quote-box {
        padding: 32px 22px;
    }
}




/* footer */


.hr-footer {
    background: linear-gradient(180deg, #f8fbf4 0%, #edf4e2 100%);
    color: var(--text);
    border-top: 1px solid rgba(18, 48, 23, .08);
}

.footer-logo-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo-wrap img {
    width: 140px;
    height: auto;

    object-fit: contain;
}

.footer-title {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 18px;
    color: var(--text);
}

.footer-text,
.footer-links a,
.footer-contact li {
    color: var(--text);
    line-height: 1.7;
    font-size: .97rem;
}

.footer-bottom p {
    color: var(--text);
    line-height: 1.7;
    font-size: .87rem;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a,
.footer-contact a,
.footer-bottom-links a {
    text-decoration: none;
    transition: .25s ease;
    color: var(--text);
}

.footer-links a:hover,
.footer-contact a:hover,
.footer-bottom-links a:hover {
    color: var(--green);
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
}

.footer-contact i {
    color: var(--green);
    margin-top: 4px;
}

.footer-social {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(103, 161, 31, 0.12);
    color: var(--green);
    text-decoration: none;
    transition: .25s ease;
}

.footer-social a:hover {
    background: var(--green);
    color: #fff;
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(18, 48, 23, .08);
}

.footer-bottom-links {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}



/* product page */

.pr-product-page {
    padding: 26px 0 70px;
}

.pr-product-wrap {
    background: rgba(255, 255, 255, .80);
    border: 1px solid rgba(18, 48, 23, .08);
    border-radius: 26px;
    box-shadow: 0 18px 36px rgba(68, 104, 35, .10);
    overflow: hidden;
}

.pr-media-box {
    background: linear-gradient(180deg, #f8fbf2 0%, #edf6e4 100%);
    padding: 28px;
    height: 100%;
}

.pr-main-image-box {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    padding: 12px;
    border: 1px solid rgba(18, 48, 23, .08);
}

.pr-main-image {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    display: block;
    object-fit: contain;
    border-radius: 14px;
}

.pr-thumb-row {
    margin-top: 12px;
}

.pr-thumb-img {
    width: 100%;
    cursor: pointer;
    aspect-ratio: 1 / 1;
    border-radius: 14px;
    border: 2px solid transparent;
    transition: .2s ease;
}

.pr-thumb-img:hover,
.pr-thumb-img.active-thumb {
    border-color: var(--green);
    box-shadow: 0 0 0 .15rem rgba(103, 161, 31, .14);
    transform: translateY(-2px);
}

.pr-content-box {
    padding: 28px;
}

.pr-brand-line {
    color: var(--green);
    font-weight: 800;
    margin-bottom: 10px;
}

.pr-title {
    font-size: clamp(1.25rem, 1.8vw, 2rem);
    line-height: 1.12;
    font-weight: 900;
    color: var(--text);
    margin-bottom: 12px;
}

.pr-price-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 12px;
    margin-bottom: 18px;
}

.pr-discount {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 5px 10px;
    border-radius: 999px;
    background: rgba(103, 161, 31, .12);
    color: var(--green);
    font-weight: 800;
    font-size: .75rem;
}

.pr-price {
    font-size: 1.9rem;
    font-weight: 900;
    color: var(--text);
}

.pr-old-price {
    color: var(--text);
    font-size: 1.75rem;
    text-decoration: line-through;
    font-weight: 600;
}

.pr-per-count {
    color: var(--muted);
    font-weight: 600;
}

.pr-feature-item {
    background: rgba(255, 255, 255, .70);
    border: 1px solid rgba(18, 48, 23, .08);
    border-radius: 18px;
    padding: 14px;
    display: flex;
    gap: 12px;
    height: 100%;
    align-items: flex-start;
}

.pr-feature-icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: rgba(103, 161, 31, .12);
    color: var(--green);
    font-size: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.pr-feature-item h6 {
    margin: 0;
    font-size: .95rem;
    font-weight: 800;
    color: var(--text);
    line-height: 1.2;
}

.pr-feature-item p {
    margin: 4px 0 0;
    font-size: .88rem;
    color: var(--muted);
    line-height: 1.5;
}

.pr-qty-label {
    font-weight: 800;
    color: var(--text);
    margin-bottom: 8px;
    display: block;
}

.pr-qty-group {
    max-width: 180px;
    margin-bottom: 18px;
}

.pr-qty-btn {
    border: 1px solid rgba(18, 48, 23, .14) !important;
    background: #fff;
    color: var(--green);
    font-weight: 800;
    min-width: 48px;
}

.pr-qty-input {
    text-align: center;
    font-weight: 800;
    color: var(--text);
    border-color: rgba(18, 48, 23, .14) !important;
    box-shadow: none;
}

.pr-qty-group .form-control {
    text-align: center;
    font-weight: 800;
    color: var(--text);
    border-color: rgba(18, 48, 23, .14) !important;
    box-shadow: none;
}

.pr-qty-group .form-control:focus {
    border-color: var(--green-2) !important;
    box-shadow: 0 0 0 .2rem rgba(103, 161, 31, .12);
}

.pr-action-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.pr-btn-primary-hr {
    background: linear-gradient(180deg, var(--green-2) 0%, var(--green) 100%);
    border: none;
    color: #fff !important;
    font-weight: 800;
    padding: 13px 22px;
    border-radius: 14px;
}

.pr-btn-outline-hr {
    border: 1px solid rgba(18, 48, 23, .14) !important;
    color: var(--text) !important;
    font-weight: 800;
    padding: 13px 22px;
    border-radius: 14px;
    background: #fff;
}

.pr-section-card {
    background: rgba(255, 255, 255, .76);
    border: 1px solid rgba(18, 48, 23, .08);
    border-radius: 22px;
    padding: 22px;
    box-shadow: 0 16px 34px rgba(68, 104, 35, .08);
    margin-top: 22px;
}

.pr-section-card h5 {
    font-weight: 900;
    color: var(--text);
    margin-bottom: 14px;
    font-size: 1.12rem;
}

.pr-section-card li,
.pr-details-table td,
.pr-details-table th {
    color: var(--text);
    line-height: 1.7;
    font-size: 1rem;
    margin-bottom: 10px;
}

.pr-details-table th {
    width: 38%;
    color: var(--text);
    font-weight: 700;
    background: rgba(103, 161, 31, .06) !important;
}

@media (max-width: 991.98px) {
    .pr-feature-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575.98px) {

    .pr-content-box,
    .pr-media-box {
        padding: 15px 12px;
    }

    .pr-price {
        font-size: 1.65rem;
    }

    .pr-qty-group {
        max-width: 100%;
    }

    .pr-section-card {
        padding: 20px 12px;
    }

    .pr-details-table td,
    .pr-details-table th {
        font-size: .9rem;
    }
}





/* breadcrumb */

.mc-page-hero {
    background: var(--green);
    padding: 48px 0 44px;
    position: relative;
    overflow: hidden;
}

.mc-page-hero::before {
    content: '';
    position: absolute;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    top: -120px;
    right: -80px;
}

.mc-page-hero::after {
    content: '';
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    bottom: -80px;
    left: 60px;
}

.mc-hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background-color: rgba(255, 255, 255, 0.12);
    color: #e8f0ea;
    border-radius: 50px;
    padding: 5px 16px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin-bottom: 14px;
    backdrop-filter: blur(4px);
}

.mc-page-hero h1 {
    font-size: 2.2rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 16px;
    line-height: 1.25;
}

.mc-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
}

.mc-breadcrumb li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
}

.mc-breadcrumb li a {
    color: rgba(255, 255, 255, 0.888);
    text-decoration: none;
    transition: color 0.2s;
}

.mc-breadcrumb li a:hover {
    color: #ffffff;
}

.mc-breadcrumb li.active {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

.mc-breadcrumb li i {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.888);
}



@media (max-width: 575.98px) {
    .mc-page-hero {
        padding: 32px 0 28px;
        background: linear-gradient(135deg, var(--green) 0%, var(--green-2) 100%), url('../images/product/herbal-medicine-for-migraine-india-migoherb.jpeg') no-repeat center
    }

    .mc-hero-tag {
        padding: 4px 12px;
        font-size: 10px;
    }

    .mc-page-hero h1 {
        font-size: 1.25rem;
    }

    .mc-breadcrumb li {
        font-size: 14px;
    }
}


/* contact us  */
.hr-contact-page {
    padding: 60px 0;
}

/* ── FORM PANEL ── */
.hr-form-panel {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 28px;
    box-shadow: 0 24px 48px rgba(63, 138, 26, .10);
    overflow: hidden;
}

.hr-form-panel-header {
    padding: 22px 28px;
    background: linear-gradient(90deg, rgba(103, 161, 31, .09) 0%, rgba(255, 255, 255, .5) 100%);
    border-bottom: 1px solid var(--line);
    display: flex;
    align-items: center;
    gap: 14px;
}

.hr-form-panel-header .hr-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: linear-gradient(180deg, var(--green-2), var(--green));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex: 0 0 auto;
}

.hr-form-panel-header h2 {
    font-weight: 700;
    font-size: 1.25rem;
    margin: 0;
    color: var(--text);
}

.hr-form-panel-header p {
    color: var(--muted);
    margin: 2px 0 0;
    font-size: .9rem;
}

.hr-form-body {
    padding: 28px;
}

.hr-form-body .form-floating>.form-control {
    border-radius: 14px;
    border: 1px solid rgba(18, 48, 23, .14);
    height: calc(3.5rem + 2px);
    padding: 1rem .9rem;
    font-family: 'Satoshi', sans-serif;
    font-weight: 600;
    color: var(--text);
}

.hr-form-body .form-floating>textarea.form-control {
    height: 140px;
    /* padding-top: 1.625rem; */
    resize: vertical;
}

.hr-form-body .form-floating>.form-control:focus {
    border-color: var(--green-2);
    box-shadow: 0 0 0 .22rem rgba(103, 161, 31, .13);
}

.hr-form-body .form-floating>label {
    color: var(--green-2);
    font-weight: 500;
    background: #fff;
    top: 7px;
    left: 7px;
    height: 40px;
    padding: .5rem;
    transform: translateY(-1.25rem) scale(0.75) !important;
}

.hr-form-body .form-floating>.form-control:focus~label {
    transform: translateY(-1.25rem) scale(0.75);
}

.hr-btn-send {
    background: linear-gradient(160deg, var(--green-2) 0%, var(--green) 100%);
    border: none;
    color: #fff;
    font-weight: 700;
    padding: 14px 24px;
    border-radius: 16px;
    font-size: 1.02rem;
    box-shadow: 0 12px 24px rgba(63, 138, 26, .20);
    transition: transform .2s, box-shadow .2s;
    width: 100%;
}

.hr-btn-send:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 32px rgba(63, 138, 26, .28);
    color: #fff;
}

/* ── INFO PANEL ── */
.hr-info-panel {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.hr-info-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 20px 22px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    box-shadow: 0 8px 20px rgba(63, 138, 26, .06);
    transition: .25s ease;
}

.hr-info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 34px rgba(63, 138, 26, .12);
    border-color: rgba(103, 161, 31, .20);
}

.hr-info-icon {
    width: 48px;
    height: 48px;
    flex: 0 0 auto;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
}

.hr-info-icon.hr-green {
    background: rgba(103, 161, 31, .12);
    color: var(--green);
}

.hr-info-icon.hr-amber {
    background: rgba(255, 178, 0, .12);
    color: #c87900;
}

.hr-info-icon.hr-blue {
    background: rgba(30, 130, 255, .10);
    color: #1e82ff;
}

.hr-info-card h6 {
    font-weight: 700;
    color: var(--text);
    margin: 0 0 4px;
    font-size: 1.25rem;
}

.hr-info-card p,
.hr-info-card a {
    margin: 0;
    color: var(--muted);
    font-size: .95rem;
    text-decoration: none;
    line-height: 1.6;
    transition: .2s;
}

.hr-info-card a:hover {
    color: var(--green);
}

/* ── SOCIAL ── */
.hr-social-row {
    display: flex;
    gap: 10px;
    margin-top: 8px;
}

.hr-social-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
    background: #fff;
    color: var(--green);
    text-decoration: none;
    font-size: 1.05rem;
    transition: .25s;
}

.hr-social-btn:hover {
    background: var(--green);
    color: #fff !important;

    border-color: var(--green);
    transform: translateY(-2px);
}

/* ── MAP ── */
.hr-map-box {
    border-radius: 22px;
    border: 1px solid rgba(103, 161, 31, .14);
    min-height: 190px;
    box-shadow: 0 8px 20px rgba(63, 138, 26, .06);
}

/* ── RESPONSIVE ── */
@media (max-width:767.98px) {
    .hr-contact-page {
        padding: 36px 0 60px;
    }

    .hr-form-body {
        padding: 20px;
    }

    .hr-form-panel-header {
        padding: 18px 20px;
    }
}


/* cart  */

.cart-page {
    padding: 70px 0 70px;
}

.cart-card,
.summary-card {
    background: rgba(255, 255, 255, .85);
    border: 1px solid var(--line);
    border-radius: 28px;
    box-shadow: 0 18px 36px rgba(68, 104, 35, .08);
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.cart-head {
    padding: 16px 22px;
    border-bottom: 1px solid var(--line);
    background: var(--green-2);
    font-weight: 800;
    color: var(--text);
}

.cart-item {
    padding: 20px 22px;
    border-bottom: 1px solid var(--line);
}

.cart-item:last-child {
    border-bottom: none;
}


.product-name {
    font-weight: 900;
    color: var(--text);
    margin-bottom: 6px;
    line-height: 1.25;
    font-size: 1.02rem;
}

.product-meta {
    color: var(--muted);
    font-size: .95rem;
    line-height: 1.5;
}

.price {
    font-weight: 900;
    color: var(--text);
    font-size: 1.1rem;
}

.old-price {
    color: #8b9688;
    text-decoration: line-through;
    font-size: .92rem;
    display: block;
    margin-top: 2px;
}

.qty-group {
    max-width: 150px;
    margin-inline: auto;
}

.qty-group .qty-btn {
    border: 1px solid rgba(18, 48, 23, .14);
    background: #fff;
    color: var(--green);
    font-weight: 900;
    min-width: 44px;
}

.qty-group .form-control {
    text-align: center;
    font-weight: 900;
    color: var(--text);
    border-color: rgba(18, 48, 23, .14);
    box-shadow: none;
    min-width: 48px;
    background: #fff;
}

.qty-group .form-control:focus {
    border-color: var(--green-2);
    box-shadow: 0 0 0 .2rem rgba(103, 161, 31, .12);
}

.remove-btn {
    border-radius: 12px;
    font-weight: 800;
    background: #fff;
    border: 1px solid rgba(220, 53, 69, .18);
    color: #dc3545;
    padding: 10px 14px;
}

.remove-btn:hover {
    background: #dc3545;
    color: #fff;
}

.summary-card {
    position: sticky;
    top: 18px;
}

.summary-header {
    padding: 20px 22px;
    background: linear-gradient(180deg, rgba(103, 161, 31, .10) 0%, rgba(255, 255, 255, .70) 100%);
    border-bottom: 1px solid var(--line);
}

.summary-title {
    font-weight: 900;
    font-size: 1.3rem;
    margin: 0;
    color: var(--text);
}

.summary-body {
    padding: 22px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--muted);
    font-weight: 600;
}

.summary-row.total {
    font-size: 1.1rem;
    color: var(--text);
    font-weight: 900;
    border-top: 1px solid var(--line);
    padding-top: 14px;
    margin-top: 14px;
}


.btn-primary-hr {
    background: linear-gradient(180deg, var(--green-2) 0%, var(--green) 100%);
    border: none;
    color: #fff;
    font-weight: 800;
    padding: 13px 20px;
    border-radius: 14px;
    box-shadow: 0 10px 18px rgba(63, 138, 26, .16);
}

.btn-outline-hr {
    border: 1px solid rgba(18, 48, 23, .14);
    color: var(--text);
    font-weight: 800;
    padding: 13px 20px;
    border-radius: 14px;
    background: #fff;
}

.continue-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--green);
    font-weight: 800;
    margin-top: 16px;
}

@media (max-width: 991.98px) {
    .summary-card {
        position: relative;
        top: auto;
    }
}

@media (max-width: 767.98px) {
    .cart-head {
        display: none;
    }

    .cart-item {
        padding: 16px;
    }

    .product-thumb {
        width: 76px;
        height: 76px;
    }

    .qty-group {
        max-width: 100%;
    }
}




/* faq */


.mh-faq-wrapper {
    max-width: 850px;
    margin: 60px auto;
    padding: 0 20px;
}

.mh-faq-header {
    text-align: center;
    margin-bottom: 36px;
}

.mh-faq-header .mh-faq-badge {
    display: inline-block;
    padding: 6px 18px;
    background: var(--glass);
    border: 1px solid var(--line);
    color: var(--green-dark);
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    font-size: .75rem;
    border-radius: 50px;
    backdrop-filter: blur(6px);
    margin-bottom: 14px;
}

.mh-faq-header h2 {
    font-weight: 700;
    color: var(--text);
}

.mh-faq-header p {
    color: var(--muted);
    max-width: 560px;
    margin: 8px auto 0;
}

.mh-accordion {
    background: var(--glass);
    border: 1px solid var(--line);
    border-radius: 18px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(18, 48, 23, .08);
}

.mh-accordion-item {
    border: none;
    border-bottom: 1px solid var(--line);
    background: transparent;
}

.mh-accordion-item:last-child {
    border-bottom: none;
}

.mh-accordion-header {
    margin: 0;
}

.mh-accordion-button {
    width: 100%;
    text-align: left;
    background: transparent;
    border: none;
    padding: 20px 24px;
    font-weight: 600;
    font-size: 1rem;
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    cursor: pointer;
    transition: background .25s ease, color .25s ease;
}

.mh-accordion-button:hover {
    background: rgba(103, 169, 31, 0.08);
}

.mh-accordion-button:not(.collapsed) {
    background: linear-gradient(90deg, var(--green), var(--green-2));
    color: #fff;
}

.mh-accordion-button .mh-q-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--green-dark);
    color: #fff;
    font-size: .8rem;
    font-weight: 700;
    margin-right: 12px;
    flex-shrink: 0;
}

.mh-accordion-button:not(.collapsed) .mh-q-num {
    background: rgba(255, 255, 255, 0.25);
}

.mh-accordion-button::after {
    content: "";
    flex-shrink: 0;
    width: 12px;
    height: 12px;
    border-right: 2px solid var(--green-dark);
    border-bottom: 2px solid var(--green-dark);
    transform: rotate(45deg);
    transition: transform .3s ease, border-color .3s ease;
}

.mh-accordion-button:not(.collapsed)::after {
    border-color: #fff;
    transform: rotate(-135deg);
}

.mh-accordion-body {
    padding: 4px 24px 22px 62px;
    color: var(--muted);
    line-height: 1.65;
    font-size: .95rem;
}

.mh-accordion-collapse {
    transition: height .3s ease;
}