/***************************************Index Page Style Start***************************************/

@font-face {
    font-family: 'inter';
    src: url('/static/vendor/googleFonts/Inter_18pt-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

body {
    font-family: 'inter';
    color: #000000 !important;
    background-color: white !important;
    text-transform: capitalize;
}

.capitalize {
    text-transform: capitalize;
}

.appNavBar {
    background: #fff;
    padding: 16px 32px;
}

/* top row */
.navTop {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

/* logo */
.navLogo img {
    width: 120px;
}

/* center column */
.navCenter {
    flex: 1;
    max-width: 50%;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

/* search */
.navSearch {
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
}

/* input */
.navSearch input {
    width: 100%;
    padding: 12px 20px;
    border-radius: 30px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    font-size: 14px;
    outline: none;

}

/* search button */
.searchBtn {
    position: absolute;
    right: 0px;
    height: calc(100% - 2px);
    width: 60px;
    border: none;
    border-radius: 0 50px 50px 00;
    background: #21452C;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.25s ease;
}

.searchBtn:hover {
    background: #1a3824;
}

.searchBtn i {
    font-size: 14px;
}


/* cart */
.navCart i {
    font-size: 22px;
    color: #21452C;
    cursor: pointer;
}

/* menu */
.navMenu {
    display: flex;
    /* gap: 60px; */
    justify-content: space-between;
    list-style: none;
    padding: 0;
    margin: 0;
    width: inherit;
}

.navMenu a {
    text-decoration: none;
    color: #222;
    font-weight: 500;
    text-transform: capitalize;
    padding: 6px 14px;
    border-radius: 999px;
    transition:
        background 0.25s ease,
        color 0.25s ease;
}

.navMenu a:hover {
    background: #21452C;
    color: #ffffff;
}

.navMenu a.active {
    background: #21452C;
    color: #ffffff;
}


.navSearchPhone {
    display: none;
}


@media(max-width:768px) {
    .navSearchDesktop {
        display: none;
    }

    .navSearchPhone {
        display: block;
    }

    .navSearchPhone {
        background: #c7f3d451;
        padding: 13px;
        border-radius: 50px;
        cursor: pointer;
    }

}

/* hide mobile menu btn desktop */
.menuToggle {
    display: none;
    background: none;
    border: none;
    font-size: 22px;
}

.navCart {
    gap: 24px;
    display: flex;
}

/* mobile */
@media (max-width: 768px) {

    .navMenu {
        display: none;
    }

    .menuToggle {
        display: block;
    }

    .navCenter {
        flex: 0;
    }

    .navTop {
        gap: 14px;
    }

}

@media (max-width: 458px) {


    .navTop {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 4px;
    }

    .navLogo img {
        width: 60px;
    }

    .appNavBar {
        background: #fff;
        padding: 16px 8px;
    }

    .navCart {
        gap: 14px;
        display: flex;
    }

}


/* offcanvas menu */
.mobileMenuList li {
    padding: 14px 0;
    transition: background 0.25s ease;
    list-style-type: none !important;

}

.btn-close {
    box-shadow: none !important;
}

.mobileMenuList {
    list-style-type: none !important;

}

.mobileMenuList a {
    display: block;
    padding: 10px 14px;
    text-decoration: none;
    font-size: 18px;
    color: #222;
    text-transform: capitalize;
    border-radius: 8px;
    transition:
        background 0.25s ease,
        color 0.25s ease,
        transform 0.2s ease;
}

/* hover effect */
.mobileMenuList a:hover {
    background: #a2f6b188;
    color: #0ca74a;
    transform: translateX(6px);
}

/* active / tap feel (mobile) */
.mobileMenuList a:active {
    background: #a2f6b188;
    transform: scale(0.97);
}


main {
    padding-top: 130px;
}

.indexHero {
    height: 38svw;
}

/* Hero section (indexpage) style */

.cartCanvas {
    --bs-offcanvas-width: 540px;
    background: #eaffea;
}

.cartItem {
    display: flex;
    gap: 12px;
    align-items: center;
}

.cartImg {
    width: 130px;
    border-radius: 8px;
}

.cartDetails h6 {
    margin: 0 0 8px;
    font-size: 17px !important;
}

.qtyPriceRow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

/* Quantity Box */
.qtyBox {
    display: flex;
    align-items: center;
    border: 1px solid #bbb;
    border-radius: 999px;
    overflow: hidden;
    flex-shrink: 0;
}

.qtyBox button {
    border: none;
    background: none;
    padding: 4px 10px;
    font-size: 14px;
}

.qtyInput {
    width: 40px;
    text-align: center;
    border: none;
    background: transparent !important;
    outline: none;
    font-weight: 600;
}

@media (max-width: 576px) {

    .qtyPriceRow {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

    .qtyBox {
        border-radius: 20px;
    }

    .qtyBox button {
        padding: 6px 12px;
        font-size: 16px;
    }

    .qtyInput {
        width: 36px;
        font-size: 14px;
    }

    .price {
        font-size: 14px;
        font-weight: 600;
    }

    .cartImg {
        width: 70px;
        border-radius: 8px;
    }

}


.price {
    font-weight: 600;
}

.cartFooter {
    border-top: 1px solid #ddd;
    padding: 12px;
}

.subtotalRow {
    display: flex;
    justify-content: space-between;
    font-weight: 600;
}



.heroFadeChangeImg {
    width: 100%;
    position: relative;
}

/* all images stacked */
.heroFadeChangeImg img {
    position: absolute;
    width: 100%;
    object-fit: cover;
    opacity: 0;
    animation: fadeSlide 21s infinite;
}


/* stagger animation */
.heroFadeChangeImg img:nth-child(1) {
    animation-delay: 0s;
}

.heroFadeChangeImg img:nth-child(2) {
    animation-delay: 3s;
}

.heroFadeChangeImg img:nth-child(3) {
    animation-delay: 6s;
}

.heroFadeChangeImg img:nth-child(4) {
    animation-delay: 9s;
}

.heroFadeChangeImg img:nth-child(5) {
    animation-delay: 12s;
}

.heroFadeChangeImg img:nth-child(6) {
    animation-delay: 15s;
}

.heroFadeChangeImg img:nth-child(7) {
    animation-delay: 18s;
}

/* fade animation */
@keyframes fadeSlide {
    0% {
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    30% {
        opacity: 1;
    }

    40% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

.indexProductSwiper {
    padding: 0 clamp(0.75rem, 3vw, 2rem);
}

.swiper-slide {
    height: auto;
}

/* pagination spacing */
.swiper-pagination {
    margin-top: 20px;
    position: static;
}


.vgProductCard {
    background: transparent;
    border-radius: 12px;
    padding: 16px;
    text-align: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.vgProductCard:hover {
    transform: translateY(-6px);
}

.vgPrImg img {
    max-height: 100%;
    object-fit: contain;
}

.ogPrice {
    text-decoration: line-through;
    color: #999;
    margin-right: 8px;
}

.discPrice {
    color: #21452C;
    font-weight: 600;
}

.trustSectionBLock {
    display: flex;
    gap: clamp(12px, 3vw, 32px);
    padding: clamp(16px, 4vw, 32px);
    background-color: #3D5918;
    margin-top: 20px;

}

.trustSectionBLock .trustItem {
    flex: 1;
    text-align: center;
    color: #fff;
    padding: 20px 16px;
    border-radius: 12px;
    transition:
        transform 0.3s ease,
        background-color 0.3s ease,
        box-shadow 0.3s ease;
}

.trustSectionBLock .trustItem img {
    max-width: 78px;
    margin-bottom: 10px;
}

.trustSectionBLock .trustItem h6 {
    margin-bottom: 4px;
    font-weight: 600;
}

.trustSectionBLock .trustItem p {
    margin: 0;
    font-size: 14px;
    opacity: 0.9;
}

/* hover feel */
.trustSectionBLock .trustItem:hover {
    transform: translateY(-6px);
    background-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.trustSectionBLock .trustBenefits {
    flex: 0.8;
    color: #fff;
    padding: 24px 20px;
    border-radius: 12px;
    background-color: rgba(255, 255, 255, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    align-self: center;
}

.trustSectionBLock .trustBenefits:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

@media (max-width: 768px) {
    .trustSectionBLock {
        flex-direction: column;
    }
}

.prVisionAndMissionContainer {
    display: flex;
    align-items: center;
    gap: clamp(20px, 5vw, 64px);
    padding: clamp(24px, 6vw, 72px) clamp(16px, 4vw, 64px);
}

.imgVisionMision {
    position: relative;
    width: 90%;
    max-width: 400px;
    margin: auto;
    height: 650px;
}

@media(max-width:390px) {
    .imgVisionMision {
        height: 500px;
    }
}


@media(max-width:368px) {
    .imgVisionMision {
        height: 400px;
    }
}

.imgVisionMision img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    animation: fadeSequence 21s infinite;
}

/* Stagger delay for each image */
.imgVisionMision img:nth-child(1) {
    animation-delay: 0s;
}

.imgVisionMision img:nth-child(2) {
    animation-delay: 3s;
}

.imgVisionMision img:nth-child(3) {
    animation-delay: 6s;
}

.imgVisionMision img:nth-child(4) {
    animation-delay: 9s;
}

.imgVisionMision img:nth-child(5) {
    animation-delay: 12s;
}

.imgVisionMision img:nth-child(6) {
    animation-delay: 15s;
}

.imgVisionMision img:nth-child(7) {
    animation-delay: 18s;
}

@keyframes fadeSequence {
    0% {
        opacity: 0;
    }

    5% {
        opacity: 1;
    }

    20% {
        opacity: 1;
    }

    25% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}



/* content block */
.contentVisionMission {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    gap: 34px;
}

.contentVisionMission h5 {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    color: #3D5918;
    text-decoration: underline;
}

.contentVisionMission p {
    margin: 0;
    line-height: 1.7;
    font-size: clamp(0.85rem, 2.5vw, 1rem) !important;
}

@media (max-width: 768px) {
    .prVisionAndMissionContainer {
        flex-direction: column;
        text-align: center;
    }

    .contentVisionMission>div {
        padding-left: 0;
        border-left: none;
        border-top: 3px solid #3D5918;
        padding-top: 12px;
    }
}

/* hover feel for each content block */
.contentVisionMission>div {
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        background-color 0.3s ease;
    padding: 12px 16px;
    border-radius: 12px;
}

/* hover effect */
.contentVisionMission>div:hover {
    transform: translateY(-6px);
    background-color: rgba(61, 89, 24, 0.06);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.ratingSwiperContainer {
    padding: clamp(24px, 5vw, 64px) clamp(16px, 4vw, 48px);
}

.ratingSlide {
    background: #fff;
    border-radius: 16px;
    padding: clamp(20px, 4vw, 32px);
    text-align: center;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ratingSlide:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
}

.ratingStars {
    font-size: 28px;
    cursor: pointer;
}

.ratingStars i {
    color: #d4af37 !important;
    /* gold */
    margin: 0 4px;
    transition: transform 0.15s ease;
}

.ratingStars i:hover {
    transform: scale(1.1);
}


.ratingSlide p {
    font-size: clamp(1rem, 2.5vw, 1.15rem);
    line-height: 1.7;
    margin-bottom: 20px;
    color: #444;
}

.ratingUser {
    display: inline-flex;
    align-items: center;
    color: #fff;
    overflow: hidden;
    padding-right: 14px;
}

/* image */
.ratingUser img {
    width: 78px;
    height: 78px;
    object-fit: cover;
    border-radius: 50%;
    margin-right: 10px;
    z-index: 1;
}

/* name */
.ratingUser span {
    font-weight: 600;
    font-size: 14px;
    white-space: nowrap;
    background-color: #21452C;
    border-radius: 0 999px 999px 0;
    padding: 3px 14px 3px 23px;
    margin-left: -24px;
    z-index: 0;

}


.footerContainer {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: clamp(24px, 4vw, 30px);
    padding: clamp(32px, 6vw, 72px) clamp(16px, 5vw, 64px);
    color: #000000;
}

.footerContainer h5,
.footerContainer h6 {
    margin-bottom: 16px;
    font-size: clamp(1.15rem, 2.5vw, 1.65rem) !important;
    color: #3D5918;

}

.footerDesc {
    margin: 16px 0 24px;
    line-height: 1.7;
    font-size: clamp(0.95rem, 2.5vw, 1.1rem) !important;
    opacity: 0.9;
}

.footerContainer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footerContainer li {
    margin-bottom: 12px;
    font-size: clamp(0.95rem, 2.5vw, 1.05rem) !important;
    transition:
        transform 0.25s ease,
        padding-left 0.25s ease,
        background-color 0.25s ease;
}

/* hover the whole row */
.footerContainer li:hover {
    transform: translateX(4px);
    padding-left: 6px;
    background-color: rgba(33, 69, 44, 0.06);
    border-radius: 6px;
}


.footerContainer a {
    color: #000000;
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.25s ease;
}

.footerContainer a:hover {
    opacity: 1;
}

.socialIcons {
    display: flex;
    gap: 12px;
}

.socialIcons a {
    width: 40px;
    height: 40px;
    background: #000000;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.25s ease, background 0.25s ease;
}

.socialIcons a:hover {
    transform: translateY(-4px);
    background: #252323;
}

.footerContact li {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.footerContact i {
    width: 36px;
    height: 36px;
    background: #3D5918;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(0.9rem, 2vw, 1rem) !important;
}


@media (max-width: 768px) {
    .footerBrand {
        text-align: center;
    }

    .socialIcons {
        justify-content: center;
    }

    .footerContainer .fdiv {
        padding-left: 20px;
    }

}

.footerCopyright {
    text-align: center;
    padding: clamp(14px, 3vw, 22px);
    font-size: clamp(0.15rem, 1.5vw, 1rem) !important;
}

.footerCopyright .heart {
    display: inline-block;
    margin: 0 4px;
}

.mcubeLink {
    cursor: pointer;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition:
        color 0.25s ease,
        text-shadow 0.25s ease;
}

.mcubeLink:hover {
    color: #eaffea;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
}



/* =========================================== Shop Page Styles ========================================================== */

.gridWraapperOfAllProducts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(20px, 4vw, 48px);
    padding: clamp(24px, 6vw, 96px);

}

/* tablet */
@media (max-width: 992px) {
    .gridWraapperOfAllProducts {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* mobile */
@media (max-width: 576px) {
    .gridWraapperOfAllProducts {
        grid-template-columns: 1fr;
    }
}

/* =========================================== contact us Page Styles ========================================================== */

.getInTouchSecContainer {
    display: flex;
    gap: clamp(24px, 4vw, 64px);
    padding: clamp(32px, 6vw, 80px);
    background-color: #EAFFEA;
    flex-wrap: wrap;
    align-items: center;
}

/* left content */
.getInTouchContent {
    flex: 1;
    max-width: 480px;
    color: #3D5918;
}

.getInTouchContent h2 {
    margin-bottom: 16px;
    font-weight: bold;
}

.getInTouchContent p {
    font-size: clamp(1rem, 2.5vw, 1.15rem) !important;
    line-height: 1.7;
}

/* base */
.getInTouchForm {
    flex: 1.2;
    width: 100%;
}

.getInTouchForm .formRow {
    display: flex;
    gap: clamp(12px, 2vw, 20px);
    margin-bottom: 16px;
}

/* two column row */
.getInTouchForm .formRow.twoCol>* {
    flex: 1;
}

/* inputs */
.getInTouchForm .form-control {
    width: 100%;
    padding: 12px 16px;
    font-size: clamp(0.95rem, 2.5vw, 1.05rem) !important;
    border-radius: 8px;
    border: 1px solid #1b7b10;
    background-color: transparent !important;
}

/* button */
.getInTouchForm button {
    padding: 12px 0;
    font-size: clamp(1rem, 2.5vw, 1.15rem) !important;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.getInTouchForm button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}


/* responsive: stack content on mobile */
@media (max-width: 768px) {
    .getInTouchSecContainer {
        flex-direction: column;
    }

    .getInTouchForm .formRow {
        flex-direction: column;
    }
}


.contactUsWeAreHelpSecContainer {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
    gap: clamp(24px, 5vw, 64px);
    padding: clamp(32px, 6vw, 80px);
}

/* LEFT CONTENT */
.contactContent h1 {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 800;
    color: #1f3d2b;
}

.contactContent .subtitle {
    margin-top: 12px;
    font-size: clamp(0.95rem, 2vw, 1.15rem);
    color: #3e5c4a;
    max-width: 420px;
}

.contactContent .divider {
    width: 100%;
    height: 1px;
    background: #cfd8d1;
    margin: clamp(20px, 4vw, 32px) 0;
}

/* CONTACT INFO WITH ICONS */
.contactInfo {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(16px, 4vw, 32px);
}

.infoItem {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: clamp(0.95rem, 2vw, 1.05rem);
    color: #1f3d2b;
}

.infoIcon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #1f3d2b;
    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

/* RIGHT IMAGE */
.contactImage img {
    width: 100%;
    max-width: 420px;
    display: block;
}

/* CONTACT INFO hover */
.infoItem {
    transition: transform 0.25s ease, color 0.25s ease;
}

.infoItem:hover {
    transform: translateX(4px);
    color: #123b27;
}

/* icon premium feel */
.infoIcon {
    transition:
        background 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.infoItem:hover .infoIcon {
    background: #123b27;
    transform: scale(1.08);
    box-shadow: 0 6px 16px rgba(31, 61, 43, 0.35);
}

/* IMAGE hover (very soft) */
.contactImage img {
    transition: transform 0.4s ease, filter 0.4s ease;
}

.contactImage:hover img {
    transform: translateY(-6px) scale(1.02);
    filter: drop-shadow(0 14px 30px rgba(0, 0, 0, 0.18));
}


@media (max-width: 768px) {
    .contactUsWeAreHelpSecContainer {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .contactImage img {
        margin: 0 auto;
    }

    .contactInfo {
        justify-content: start;
    }

    .infoItem {
        justify-content: center;
    }
}



/* =========================================== Product Details Page Styles ========================================================== */

.productsDetailsSecContainer {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: clamp(24px, 5vw, 64px);
    padding: clamp(24px, 6vw, 80px);
}

/* LEFT */
.productMedia {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.mainProductImg {
    border-radius: 24px;
    padding: clamp(24px, 5vw, 48px);
}

.mainProductImg img {
    width: clamp(220px, 32vw, 480px);
    display: block;
}

/* thumbnails */
.productThumbs {
    display: flex;
    align-items: center;
    gap: 12px;
}

.thumb {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    background: #f6f6f6;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thumb img {
    width: 80%;
}

.thumbNav {
    border: none;
    background: none;
    font-size: 1.6rem;
    cursor: pointer;
}

/* RIGHT */
.productDetails h1 {
    font-size: clamp(1.6rem, 4vw, 2.6rem) !important;
}

.productSubtitle {
    margin: 10px 0 20px;
    color: #555;
    max-width: 520px;
}

/* price */
.priceRow {
    display: flex;
    align-items: center;
    gap: 14px;
}

.price {
    font-size: clamp(1.2rem, 4vw, 2rem) !important;
    font-weight: 800;
    color: #3D5918;
}

.mrp {
    text-decoration: line-through;
    color: #999;
    font-size: clamp(1.2rem, 3vw, 1.5rem) !important;

}

/* actions */
.actionRow {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 24px 0;
}

.qtyBox {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 999px;
    overflow: hidden;
}

.qtyBox button {
    border: none;
    background: none;
    padding: 8px 14px;
    font-size: 1.2rem !important;
    cursor: pointer;
}

.qtyInput {
    width: 48px;
    border: none;
    text-align: center;
    font-weight: 600;
    outline: none;
}

/* remove arrows (just in case browser tries) */
.qtyInput::-webkit-outer-spin-button,
.qtyInput::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}


/* info blocks */
.infoBlock {
    margin-top: 24px;
}

.infoBlock h4 {
    font-weight: 500;
    margin-bottom: 8px;
}

.infoBlock ul {
    padding-left: 18px;
}

.infoBlock li {
    margin-bottom: 8px;
    line-height: 1.6;
    font-size: clamp(0.95rem, 2.2vw, 1.1rem) !important;
}


/* help */
.helpBlock {
    margin-top: 28px;
    padding-top: 16px;
    border-top: 1px solid #eee;
}

.contactMini {
    display: flex;
    flex-direction: column;
    gap: clamp(8px, 1.5vw, 12px);
}

.contactItem {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: clamp(0.9rem, 2vw, 1.05rem) !important;
    color: #1f3d2b;
    margin: 0;
}

.contactItem i {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #1f3d2b;
    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
}

/* subtle hover */
.contactItem:hover i {
    background: #1aaf2b;
    color: #000;
}


/* ===========================
   TABLET (<= 992px)
=========================== */
@media (max-width: 992px) {

    .productsDetailsSecContainer {
        grid-template-columns: 1fr;
        gap: clamp(32px, 6vw, 48px);
        padding: clamp(20px, 5vw, 40px);
    }

    .productMedia {
        order: 1;
    }

    .productDetails {
        order: 2;
    }

    .mainProductImg img {
        width: clamp(240px, 60vw, 380px);
    }

    .productThumbs {
        justify-content: center;
        flex-wrap: wrap;
    }

    .productSubtitle {
        max-width: 100%;
    }
}


/* ===========================
   MOBILE (<= 576px)
=========================== */
@media (max-width: 576px) {

    /* container spacing */
    .productsDetailsSecContainer {
        padding: 20px 16px;
        gap: 28px;
    }

    /* image */
    .mainProductImg {
        padding: 20px;
    }

    .mainProductImg img {
        width: 100%;
        max-width: 320px;
    }

    /* thumbs */
    .thumb {
        width: 64px;
        height: 64px;
    }

    .thumb img {
        width: 75%;
    }

    .thumbNav {
        font-size: 1.4rem;
    }

    /* title */
    .productDetails h1 {
        font-size: clamp(1.4rem, 5vw, 2rem) !important;
    }

    .productSubtitle {
        font-size: clamp(0.9rem, 4vw, 1rem);
        margin-bottom: 16px;
    }

    /* price row */
    .priceRow {
        flex-wrap: wrap;
        gap: 8px;
    }

    /* actions */
    .actionRow {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .actionRow .btn {
        width: 100%;
        border-radius: 999px;
    }

    .qtyBox {
        justify-content: center;
        width: 125px;
    }

    .actionRow .btn {
        width: 100%;
        border-radius: 999px;
        transition:
            transform 0.25s ease,
            box-shadow 0.25s ease,
            background-color 0.25s ease;
    }

    .actionRow .btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
    }


    /* info blocks */
    .infoBlock {
        margin-top: 20px;
    }

    .infoBlock h4 {
        font-size: clamp(1rem, 4vw, 1.1rem);
    }

    /* help block */
    .helpBlock {
        margin-top: 24px;
    }

    .contactItem {
        font-size: clamp(0.9rem, 4vw, 1rem) !important;
    }
}

.reviewStars i {
    color: #ffc107;
    font-size: 1.1rem;
    margin-right: 2px;
}

.uploadBox {
    width: 120px;
    height: 90px;
    border: 1.5px dashed #aaa;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin: auto;
    transition: 0.25s;
}

.uploadBox i {
    font-size: 1.4rem;
    color: #555;
}

.uploadBox:hover {
    background: #f8f9fa;
    border-color: #0d6efd;
    color: #0d6efd;
}

.ratingStars {
    display: flex;
    justify-content: center;
    gap: 10px;
    font-size: 1.8rem;
    cursor: pointer;
}

.ratingStars i {
    color: #ddd;
    transition: transform .2s ease, color .2s ease;
}

.ratingStars i.hover,
.ratingStars i.active {
    color: #ffc107;
}

.ratingStars i:hover {
    transform: scale(1.2);
}

.thumb {
    cursor: pointer;
    border: 2px solid transparent;
    transition: all .25s ease;
}

.thumb:hover {
    transform: scale(1.05);
}

.thumb.active {
    border-color: #1f3d2b;
    background: #eef5ef;
}

.thumbNav {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #1f3d2b;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thumbNav:hover {
    background: #1aaf2b;
    color: #000;
}

/* =========================================== my orders Page Styles ========================================================== */

.myOrdersSecContainer {
    background: #EAFFEA;
    padding: clamp(1rem, 3vw, 1.5rem) !important;
}

/* Order Card */
.orderCard {
    background: #EAFFEA;
    border-radius: clamp(0.5rem, 1vw, 0.75rem) !important;
    padding: clamp(0.75rem, 2vw, 1rem) !important;
}

/* Header */
.orderHeader {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: clamp(0.5rem, 1.5vw, 0.75rem) !important;
    flex-wrap: wrap;
    /*  responsive */
}

.orderInfo {
    display: flex;
    align-items: center;
    gap: clamp(0.5rem, 1.5vw, 0.75rem) !important;
}

.orderInfo i {
    font-size: clamp(1rem, 1.5vw, 1.25rem) !important;
}

.orderInfo strong {
    font-size: clamp(0.95rem, 1.6vw, 1.1rem) !important;
}

.orderDate {
    font-size: clamp(0.75rem, 1.3vw, 0.85rem) !important;
    color: #555;
}

/* Status */
.orderStatus {
    padding: clamp(0.3rem, 1vw, 0.4rem) clamp(0.6rem, 2vw, 0.75rem) !important;
    border-radius: 999px !important;
    font-size: clamp(0.75rem, 1.3vw, 0.85rem) !important;
    display: flex;
    align-items: center;
    gap: clamp(0.25rem, 1vw, 0.4rem) !important;
    white-space: nowrap;
}

.orderStatus.pending {
    background: #f8ffb6;
    color: #000;
}

/* Body */
.orderBody {
    display: flex;
    gap: clamp(0.75rem, 2vw, 1rem) !important;
    margin-top: clamp(0.75rem, 2vw, 1rem) !important;
}

/* Product Image */
.productImg img {
    width: clamp(4.5rem, 18vw, 5.5rem) !important;
    border-radius: clamp(0.5rem, 1vw, 0.6rem) !important;
    background: #ffffff00;
    padding: clamp(0.4rem, 1.2vw, 0.5rem) !important;
}

/* Product Details */
.productDetails h5 {
    margin: 0 0 clamp(0.25rem, 1vw, 0.4rem) !important;
    font-size: clamp(0.95rem, 1.6vw, 1.1rem) !important;
}

.productDetails p {
    margin: 0;
    font-size: clamp(0.8rem, 1.4vw, 0.9rem) !important;
    color: #333;
}

/* Price Tag */
.priceTag {
    display: inline-block;
    margin-top: clamp(0.5rem, 1.5vw, 0.75rem) !important;
    background: #3d5f13;
    color: #fff;
    padding: clamp(0.3rem, 1vw, 0.4rem) clamp(0.6rem, 2vw, 0.75rem) !important;
    border-radius: clamp(0.3rem, 1vw, 0.4rem) !important;
    font-weight: 600;
    font-size: clamp(0.8rem, 1.5vw, 0.95rem) !important;
}

@media (max-width: 576px) {

    .orderBody {
        flex-direction: column;
        align-items: flex-start;
    }

    .productImg img {
        width: 100% !important;
        max-width: 140px;
    }
}

.orderStatus.confirmed {
    background: #c7f0d8;
    color: #155724;
}

.orderStatus.shipped {
    background: #dbeafe;
    color: #1e40af;
}

.orderStatus.delivered {
    background: #dcfce7;
    color: #166534;
}

.orderStatus.cancelled {
    background: #fee2e2;
    color: #991b1b;
}


/* ============================ Header ============================ */
/* MAIN DROPDOWN PANEL */
.userDropdown {
    position: absolute;
    top: 96px;
    right: 5px;
    /* width: 260px; */
    background: #E6FFEE;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: all .25s ease;
}

.userDropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.userDropdown .userLogin {
    background-color: #133b0c !important;
    width: 100px !important;
    color: white !important;
    padding: 10px;
    border: none;
}

.userDropdown .userLogin i {
    color: white !important;
}

.userDropdown .userLogin:hover {
    background-color: white !important;
    color: #133b0c !important;
    padding: 10px;
}

.userDropdown .userLogin:hover>i {
    color: #133b0c !important;
}

/* HEADER SECTION */
.userHeader {
    background: #21452C;
    padding: 18px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 14px;
}

.userPic {
    width: auto;
    height: auto;
    padding: 10px;
    background: #377652;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
}

.userNameInfo {
    margin: 0;
    font-size: 17px !important;
    font-weight: 700;
    color: #fff;
}

.userEmail {
    margin: 2px 0 0;
    font-size: 11px !important;
    color: #ccf0dc;
}

/* MENU GRID SECTION */
.menuItems {
    display: grid;
    grid-template-columns: 1fr;
    padding: 12px 0;
    gap: 3px;
}

.menuItem {
    padding: 12px 18px;
    font-size: 15px;
    font-weight: 500;
    color: #21452C;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: .2s ease;
}

.menuItem:hover {
    background: #d5f5e3;
}

/* MENU LIST */
.menuItems {
    background: #E6FFEE;
    padding: 10px 0;
}

.menuItem {
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 14px !important;
    color: #21452C;
    cursor: pointer;
    text-align: center;
    transition: 0.2s ease;
}

.menuItem i {
    font-size: 15px !important;
}

.menuItem:hover {
    background: #21452C;
    color: #fff;
}

.menuItem:hover>i {
    color: #fff !important;
}

/* Order Placed Page */
#globalSpinner {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(255, 255, 255, 0);
    backdrop-filter: blur(8px);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

.weightBadge:hover {
    background-color: #21452C !important;
    color: white !important;
}

.whatsappFloat {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #25D366;
    color: #fff;
    padding: 12px 18px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    z-index: 999;
}

.whatsappFloat:hover {
    transform: translateY(-3px);
}

/*  Mobile Screen */
@media (max-width: 576px) {

    .whatsappFloat {
        padding: 14px;
        border-radius: 50%;
        width: 55px;
        height: 55px;
        justify-content: center;
    }

    .whatsappFloat span {
        display: none;
    }
}


.brandStorySecContainer {
    background-color: #3D5918;
    color: #fff;
    padding: clamp(40px, 8vw, 100px) clamp(15px, 4vw, 40px);
    font-family: 'Raleway', sans-serif;
    position: relative;
}

.brandStoryInner {
    max-width: 900px;
    margin: 0 auto;
}

.brandStoryBlock {
    margin-bottom: 60px;
    position: relative;
}

.brandStoryTitle {
    font-size: clamp(2rem, 4vw + 0.5rem, 3rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 25px;
    text-align: center;
}

.brandStoryText {
    font-size: clamp(1rem, 1.5vw + 0.2rem, 1.2rem);
    line-height: 1.7;
    margin-bottom: 16px;
    color: #fff;
    text-align: justify;
    position: relative;
}

.brandStoryText.quote {
    font-style: italic;
    border-left: 4px solid #5eec11;
    padding-left: 15px;
    margin-left: 5px;
}

.brandStoryHighlight {
    font-weight: 700;
    color: #5eec11;
    display: block;
    margin-top: 15px;
    text-align: center;
    font-size: clamp(1.05rem, 1.6vw + 0.2rem, 1.3rem);
}

.storyDivider {
    border: 0;
    height: 2px;
    background: #fff3;
    margin: 50px 0;
    border-radius: 5px;
}

/* Optional icon spacing */
.brandStoryTitle i,
.brandStoryHighlight i,
.brandStoryText i {
    color: #5eec11;
}

.brandStoryBlock {
    border: 2px solid #5eec11;
    padding: 30px;
    border-radius: 50px;
}

.logoWrapper {
    background-color: #fff;
    /* white background */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px;
    /* space around the logo */
    border-radius: 20px;
    /* soft rounded corners */
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    /* subtle shadow for "lifted" effect */
    max-width: 300px;
    /* optional, keeps logo contained */
    margin: 20px auto;
    /* center on page */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.logoWrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    /* subtle hover lift */
}

.vgLogo1 {
    max-width: 100%;
    height: auto;
    display: block;
}