 .poppins {
    font-family: 'Poppins';
 }
 /* certificate start */
    .brand__logo--wrapper {
        overflow: hidden;
        width: 100%;
    }

    .brand__logo--section__inner {
        display: flex;
        align-items: center;
        gap: 50px;
        width: max-content;
        animation: logoSlide 20s linear infinite;
    }

    .brand__logo--items {
        flex: 0 0 auto;
    }

    .brand__logo--items img {
        display: block;
    }

    @keyframes logoSlide {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(-50%);
        }
    }
 /* certificate end */

/* reel video section */

/* Container holding the video */
.reels--thumbnail {
    width: 100%;
    max-width: 280px;      /* Prevents the reel from getting too wide */
    margin: 0 auto;        /* Centers it within the slide */
    border-radius: 12px;   /* Optional: adds nice rounded corners */
    overflow: hidden;
    aspect-ratio: 9 / 16;  /* Forces the vertical Reel shape */
    background-color: #000;/* Fills any gaps with black background */
}

/* The video element itself */
.reel-video {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;    /* Ensures the video fills the 9:16 box without stretching */
}


/* reel video section */


/* for marquee start */
.header-marquee {
    background: #1F3D0C;
    overflow: hidden;
    position: relative;
    /* height: 50px; */
    height: 40px;
    display: flex;
    align-items: center;
    white-space: nowrap;
}

/* wave top + bottom like image */
.header-marquee::before,
.header-marquee::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 8px;
    background: #fff;
    border-radius: 100%;
    z-index: 2;
}

.header-marquee::before {
    top: -4px;
}

.header-marquee::after {
    bottom: -4px;
}

.marquee-track {
    display: inline-flex;
    width: max-content;
    animation: marqueeMove 25s linear infinite;
}

.header-marquee:hover .marquee-track {
    animation-play-state: paused;
}

.marquee-track span {
    color: #fff;
   font-family: 'Poppins';
    font-weight: 800;
    /* font-size: 20px; */
    padding-right: 80px;
    flex-shrink: 0;
}

@keyframes marqueeMove {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}
/* for marquee end */


/* header search box start */

.header__search--box{
    width: 630px;
    display: flex;
    align-items: center;
    border: 3px solid #9ab0a7;
    overflow: hidden;
}

.header__search--input{
    flex: 1;
    border: none !important;
    outline: none !important;
    padding: 14px 20px;
}

.header__search--button{
    border: none !important;
    background: transparent !important;
    padding: 0 18px;
}

/* header search box end */

/* menu browser all categories */
.browser-all-cat {
    letter-spacing: .2px;
    font-weight: 700;
    border-radius: .5rem;
    font-family: 'Poppins';
}

@media (min-width: 1281px) {
    .browser-all-cat {
        margin-left: -80px;
    }
}

/* */

/* menu navbar start */
.menu_nav {
    background-color: #ffffff;
    border-top: 1px solid #ececec;
    padding: 5px 0;
    border-bottom: 1px solid #ececec;
    margin-bottom: 3px;
}
.menu_nav_a{
    color: #033923;
    /* font-weight: 700; */
}

.browser_all_cat_drop.category-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    padding: 25px;
    margin: 0;
    list-style: none;
    background: #ffffff;;
    border: 1px solid #8aa398;
    border-radius: 12px;
    top: calc(100% + 1.5rem);
}

@media only screen and (min-width: 1024px) {
  .browser_all_cat_drop.category-grid {
    width: 51rem;
  }
}

.browser_all_cat_drop.category-grid li {
    list-style: none;
}

.browser_all_cat_drop.category-grid li a {
    display: block;
    padding: 18px 20px;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    text-decoration: none;
    color: #123b2b;
    font-size: 1.5rem;
    font-weight: 600;
    transition: 0.3s;
}

.browser_all_cat_drop.category-grid li a:hover {
    /* border-color: #2f6b45; */
    border-color: rgb(154, 176, 167);
    transform: translateY(-2px);
}
/* menu navbar end */

/* footer new css ref start */

.custom-footer {
    background: #162b08;
    color: #fff;
    padding: 70px 50px 80px; /* Adjusted padding to give the background room */
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}

/* Updated Full Background Illustration */
.custom-footer::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%; /* Spans full height of footer so sun and trees aren't cut */
    background: url('../img/footer/footer-bg-update.png') no-repeat bottom center;
    background-size: 100% auto; /* Forces 100% full width while scaling height naturally */
    opacity: 0.25;
    pointer-events: none;
    z-index: 1;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 60px;
    position: relative;
    z-index: 2; /* Keeps text clickable above background */
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
}

.footer-logo {
    max-width: 100%;
    width: 220px;
    margin-bottom: 25px;
}

.footer-col h3,
.footer-col h4 {
    color: white;
    margin-bottom: 25px;
    font-size: 17px;
    font-weight: 700;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 18px;
}

.footer-col ul li a {
    color: #a9c6c2;
    text-decoration: none;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
}

.footer-col ul li a:hover {
    color: white;
    border-bottom: 1px solid white;
}

.footer-left p {
    margin-bottom: 12px;
    letter-spacing: .1px;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    color: #a9c6c2;
    overflow-wrap: break-word;
    word-break: break-word;
}

.grievance a {
    color: #fff;
    text-decoration: underline;
}

.newsletter-box {
    display: flex;
    border: 1px solid rgba(255,255,255,0.5);
    margin-top: 20px;
    height: 60px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.newsletter-box input {
    flex: 1;
    min-width: 0;
    background: transparent;
    border: none;
    color: white;
    padding: 0 15px;
    font-size: 16px;
    outline: none;
}

.newsletter-box button {
    width: 50px;
    border: none;
    background: transparent;
    color: white;
    font-size: 20px;
    cursor: pointer;
    flex-shrink: 0;
}

.contact-btn {
    display: block;
    background: white;
    color: #005f52;
    text-align: center;
    padding: 14px 20px;
    border-radius: 40px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 35px;
    width: 100%;
    box-sizing: border-box;
}

.social-icons {
    display: flex;
    gap: 12px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.social-icons a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: white;
    color: #005f52;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
}

.copyright {
    margin-top: 40px;
}

/* FOR SOCIAL ICON START */
/* .social-icons {
    display: flex;
    gap: 12px;
    margin-bottom: 30px;
}

.social-icons a {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: white;
    color: #005f52;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: #005f52;
    color: white;
} */

.social-icons {
    display: flex;
    gap: 12px;
    margin-bottom: 30px;
}

.social-icons a {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #ffffff;
    color: #1a330e; /* Matches your theme's deep forest green */
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.social-icons a:hover {
    background: #62ab29; /* Matches your bright green accent color (like your slider buttons) */
    color: #ffffff;
    transform: translateY(-2px);
}
/* FOR SOCIAL ICON END */

/* ================= Mobile & Tablet Responsiveness ================= */

@media (max-width: 992px) {
    .custom-footer {
        padding: 40px 20px 100px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
        width: 100%;
    }

    .custom-footer::after {
        /* On narrow screens, cover guarantees full fill without distorting aspect ratios */
        background-size: cover;
        background-position: bottom center;
    }
    /* Hides the background illustration completely on mobile */
    .custom-footer::after {
        display: none;
    }
}

/* footer new css ref end */


/* new product section start */

.product__items2{
    background:#fff;
    border:1px solid #d1d1d1;
    border-radius:16px;
    padding:14px;
    overflow:hidden;
    transition:0.3s;
    height:100%;
}

.product__items2:hover{
    box-shadow:0 8px 25px rgba(0,0,0,0.08);
}

.product__items--thumbnail{
    position:relative;
}

.product__items--img{
    width:100%;
    height:220px !important;
    object-fit:contain;
}

/* .product__badge--items{
    background:#0b8f5a;
    color:#ffffff;
    padding:6px 12px;
    border-radius:8px;
    font-size:13px;
    font-weight:700;
} */

.product__badge--items{
    /* background-color: #007e3d; */
    background-color: #0b4f2f;
    font-size: 12px;
    color: white;
    line-height: 14px;
    border-radius: 10px 0;
    padding: 4px 10px;
    letter-spacing: 1px;
    font-weight: 600;
}

.product__items--content__title{
    font-size:20px;
    line-height:1.4;
    min-height:56px;
    margin:10px 0;
}

.product__items--price{
    display:flex;
    gap:10px;
    align-items:center;
}

.current_price_custom{
    font-size:30px;
    font-weight:700;
    color:#111;
}

.old__price{
    color:#888;
    text-decoration:line-through;
}

.t4s-pr-addtocart{
    display:block;
    width:100%;
    text-align:center;
    background:#1F3D0C;
    color:#fff !important;
    padding:12px;
    border-radius:12px;
    font-weight:700;
    margin-top:15px;
}

.discount-strip{
    background:#e9f7ef;
    color:#0a8f4c;
    padding:8px 12px;
    border-radius:8px;
    font-size:13px;
    font-weight:600;
    margin-top:10px;
}



.product_txt_custom {
    font-size: 16px;
    color: #1B2E50;
    line-height: 1.4;
    font-weight: 500;
    font-family: 'Poppins';
}


/* new product section end */
.menu-main-heading {
    font-size: 35px;
    text-align: center;
    font-weight: bold;

    color: #1F3D0C;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 .5rem;
    font-size: 3.2rem;
    font-family: 'Poppins';

}
.menu-subheading{
    font-size: 35px;
    text-align: center;
    font-weight: bold;

    color: #1F3D0C;
    font-weight: 400;
    line-height: 1.2;
    margin: 0 0 .5rem;
    font-size: 3.2rem;
}

.heading_center_homepage {
    font-size: 35px;
    text-align: center;
    font-weight: bold;
}

/* for home page slide start */

.custom-prev,
.custom-next{
    width: 45px !important;
    height: 45px !important;
    background: #4CAF1F;
    border-radius: 50%;
    color: white !important;
}

.custom-prev::after,
.custom-next::after{
    font-size: 18px !important;
    font-weight: bold;
}

/* for home page slide end */

.nocheeni-why-choose-heading {
    color: #1F3D0C;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 .5rem;
    font-size: 3.2rem;
    text-align: center;
    font-family: 'Poppins';
}

.nocheeni-section {
    background: #f5f5f5;
    padding: 60px 0;
}

.heading_center_homepage {
    text-align: center;
    font-size: 46px;
    font-weight: 700;
    color: #1f4d2f;
    margin-bottom: 60px;
    font-family: 'Poppins';
}

.nocheeni-why-choose-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    align-items: start;
}

.nocheeni-why-choose-item {
    text-align: center;
    padding: 20px;
}

.nocheeni-why-choose-icon {
    margin-bottom: 25px;
    min-height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nocheeni-why-choose-icon img {
    width: 90px;
    height: 90px;
    object-fit: contain;
}

.nocheeni-why-choose-item-title {
    font-size: 19px;
    font-weight: 700;
    color: #1f4d2f;
    margin-bottom: 15px;
    font-family: 'Poppins';
    line-height: 1.3;
    margin-top: 31px;
}

.nocheeni-why-choose-item-description {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    max-width: 300px;
    margin: auto;
}

/* Tablet */
@media (max-width: 991px) {
    .nocheeni-why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .heading_center_homepage {
        font-size: 34px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .nocheeni-why-choose-grid {
        grid-template-columns: 1fr;
    }

    .heading_center_homepage {
        font-size: 28px;
    }

    .nocheeni-why-choose-item-title {
        font-size: 22px;
    }

    .nocheeni-why-choose-item-description {
        font-size: 15px;
    }
}
/* for home page why choose us end*/


/* for menu browse all prouct */
/* text color change */
.menu_all_product {
    font-weight: 600;
    animation: colorChange 3s infinite linear;
}

@keyframes colorChange {
    0% {
        color: red;
    }
    25% {
        color: blue;
    }
    50% {
        color: orange;
    }
    75% {
        color: green;
    }
    100% {
        color: red;
    }
}
/* */


/* header cart,login,wishlist start */
.header__account ul {
    display: flex;
    align-items: center;
    gap: 35px;
}

.header__account--items {
    list-style: none;
}

.header__account--btn {
    display: flex !important;
    align-items: center !important;
    gap: 8px;
    width: auto !important;
    height: auto !important;
    padding: 0 !important;
    background: transparent !important;
    border-radius: 0 !important;
    white-space: nowrap;   /* Log in break nahi hoga */
    color: #0b4f3c !important;
}

.header__account--btn span {
    display: inline-block !important;
    white-space: nowrap;
}

.header__account--btn svg {
    flex-shrink: 0;
}

/* header cart,login,wishlist end */



/* home page category start*/

.category-card{
    background:#fff;
    border:1px solid #e8e8e8;
    border-radius:12px;
    padding:20px 15px;
    text-align:center;
    height:390px;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
}

.category-card:hover{
    transform:translateY(-5px);
    box-shadow:0 8px 25px rgba(0,0,0,0.12);
}

.category-img-box{
    height:180px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.category-img{
    width:150px;
    height:150px;
    object-fit:contain;
}
.category-title{
    font-size:16px;
    font-weight:500;
    line-height:1.3;
    min-height:58px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-family: 'Poppins';
}

.category-count{
    color:#666;
    margin-bottom:18px;
    font-size:15px;
    font-family: 'Poppins';
}

.shop-btn{
    display:inline-block;
    background:#0b4f2f;
    color:#fff;
    padding:12px 24px;
    border-radius:6px;
    font-size:14px;
    font-weight:600;
    text-decoration:none;
    transition:0.3s;
    margin-top:auto;
    font-family: 'Poppins';
}

.shop-btn:hover{
    background:#1a6d45;
    color:#fff;
}

/* home page cart end */

/* for home page 2 banner start */
@media (min-width: 992px) {
    .home-banner-img {
        height: 303px;
        object-fit: cover;
    }
}
/* for home page 2 banner end */


/* policies pages start*/
.privacy__policy--content{
    max-width: 950px;
    margin: 0 auto;
    color:#555;
    font-size:16px;
    line-height:1.8;
}

.privacy__policy--content h1{
    font-size:40px;
    /* color:#114C8D; */
    color:#123b2b;
    font-weight:700;
    margin:0 0 25px;
}

.privacy__policy--content h2{
    font-size:26px;
    color:#123b2b;
    margin:35px 0 15px;
    font-weight:600;
}

.privacy__policy--content h3{
    font-size:22px;
    color:#123b2b;
    margin:30px 0 15px;
}

.privacy__policy--content p{
    margin-bottom:18px;
    line-height:1.9;
}

.privacy__policy--content ul{
    margin:15px 0 25px;
    padding-left:25px;
}

.privacy__policy--content ol{
    margin:15px 0 25px;
    padding-left:25px;
}

.privacy__policy--content li{
    margin-bottom:10px;
    line-height:1.8;
}

.privacy__policy--content hr{
    margin:30px 0;
    border:0;
    border-top:1px solid #ddd;
}

.privacy__policy--content blockquote{
    background:#f8fbff;
    border-left:5px solid #123b2b;
    padding:20px;
    margin-top:30px;
    border-radius:8px;
}
/* policies pages end */

/* language translate start */

.custom-lan-btn {
    color: #FFF;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 10px;
    border: solid 1px #f2f2f2;
    gap: 10px;
    height: 48px;
    align-items: center;
}


#google_element {
    display: none;
}

/* Hide Google Translate widget */
.goog-te-banner-frame.skiptranslate,
.goog-te-gadget,
.goog-te-gadget-icon,
.goog-te-balloon-frame,
.goog-tooltip,
.goog-text-highlight {
    display: none !important;
}

/* Prevent extra space at top */
body {
    top: 0 !important;
    position: static !important;
}

/* Remove Google highlight */
font.goog-text-highlight {
    background: transparent !important;
    box-shadow: none !important;
}

.skiptranslate {
    display: none;
}





/* new dropdown */

.language-dropdown{
    position:relative;
    display:inline-block;
}

.language-btn{
    display:flex;
    align-items:center;
    gap:8px;
    height:48px;
    padding:0 15px;
    background:#fff;
    border:1px solid #d9d9d9;
    border-radius:12px;
    cursor:pointer;
    transition:.3s;
}

.language-btn img{
    width:28px;
}

.language-btn span{
    font-size:15px;
    font-weight:600;
    color:#1F3D0C;
}

.language-menu{
    position:absolute;
    top:50px;
    left:0;
    min-width:170px;
    background:#fff;
    border-radius:12px;
    box-shadow:0 8px 25px rgba(0,0,0,.15);
    display:none;
    overflow:hidden;
    z-index:9999;
}

.language-menu a{
    display:flex;
    align-items:center;
    gap:10px;
    padding:12px 15px;
    color:#222;
    text-decoration:none;
    transition:.3s;
}

.language-menu a img{
    width:24px;
}

.language-menu a:hover{
    background:#f5f5f5;
    color:#1F3D0C;
}

.language-dropdown:hover .language-menu{
    display:block;
}
/* -- */

/* language translate end */


/* for the my-account section for side menus (dashboard etc) start */

/* Sidebar Container */
    .account__left--sidebar {
        width: 250px;
        margin-right: 30px;
    }

    /* Sidebar Box & Border */
    .account__menu {
        list-style: none;
        padding: 0;
        margin: 0;
        border: 1px solid #C3D8C2; /* Subtle theme green border */
        border-radius: 8px;
        overflow: hidden;
        background-color: #FFFFFF;
    }

    /* List Item Borders */
    .account__menu--list {
        border-bottom: 1px solid #C3D8C2;
    }

    .account__menu--list:last-child {
        border-bottom: none;
    }

    /* Links Layout & Typography */
    .account__menu--list a {
        display: flex;
        align-items: center;
        padding: 12px 18px;
        color: #1A3C1E; /* Primary dark green color */
        text-decoration: none;
        font-size: 15px;
        font-weight: 500;
        transition: all 0.2s ease;
    }

    /* Icon Styling */
    .account__menu--list .menu-icon {
        width: 18px;
        height: 18px;
        margin-right: 12px;
        color: #1A3C1E; /* Primary dark green color */
        flex-shrink: 0;
    }

    /* Active State (Selected Tab) */
    .account__menu--list.active {
        background-color: #1A3C1E; /* Dark Green background for active item */
    }

    .account__menu--list.active a,
    .account__menu--list.active .menu-icon {
        color: #FFFFFF; /* White text & icon on active item */
    }

    /* Hover State for non-active items */
    .account__menu--list:hover:not(.active) {
        background-color: #EBF3EA; /* Light Mint hover background */
    }
/* for the my-account section for side menus (dashboard etc) end */


/* for the menu wishlist,cart,login/signup menus start */
    /* UL */
    .header__account ul{
        display:flex;
        align-items:center;
        gap:18px;          /* spacing between Wishlist, Cart & Login */
        margin:0;
        padding:0;
    }

    /* LI */
    .header__account--items{
        margin:0 !important;
        padding:0 !important;
    }

    /* Link */
    .header__account--btn{
        display:flex;
        align-items:center;
        gap:5px;
        padding:0 !important;
        background:transparent !important;
        color:#1F3D0C !important;
        position:relative;
        text-decoration:none;
    }

    /* Text */
    .menu-text{
        /* font-size:18px; */
        font-weight:500;
        color:#1F3D0C;
        white-space:nowrap;
    }

    /* Icon */
    .header__account--btn svg{
        width:28px;
        height:28px;
        flex-shrink:0;
    }

    /* Counter */
    .items__count{
        position:absolute;
        top:-8px;
        left:18px;
        width:18px;
        height:18px;
        border-radius:50%;
        background:#fff;
        border:1px solid #6fa23c;
        color:#6fa23c;
        font-size:11px;
        display:flex;
        align-items:center;
        justify-content:center;
        line-height:1;
    }
/* for the menu wishlist,cart,login/signup menus end */



/*show images,product name according ref, and blog start */

    /* .search_result_box{
        position:absolute;
        top:100%;
        left:0;
        width:100%;
        background:#fff;
        border:1px solid #ddd;
        box-shadow:0 10px 25px rgba(0,0,0,.12);
        display:none;
        z-index:9999;
        max-height:600px;
        overflow:auto;
    }

    .search_heading{
        font-size:22px;
        font-weight:600;
        padding:15px;
    }

    .product_grid{
        display:grid;
        grid-template-columns:repeat(3,1fr);
        gap:15px;
        padding:15px;
    }

    .product_card{
        border:1px solid #eee;
        border-radius:10px;
        overflow:hidden;
        text-decoration:none;
        color:#000;
    }

    .product_card img{
        width:100%;
        height:180px;
        object-fit:contain;
    }

    .product_info{
        padding:10px;
    }

    .old_price{
        text-decoration:line-through;
        color:#888;
    }

    .new_price{
        color:#1b7f3c;
        font-size:20px;
        font-weight:bold;
    }

    .blog_grid{
        display:grid;
        grid-template-columns:repeat(2,1fr);
        gap:15px;
        padding:15px;
    }

    .blog_card{
        display:flex;
        gap:10px;
        text-decoration:none;
        color:#000;
    }

    .blog_card img{
        width:120px;
        height:80px;
        object-fit:cover;
    } */



   /*
.search_result_box{
    position:absolute;
    top:100%;
    left:0;
    width:100%;
    background:#fff;
    border:1px solid #ddd;
    z-index:99999;
    display:none;
    padding:15px;
}

.search-product{
    display:flex;
    align-items:center;
    gap:15px;
    text-decoration:none;
    color:#000;
    padding:10px 0;
}

.search-product img{
    width:70px;
    height:70px;
    object-fit:cover;
}

.search-info{
    display:flex;
    flex-direction:column;
}
*/
/*
.header__search--box{
    position:relative;
}

.search_result_box{
    position:absolute;
    top:100%;
    left:0;
    width:100%;
    background:#fff;
    border:1px solid #ddd;
    border-radius:10px;
    display:none;
    z-index:999999;
    box-shadow:0 10px 25px rgba(0,0,0,.15);
    max-height:550px;
    overflow-y:auto;
}

.search_result_box h4{
    padding:15px;
    margin:0;
    font-size:18px;
    font-weight:600;
    border-bottom:1px solid #eee;
}

.search-product{
    display:flex;
    align-items:center;
    gap:15px;
    padding:15px;
    text-decoration:none;
    color:#222;
    border-bottom:1px solid #eee;
}

.search-product:hover{
    background:#f8f8f8;
}

.search-product-image{
    width:80px;
    min-width:80px;
}

.search-product-image img{
    width:80px;
    height:80px;
    object-fit:contain;
    display:block;
}

.search-product-content{
    flex:1;
}

.search-product-name{
    font-size:16px;
    font-weight:600;
    margin-bottom:8px;
}

.search-product-price{
    display:flex;
    gap:10px;
    align-items:center;
}

.old-price{
    text-decoration:line-through;
    color:#999;
}

.new-price{
    color:#1a8b39;
    font-weight:700;
}

.search-blog{
    display:flex;
    gap:15px;
    padding:15px;
    text-decoration:none;
    color:#222;
    border-bottom:1px solid #eee;
}

.search-blog img{
    width:80px;
    height:80px;
    object-fit:cover;
} */


.header__search--widget{
    position: relative;
    z-index: 999999;
}

.header__search--box{
    position: relative;
    overflow: visible !important;
}

/*
.search_result_box{
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    width: 100%;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,.15);
    z-index: 9999999 !important;
    display: none;
    overflow: visible;
} */







.search_result_box{

position:absolute;
top:100%;
left:0;
width:100%;

background:#fff;

border-radius:10px;

box-shadow:0 5px 20px rgba(0,0,0,.15);

padding:20px;

display:none;

max-height:650px;

overflow-y:auto;

z-index:999999;
}


.search_result_box h4{

margin:20px 0 15px;

font-size:28px;

font-weight:600;

}


.search-product-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:20px;

}


.search-product-card{

border:1px solid #eee;

border-radius:10px;

padding:15px;

text-decoration:none;

color:#222;

transition:.3s;

background:#fff;

}


.search-product-card:hover{

box-shadow:0 5px 20px rgba(0,0,0,.12);

}


.search-product-card img{

width:100%;

height:180px;

object-fit:contain;

margin-bottom:15px;

}


.search-product-name{

font-size:22px;

line-height:30px;

margin-bottom:12px;

font-weight:500;

}


.search-product-price{

display:flex;

gap:10px;

align-items:center;

font-size:24px;

}


.old-price{

color:#999;

text-decoration:line-through;

}


.new-price{

color:#000;

font-weight:700;

}



.search-blog-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:20px;

}


.search-blog-card{

text-decoration:none;

color:#222;

}


.search-blog-card img{

width:100%;

height:180px;

object-fit:cover;

border-radius:10px;

margin-bottom:10px;

}


.search-blog-title{

font-size:20px;

line-height:28px;

}
/* show images,product name according ref, and blog end */




/* new leteer new start*/
/* Base Container Styles */
.newsletter__popup--inner {
    max-width: 820px !important;
    width: 92% !important;
    position: relative !important;
    background: #ffffff !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25) !important;
}

.newsletter__popup--box {
    display: flex !important;
    align-items: stretch !important;
}

/* Left Image Styling */
.newsletter__popup--thumbnail {
    flex: 0 0 42% !important;
    max-width: 42% !important;
    position: relative !important;
    background-color: #f8f9fa !important;
}

.newsletter__popup--thumbnail__img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
}

/* Right Content Column */
.newsletter__popup--box__right {
    flex: 0 0 58% !important;
    max-width: 58% !important;
    padding: 24px 28px !important;
    text-align: center !important;
}

/* Hero Circle & Icon Header */
.nc-hero-icon-wrapper {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    margin-bottom: 10px !important;
}

.nc-hero-circle {
    width: 52px !important;
    height: 52px !important;
    border-radius: 50% !important;
    background-color: #f1f6ea !important;
    color: #245318 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.nc-leaf-side {
    color: #709852 !important;
}

/* Headings */
.nc-sub-title {
    font-size: 18px !important;
    font-weight: 700 !important;
    color: #1a1a1a !important;
    margin: 0 0 2px 0 !important;
    line-height: 1.2 !important;
}

.nc-main-title {
    font-size: 28px !important;
    font-weight: 900 !important;
    color: #245318 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    margin: 0 0 6px 0 !important;
    line-height: 1.1 !important;
}

.nc-leaf-divider {
    color: #709852 !important;
    display: flex !important;
    justify-content: center !important;
    margin-bottom: 8px !important;
}

.nc-description {
    font-size: 12px !important;
    color: #4a4a4a !important;
    line-height: 1.4 !important;
    margin: 0 0 16px 0 !important;
}

/* 4 Feature Columns */
.nc-features-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 6px !important;
    margin-bottom: 18px !important;
}

.nc-feature-col {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    position: relative !important;
}

.nc-feature-col:not(:last-child)::after {
    content: "" !important;
    position: absolute !important;
    right: -3px !important;
    top: 15% !important;
    height: 70% !important;
    width: 1px !important;
    background-color: #eee !important;
}

.nc-feature-circle {
    width: 42px !important;
    height: 42px !important;
    border-radius: 50% !important;
    background-color: #f1f6ea !important;
    color: #245318 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-bottom: 6px !important;
}

.nc-feature-col span {
    font-size: 11px !important;
    font-weight: 600 !important;
    color: #222222 !important;
    line-height: 1.2 !important;
}

/* CTA Button */
.nc-cta-button {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    width: 100% !important;
    background-color: #214311 !important;
    color: #ffffff !important;
    font-size: 14px !important;
    font-weight: 800 !important;
    letter-spacing: 0.5px !important;
    padding: 12px 16px !important;
    border-radius: 6px !important;
    text-decoration: none !important;
    transition: background-color 0.2s ease !important;
    margin-bottom: 10px !important;
}

.nc-cta-button:hover {
    background-color: #17320b !important;
    color: #ffffff !important;
}

.nc-cta-arrow {
    width: 22px !important;
    height: 22px !important;
    border-radius: 50% !important;
    border: 1.5px solid #ffffff !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

/* Trust Badge Footer */
.nc-trust-footer {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 5px !important;
    font-size: 11px !important;
    font-weight: 500 !important;
    color: #4a4a4a !important;
    margin-bottom: 10px !important;
}

.nc-trust-footer svg {
    color: #245318 !important;
}

/* Checkbox */
.newsletter__popup--footer {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px !important;
    font-size: 11px !important;
    color: #777777 !important;
}

.newsletter__popup--footer input {
    margin: 0 !important;
    cursor: pointer !important;
}

.newsletter__popup--footer label {
    margin: 0 !important;
    cursor: pointer !important;
}

/* Close Button */
.newsletter__popup--close__btn {
    position: absolute !important;
    top: 12px !important;
    right: 12px !important;
    background: #ffffff !important;
    border: 1px solid #dcdcdc !important;
    border-radius: 50% !important;
    width: 28px !important;
    height: 28px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    color: #333333 !important;
    z-index: 10 !important;
    transition: background 0.2s ease !important;
}

.newsletter__popup--close__btn:hover {
    background-color: #f2f2f2 !important;
}

/* Mobile Responsiveness */
@media (max-width: 767px) {
    .newsletter__popup--box {
        flex-direction: column !important;
    }
    .newsletter__popup--thumbnail {
        display: none !important;
    }
    .newsletter__popup--box__right {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        padding: 20px 16px !important;
    }
}
/* new leteer new end*/


/* Keeps the search input layer strictly above the popup overlay */
.header__search--widget {
    position: relative !important;
    z-index: 1000 !important;
}


/* ----- frontend product detail page show review section start ----- */
/* Theme Colors matching Green Style */
.btn-theme {
    background-color: #033B2B;
    color: #ffffff;
    border: none;
    font-weight: 600;
}
.btn-theme:hover {
    background-color: #02271c;
    color: #ffffff;
}

.text-theme {
    color: #033B2B;
}

.bg-theme {
    background-color: #033B2B;
}

.badge-verified {
    color: #033B2B;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 3px;
}

@media (min-width: 768px) {
    .border-end-md {
        border-right: 1px solid #e9ecef;
    }
}

/* Interactive Star Rating Inputs */
.star-rating-input {
    direction: rtl;
}
.star-rating-input input[type="radio"] {
    display: none;
}
.star-rating-input label {
    font-size: 2rem;
    color: #ccc;
    cursor: pointer;
    padding: 0 4px;
    transition: color 0.2s;
}
.star-rating-input label:hover,
.star-rating-input label:hover ~ label,
.star-rating-input input[type="radio"]:checked ~ label {
    color: #033B2B;
}

/* Media Previews */
.media-preview-box {
    position: relative;
    width: 100px;
    height: 90px;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid #ddd;
}
.media-preview-box img,
.media-preview-box video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.btn-remove-media {
    position: absolute;
    top: 2px;
    right: 2px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 12px;
    line-height: 1;
    cursor: pointer;
}

/* Review Thumbnails */
.custom-thumb {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 6px;
}
.custom-thumb-video {
    width: 120px;
    height: 80px;
    object-fit: cover;
    border-radius: 6px;
}






/* Star Selection Dynamic Label Style (Match 1st image) */
.rating-label-badge {
    display: inline-block;
    background-color: #e0e0e0;
    color: #333333;
    padding: 4px 16px;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 4px;
}

/* Custom Filter Select Styling (Match 2nd image) */
.custom-filter-select {
    width: auto;
    border-color: #ccc;
    color: #033B2B;
    font-weight: 500;
    cursor: pointer;
}
.custom-filter-select:focus {
    border-color: #033B2B;
    box-shadow: 0 0 0 0.2rem rgba(3, 59, 43, 0.25);
}

/* ----- frontend product detail page show review section start ----- */


.force-hide {
    display: none !important;
}