/* =========================
   GLOBAL
========================= */

body{
    font-family:'Poppins',sans-serif;
    overflow-x:hidden;
    margin:0;
    padding:0;
}

a{
    text-decoration:none;
}

img{
    max-width:100%;
}

/* =========================
   TOP BAR
========================= */

.top-bar{
    background:#2E7D32;
    padding:8px 0;
    font-size:14px;
}

.top-contact a{
    color:#fff;
    text-decoration:none;
    margin-right:20px;
    transition:0.3s;
}

.top-contact a:hover{
    color:#FFD54F;
}

.top-contact i{
    margin-right:6px;
}

.top-links a{
    color:#fff;
    text-decoration:none;
    margin-left:20px;
    transition:0.3s;
}

.top-links a:hover{
    color:#FFD54F;
}

.top-links i{
    margin-right:5px;
}

/* =========================
   HEADER
========================= */
/*==========new========*/
/* =========================
   HEADER
========================= */

.main-header{
    background:#0b0b0b;
    position:sticky;
    top:0;
    z-index:999;
    padding:12px 0;
    border-bottom:1px solid rgba(108,192,74,.15);
    box-shadow:0 5px 20px rgba(0,0,0,.35);
}

.main-header::after{
    content:'';
    position:absolute;
    left:0;
    bottom:0;
    width:100%;
    height:1px;
    background:linear-gradient(90deg,transparent,#6CC04A,transparent);
}

/* =========================
   LOGO
========================= */

.navbar{
    padding:0;
}

.navbar-brand{
    padding:0;
}

.navbar-brand img{
    height:65px;
    width:auto;
    transition:.3s;
}

/* =========================
   NAVIGATION
========================= */

.navbar-nav{
    align-items:center;
}

.nav-link{
    color:#fff !important;
    font-weight:600;
    font-size:16px;
    margin:0 12px;
    padding:30px 0;
    position:relative;
    transition:.3s;
}

.nav-link:hover{
    color:#6CC04A !important;
}

.nav-link.active{
    color:#6CC04A !important;
}

.nav-link::after{
    content:'';
    position:absolute;
    bottom:18px;
    left:0;
    width:0;
    height:2px;
    background:#6CC04A;
    transition:.3s;
}

.nav-link:hover::after,
.nav-link.active::after{
    width:100%;
}

/* =========================
   DROPDOWN
========================= */

.dropdown-toggle::after{
    display:none;
}

.dropdown-menu{
    background:#111;
    border:none;
    border-radius:10px;
    padding:10px 0;
}

.dropdown-item{
    color:#fff;
    padding:10px 18px;
}

.dropdown-item:hover{
    background:#1d1d1d;
    color:#6CC04A;
}

/* =========================
   SEARCH
========================= */

.search-form{
    display:flex;
    align-items:center;
    background:#171717;
    border-radius:40px;
    overflow:hidden;
}

.search-form input{
    width:220px;
    border:none;
    outline:none;
    background:none;
    color:#fff;
    padding:12px 18px;
}

.search-form input::placeholder{
    color:#888;
}

.search-form button{
    width:55px;
    height:48px;
    border:none;
    background:#6CC04A;
    color:#000;
}

/* =========================
   HEADER RIGHT
========================= */

.header-right{
    display:flex;
    align-items:center;
    gap:15px;
}

/* =========================
   CART
========================= */

.cart-btn{
    width:55px;
    height:55px;
    border-radius:14px;
    background:#6CC04A;
    color:#000 !important;
    display:flex;
    align-items:center;
    justify-content:center;
    position:relative;
    text-decoration:none;
    font-size:22px;
    transition:.3s;
}

.cart-btn:hover{
    transform:translateY(-2px);
}

.cart-count{
    position:absolute;
    top:6px;
    right:6px;
    width:18px;
    height:18px;
    border-radius:50%;
    background:#ff5a00;
    color:#fff;
    font-size:10px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:600;
}

/* =========================
   TOGGLER
========================= */

.navbar-toggler{
    border:none;
    box-shadow:none!important;
    padding:0;
}

.navbar-toggler i{
    color:#fff;
    font-size:26px;
}

.navbar-toggler:focus{
    box-shadow:none;
}

/* ======================================================
                MOBILE
====================================================== */

@media(max-width:991px){

.main-header{
    padding:8px 0;
}

.navbar{
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.navbar-brand{
    margin:0 auto;
}

.navbar-brand img{
    height:42px;
}

.search-form{
    display:none;
}

.header-right{
    gap:8px;
}

.cart-btn{
    width:38px;
    height:38px;
    background:none;
    color:#fff!important;
    box-shadow:none;
    font-size:20px;
}

.cart-count{
    top:-2px;
    right:-2px;
}

.navbar-collapse{
    position:absolute;
    top:100%;
    left:0;
    width:100%;
    background:#111;
    padding:15px;
    border-top:1px solid rgba(255,255,255,.08);
}

.navbar-nav{
    width:100%;
}

.nav-link{
    margin:0;
    padding:14px 5px;
    border-bottom:1px solid rgba(255,255,255,.05);
}

.nav-link::after{
    display:none;
}

.dropdown-menu{
    background:#1a1a1a;
    box-shadow:none;
    border-radius:8px;
}

.dropdown-item{
    padding:12px 15px;
}

}

/* =========================
   LARGE DESKTOP
========================= */

@media(min-width:1200px){

.container{
    max-width:1400px;
}

}


/*=-=============old=====*/
/*.main-header{*/
/*    background:linear-gradient(180deg,#0d0d0d,#050505);*/
/*    position:sticky;*/
/*    top:0;*/
/*    z-index:999;*/
/*    padding:10px 0;*/
/*    border-bottom:1px solid rgba(108,192,74,.20);*/
/*    backdrop-filter:blur(10px);*/
/*    box-shadow:0 5px 25px rgba(0,0,0,.35);*/
/*}*/

/*.main-header::after{*/
/*    content:'';*/
/*    position:absolute;*/
/*    left:0;*/
/*    bottom:0;*/
/*    width:100%;*/
/*    height:1px;*/
/*    background:linear-gradient(*/
/*        90deg,*/
/*        transparent,*/
/*        #6CC04A,*/
/*        transparent*/
/*    );*/
/*}*/

/* =========================
   LOGO
========================= */

/*.navbar-brand img{*/
/*    height:80px;*/
/*    width:auto;*/
/*    filter:drop-shadow(0 0 12px rgba(108,192,74,.35));*/
/*}*/

/* =========================
   NAVIGATION
========================= */

/*.nav-link{*/
/*    color:#fff !important;*/
/*    font-weight:600;*/
/*    font-size:16px;*/
/*    position:relative;*/
/*    margin:0 14px;*/
/*    transition:.3s;*/
/*}*/

/*.nav-link:hover{*/
/*    color:#6CC04A !important;*/
/*}*/

/*.nav-link.active,*/
/*.navbar-nav .active .nav-link{*/
/*    color:#6CC04A !important;*/
/*}*/

/*.nav-link::after{*/
/*    content:'';*/
/*    position:absolute;*/
/*    left:0;*/
/*    bottom:-8px;*/
/*    width:0;*/
/*    height:2px;*/
/*    background:#6CC04A;*/
/*    transition:.3s;*/
/*}*/

/*.nav-link:hover::after,*/
/*.nav-link.active::after{*/
/*    width:100%;*/
/*}*/

/* =========================
   DROPDOWN
========================= */

/*.dropdown-toggle::after{*/
/*    display:none;*/
/*}*/

/*.dropdown-menu{*/
/*    background:#111;*/
/*    border:1px solid rgba(255,255,255,.08);*/
/*    border-radius:10px;*/
/*}*/

/*.dropdown-item{*/
/*    color:#fff;*/
/*}*/

/*.dropdown-item:hover{*/
/*    background:#1b1b1b;*/
/*    color:#6CC04A;*/
/*}*/

/* =========================
   SEARCH BOX
========================= */

/*.search-form{*/
/*    display:flex;*/
/*    align-items:center;*/
/*    background:#111;*/
/*    border:1px solid rgba(255,255,255,.08);*/
/*    border-radius:50px;*/
/*    overflow:hidden;*/
/*    box-shadow:0 5px 20px rgba(0,0,0,.30);*/
/*}*/

/*.search-form input{*/
/*    background:#111;*/
/*    color:#fff;*/
/*    border:none;*/
/*    width:240px;*/
/*    padding:12px 18px;*/
/*    outline:none;*/
/*}*/

/*.search-form input::placeholder{*/
/*    color:#999;*/
/*}*/

/*.search-form button{*/
/*    background:#6CC04A;*/
/*    color:#000;*/
/*    border:none;*/
/*    width:60px;*/
/*    height:48px;*/
/*}*/

/*.search-form button:hover{*/
/*    background:#7ad651;*/
/*}*/

/* =========================
   CART
========================= */

/*.cart-btn{*/
/*    background:#6CC04A;*/
/*    color:#000 !important;*/
/*    padding:12px 24px;*/
/*    border-radius:14px;*/
/*    font-weight:700;*/
/*    display:flex;*/
/*    align-items:center;*/
/*    justify-content:center;*/
/*    gap:8px;*/
/*    text-decoration:none;*/
/*    transition:.3s;*/
/*    box-shadow:0 5px 20px rgba(108,192,74,.35);*/
/*}*/

/*.cart-btn:hover{*/
/*    transform:translateY(-2px);*/
/*    box-shadow:0 10px 25px rgba(108,192,74,.45);*/
/*}*/

/*.cart-count{*/
/*    background:#ff6b00;*/
/*    color:#fff;*/
/*}*/

/* =========================
   TOGGLE BUTTON
========================= */

/*.navbar-toggler{*/
/*    border:none;*/
/*    padding:0;*/
/*    outline:none !important;*/
/*    box-shadow:none !important;*/
/*}*/

/*.navbar-toggler i{*/
/*    color:#fff;*/
/*    font-size:28px;*/
/*}*/

/*.navbar-toggler:focus{*/
/*    outline:none;*/
/*    box-shadow:none !important;*/
/*}*/
/*==========old==============*/
/* =========================
   TOP BAR
========================= */

.top-bar{
    background:linear-gradient(90deg,#6CC04A,#58A73A);
    color:#fff;
    font-weight:600;
}

.top-bar a{
    color:#fff;
    text-decoration:none;
}

/* =========================
   MOBILE
========================= */

@media(max-width:991px){

    .navbar-brand img{
        height:65px;
    }

    .navbar-collapse{
        background:#111;
        margin-top:15px;
        padding:20px;
        border-radius:15px;
    }

    .navbar-nav{
        text-align:left;
    }

    .nav-link{
        padding:14px 0;
        margin:0;
        border-bottom:1px solid rgba(255,255,255,.08);
    }

    .header-right{
        width:100%;
        margin-top:20px;
    }

    .search-form{
        width:100%;
        margin-bottom:15px;
    }

    .search-form input{
        width:100%;
    }

    /*.cart-btn{*/
    /*    width:100%;*/
    /*}*/

}

/*.header-right{*/
/*    display:flex;*/
/*    align-items:center;*/
/*    gap:15px;*/
/*}*/

.header-right{
    display:flex;
    align-items:center;
    gap:15px;
}

/* =========================
   CART
========================= */

.cart-btn{
    position:relative;
    width:58px;
    height:58px;
    background:#6CC04A;
    color:#000 !important;
    border-radius:15px;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    font-size:22px;
    transition:.3s;
    box-shadow:0 5px 20px rgba(108,192,74,.35);
    flex-shrink:0;
}

.cart-btn:hover{
    transform:translateY(-2px);
    color:#000 !important;
    box-shadow:0 10px 25px rgba(108,192,74,.45);
}

.cart-count{
    position:absolute;
    top:8px;
    right:8px;
    min-width:18px;
    height:18px;
    background:#ff6b00;
    color:#fff;
    border-radius:50%;
    font-size:10px;
    font-weight:700;
    display:flex;
    align-items:center;
    justify-content:center;
    line-height:1;
}
@media(max-width:991px){

    .header-right{
        display:flex;
        flex-direction:column;
        width:100%;
        margin-top:20px;
    }

    .search-form{
        width:100%;
    }

    .search-form input{
        width:100%;
    }

    .cart-btn{
        width:58px;
        height:58px;
        margin:auto;
    }

}
@media(max-width:576px){

    .top-bar{
        font-size:13px;
    }

    .navbar-brand img{
        height:55px;
    }

}
/*=*/
.search-form{
    box-shadow:0 0 20px rgba(108,192,74,.15);
}
.cart-btn:hover{
    transform:translateY(-3px) scale(1.05);
}
/* ==========================
   HERO SLIDER
========================== */

.hero-slide{
    position:relative;
    height:650px;
    background-size:cover;
    background-position:center;
    display:flex;
    align-items:center;
}

.overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.55);
}

.hero-content{
    position:relative;
    z-index:2;
    color:#fff;
    max-width:650px;
}

.hero-content span{
    background:#6BCB45;
    color:#000;
    padding:10px 25px;
    border-radius:50px;
    display:inline-block;
    font-weight:600;
    margin-bottom:20px;
}

.hero-content h1{
    font-size:70px;
    font-weight:800;
    margin-bottom:20px;
}

.hero-content p{
    font-size:22px;
    margin-bottom:30px;
}

.hero-btn{
    display:inline-block;
    background:#6BCB45;
    color:#000;
    padding:15px 35px;
    border-radius:10px;
    font-weight:700;
}

.hero-btn:hover{
    background:#57b136;
    color:#000;
}

.carousel-control-prev,
.carousel-control-next{
    width:6%;
}

@media(max-width:991px){

    .hero-slide{
        height:500px;
    }

    .hero-content h1{
        font-size:45px;
    }

    .hero-content p{
        font-size:18px;
    }

}

@media(max-width:576px){

    .hero-slide{
        height:420px;
    }

    .hero-content{
        text-align:center;
    }

    .hero-content h1{
        font-size:32px;
    }

    .hero-content p{
        font-size:16px;
    }

}
/* ==========================
   CATEGORY SECTION
========================== */

.categories-section{
    padding:80px 0;
    background:#fff;
}

.section-title{
    margin-bottom:50px;
}

.section-title h2{
    font-size:40px;
    font-weight:700;
    color:#222;
}

.section-title p{
    color:#777;
}

.category-card{
    background:#fff;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
    transition:0.3s;
    height:100%;
}

.category-card:hover{
    transform:translateY(-8px);
}

.category-image{
    height:220px;
    overflow:hidden;
}

.category-image img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.category-content{
    padding:20px;
    text-align:center;
}

.category-content h4{
    font-size:20px;
    font-weight:600;
    color:#222;
    margin:0;
}
@media(max-width:767px){

    .categories-section{
        padding:50px 0;
    }

    .section-title h2{
        font-size:28px;
    }

    .category-image{
        height:150px;
    }

    .category-content h4{
        font-size:16px;
    }

}

/*===========why chose==========*/
/* ==========================
   WHY CHOOSE US
========================== */

.why-choose{
    padding:80px 0;
    background:#fff;
}

.choose-box{
    background:#fff;
    padding:35px 25px;
    text-align:center;
    border-radius:15px;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
    transition:.3s;
    height:100%;
}

.choose-box:hover{
    transform:translateY(-8px);
    border-bottom:4px solid #0c3f01;
}

.choose-box i{
    font-size:50px;
    color:#0c3f01;
    margin-bottom:20px;
}

.choose-box h4{
    font-size:22px;
    font-weight:600;
    margin-bottom:15px;
}

.choose-box p{
    color:#666;
    line-height:1.8;
}
/* ==========================
   BRANDS SECTION
========================== */

.brands-section{
    padding:80px 0;
    background:#f8f9fa;
}

.brands-slider{
    display:flex;
    gap:25px;
    overflow-x:auto;
    scrollbar-width:none;
    padding:15px 0;
}

.brands-slider::-webkit-scrollbar{
    display:none;
}

.brand-item{
    min-width:180px;
    height:120px;
    background:#fff;
    border-radius:15px;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
    transition:.3s;
}

.brand-item:hover{
    transform:translateY(-5px);
}

.brand-item img{
    max-width:130px;
    max-height:70px;
    object-fit:contain;
}
@media(max-width:767px){

    .brands-section{
        padding:50px 0;
    }

    .brand-item{
        min-width:140px;
        height:90px;
    }

    .brand-item img{
        max-width:100px;
        max-height:50px;
    }

}
/*===========call to action===========*/
/* ==========================
   CTA SECTION
========================== */

.cta-section{
    padding:80px 0;
    background:#fff;
}

.cta-wrapper{
    background:linear-gradient(
        135deg,
        #2E7D32,
        #4CAF50
    );
    padding:60px;
    border-radius:25px;
    overflow:hidden;
    position:relative;
}

.cta-wrapper::before{
    content:'';
    position:absolute;
    width:250px;
    height:250px;
    background:rgba(255,255,255,0.08);
    border-radius:50%;
    top:-80px;
    right:-80px;
}

.cta-content{
    position:relative;
    z-index:2;
}

.cta-tag{
    display:inline-block;
    background:#fff;
    color:#2E7D32;
    padding:8px 20px;
    border-radius:50px;
    font-weight:600;
    margin-bottom:15px;
}

.cta-content h2{
    color:#fff;
    font-size:42px;
    font-weight:700;
    margin-bottom:15px;
}

.cta-content p{
    color:#f5f5f5;
    font-size:17px;
    line-height:1.8;
    margin:0;
}

.cta-buttons{
    display:flex;
    flex-direction:column;
    gap:15px;
    align-items:flex-end;
    position:relative;
    z-index:2;
}

.cta-call-btn{
    background:#fff;
    color:#2E7D32;
    padding:14px 30px;
    border-radius:10px;
    font-weight:600;
    display:inline-block;
}

.cta-contact-btn{
    background:#FF6B00;
    color:#fff;
    padding:14px 30px;
    border-radius:10px;
    font-weight:600;
    display:inline-block;
}

.cta-call-btn:hover,
.cta-contact-btn:hover{
    color:#fff;
    opacity:.9;
}
@media(max-width:991px){

    .cta-wrapper{
        padding:40px 25px;
        text-align:center;
    }

    .cta-content h2{
        font-size:30px;
    }

    .cta-buttons{
        margin-top:30px;
        align-items:center;
    }

}

@media(max-width:576px){

    .cta-content h2{
        font-size:24px;
    }

    .cta-content p{
        font-size:15px;
    }

    .cta-call-btn,
    .cta-contact-btn{
        width:100%;
        text-align:center;
    }

}
/*===========footer=========*/
/* ==========================
   FOOTER
========================== */

.footer{
    background:#0c3f01;
    color:#fff;
    padding-top:70px;
}

.footer-logo{
    height:80px;
    margin-bottom:20px;
    background:#fff;
    padding:8px;
    border-radius:10px;
}

.footer-widget h4{
    font-size:20px;
    font-weight:600;
    margin-bottom:25px;
    color:#fff;
}

.footer-widget p{
    color:#ddd;
    line-height:1.8;
}

.footer-widget ul{
    list-style:none;
    padding:0;
    margin:0;
}

.footer-widget ul li{
    margin-bottom:12px;
}

.footer-widget ul li a{
    color:#ddd;
    transition:.3s;
}

.footer-widget ul li a:hover{
    color:#fff;
    padding-left:5px;
}

.footer-contact li{
    color:#ddd;
}

.footer-contact i{
    width:25px;
    color:#4CAF50;
}

.footer-social{
    margin-top:20px;
}

.footer-social a{
    width:40px;
    height:40px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    background:#2E7D32;
    color:#fff;
    border-radius:50%;
    margin-right:8px;
    transition:.3s;
}

.footer-social a:hover{
    background:#4CAF50;
    transform:translateY(-3px);
}

.footer-bottom{
    margin-top:50px;
    padding:18px 0;
    border-top:1px solid rgba(255,255,255,.1);
    color:#ccc;
    font-size:14px;
}
@media(max-width:767px){

    .footer{
        text-align:center;
    }

    .footer-logo{
        height:70px;
    }

    .footer-bottom{
        text-align:center;
    }

}
/* ==========================
   FLOATING BUTTONS
========================== */

.floating-call,
.floating-whatsapp{
    position:fixed;
    right:20px;
    width:60px;
    height:60px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:24px;
    z-index:9999;
    box-shadow:0 5px 20px rgba(0,0,0,0.25);
    transition:.3s;
}

.floating-call{
    background:#FF6B00;
    bottom:95px;
}

.floating-whatsapp{
    background:#25D366;
    bottom:20px;
}

.floating-call:hover,
.floating-whatsapp:hover{
    transform:scale(1.1);
    color:#fff;
}

/* Mobile */

@media(max-width:767px){

    .floating-call,
    .floating-whatsapp{
        width:55px;
        height:55px;
        font-size:22px;
        right:15px;
    }

    .floating-call{
        bottom:85px;
    }

    .floating-whatsapp{
        bottom:15px;
    }

}
.floating-whatsapp{
    background:#25D366;
    bottom:20px;
    animation:whatsappPulse 2s infinite;
}

@keyframes whatsappPulse{

    0%{
        box-shadow:0 0 0 0 rgba(37,211,102,.7);
    }

    70%{
        box-shadow:0 0 0 15px rgba(37,211,102,0);
    }

    100%{
        box-shadow:0 0 0 0 rgba(37,211,102,0);
    }

}
/*============shop page start===========*/
/* ==========================
   SHOP BANNER
========================== */
/*.shop-banner{*/
/*    background: linear-gradient(135deg,#2e7d32,#1b5e20);*/
/*    padding:80px 0;*/
/*    text-align:center;*/
/*    color:#fff;*/
/*}*/

/*.shop-banner-content h1{*/
/*    font-size:48px;*/
/*    font-weight:700;*/
/*    margin-bottom:15px;*/
/*}*/

/*.shop-banner-content p{*/
/*    font-size:18px;*/
/*    margin:0;*/
/*    opacity:.9;*/
/*}*/
/*.shop-breadcrumb{*/
/*    background:#fff;*/
/*    padding:25px 0;*/
/*    border-bottom:1px solid #eee;*/
/*}*/


/*breadgrum section ============*/
/*.breadcrumb-wrapper{*/
/*    display:flex;*/
/*    justify-content:space-between;*/
/*    align-items:center;*/
/*}*/

/*.breadcrumb-left h2{*/
/*    font-size:28px;*/
/*    font-weight:700;*/
/*    margin-bottom:5px;*/
/*}*/

/*.breadcrumb-left p{*/
/*    margin:0;*/
/*    color:#666;*/
/*}*/

/*.breadcrumb-right{*/
/*    font-size:15px;*/
/*}*/

/*.breadcrumb-right a{*/
/*    color:#2e7d32;*/
/*    text-decoration:none;*/
/*    font-weight:600;*/
/*}*/

/*.breadcrumb-right span{*/
/*    margin:0 5px;*/
/*}*/

/*@media(max-width:768px){*/

/*    .breadcrumb-wrapper{*/
/*        flex-direction:column;*/
/*        text-align:center;*/
/*        gap:10px;*/
/*    }*/

/*}*/
/*breadgrum section end==========*/
/*.shop-main-section{*/
/*    padding:60px 0;*/
/*    background:#f8f9fa;*/
/*}*/

/*.shop-sidebar,*/
/*.shop-products{*/
/*    background:#fff;*/
/*    border-radius:12px;*/
/*    padding:25px;*/
/*    box-shadow:0 5px 20px rgba(0,0,0,.06);*/
/*}*/

/*.sidebar-title{*/
/*    font-size:20px;*/
/*    font-weight:700;*/
/*    margin-bottom:15px;*/
/*}*/

/*.sidebar-list{*/
/*    list-style:none;*/
/*    margin:0;*/
/*    padding:0;*/
/*}*/

/*.sidebar-list li{*/
/*    border-bottom:1px solid #eee;*/
/*}*/

/*.sidebar-list li:last-child{*/
/*    border-bottom:none;*/
/*}*/

/*.sidebar-list li a{*/
/*    display:block;*/
/*    padding:12px 0;*/
/*    color:#333;*/
/*    text-decoration:none;*/
/*    transition:.3s;*/
/*}*/

/*.sidebar-list li a:hover{*/
/*    color:#28a745;*/
/*    padding-left:8px;*/
/*}*/

/*.products-topbar{*/
/*    display:flex;*/
/*    justify-content:space-between;*/
/*    align-items:center;*/
/*    padding-bottom:20px;*/
/*    margin-bottom:25px;*/
/*    border-bottom:1px solid #eee;*/
/*}*/

/*.product-count{*/
/*    font-weight:600;*/
/*}*/

/*.product-sort{*/
/*    width:220px;*/
/*}*/

/*@media(max-width:991px){*/

/*    .shop-sidebar{*/
/*        margin-bottom:25px;*/
/*    }*/

/*}*/

/*@media(max-width:768px){*/

/*    .products-topbar{*/
/*        flex-direction:column;*/
/*        gap:15px;*/
/*    }*/

/*    .product-sort{*/
/*        width:100%;*/
/*    }*/

/*}*/
/*.product-card{*/
/*    background:#fff;*/
/*    border-radius:12px;*/
/*    overflow:hidden;*/
/*    border:1px solid #eee;*/
/*    transition:.3s;*/
/*    height:100%;*/
/*}*/

/*.product-card:hover{*/
/*    transform:translateY(-5px);*/
/*    box-shadow:0 10px 25px rgba(0,0,0,.08);*/
/*}*/

/*.product-image{*/
/*    height:220px;*/
/*    overflow:hidden;*/
/*}*/

/*.product-image img{*/
/*    width:100%;*/
/*    height:100%;*/
/*    object-fit:cover;*/
/*}*/

/*.product-content{*/
/*    padding:15px;*/
/*}*/

/*.product-category{*/
/*    font-size:12px;*/
/*    color:#28a745;*/
/*    font-weight:600;*/
/*    text-transform:uppercase;*/
/*}*/

/*.product-content h5{*/
/*    font-size:17px;*/
/*    margin:10px 0;*/
/*    min-height:45px;*/
/*    font-weight:600;*/
/*}*/

/*.product-price{*/
/*    margin-bottom:10px;*/
/*}*/

/*.old-price{*/
/*    text-decoration:line-through;*/
/*    color:#999;*/
/*    margin-right:8px;*/
/*}*/

/*.sale-price{*/
/*    color:#28a745;*/
/*    font-size:22px;*/
/*    font-weight:700;*/
/*}*/

/*.in-stock{*/
/*    background:#d4edda;*/
/*    color:#155724;*/
/*    padding:5px 10px;*/
/*    border-radius:20px;*/
/*    font-size:12px;*/
/*}*/

/*.out-stock{*/
/*    background:#f8d7da;*/
/*    color:#721c24;*/
/*    padding:5px 10px;*/
/*    border-radius:20px;*/
/*    font-size:12px;*/
/*}*/

/*.product-buttons{*/
/*    margin-top:15px;*/
/*    display:flex;*/
/*    gap:10px;*/
/*}*/

/*================product detail page===========*/
.product-details-section{
    padding:60px 0;
}

.main-product-image img{
    width:100%;
    border:1px solid #eee;
    border-radius:12px;
    padding:15px;
}

.thumbnail-images{
    display:flex;
    gap:10px;
    margin-top:15px;
    flex-wrap:wrap;
}

.thumbnail-img{
    width:80px;
    height:80px;
    object-fit:cover;
    border:1px solid #ddd;
    border-radius:8px;
    cursor:pointer;
}

.product-category{
    color:#2E7D32;
    font-weight:600;
}

.product-info h1{
    margin:15px 0;
}

.old-price{
    text-decoration:line-through;
    color:#999;
    margin-right:10px;
}

.sale-price{
    color:#2E7D32;
    font-size:28px;
    font-weight:700;
}

.product-description{
    margin-top:20px;
    line-height:1.8;
}

.qty-box{
    max-width:120px;
    margin-top:20px;
}

.exchange-box{
    background:#f1fff1;
    border:1px solid #cce5cc;
    padding:20px;
    border-radius:10px;
}

.related-products{
    padding:50px 0;
}

.section-title{
    margin-bottom:30px;
}
.related-products .product-card{
    height:100%;
}
.product-card img{
    height:250px;
    object-fit:contain;
}

/*=========product specs======*/
.product-extra-info{
    padding:50px 0;
}

.info-card{
    background:#fff;
    border:1px solid #e5e5e5;
    border-radius:12px;
    padding:25px;
    height:100%;
}

.info-card h3{
    font-size:26px;
    font-weight:700;
    margin-bottom:20px;
    color:#2E7D32;
}

.info-card table{
    margin-bottom:0;
}

.info-card th{
    width:35%;
    background:#f8f8f8;
}

.feature-list{
    list-style:none;
    padding:0;
    margin:0;
}

.feature-list li{
    padding:12px;
    margin-bottom:10px;
    background:#f8fff8;
    border-left:4px solid #2E7D32;
    border-radius:6px;
}

.feature-list i{
    color:#2E7D32;
    margin-right:8px;
}

/*=====================related produts======*/
.related-products-section{
    padding:60px 0;
    background:#f8f9fa;
}

.section-title{
    margin-bottom:40px;
}

.section-title h2{
    font-size:36px;
    font-weight:700;
    color:#222;
}

.section-title p{
    color:#666;
}

.related-card{
    background:#fff;
    border-radius:12px;
    overflow:hidden;
    transition:.3s;
    border:1px solid #eee;
    height:100%;
}

.related-card:hover{
    transform:translateY(-5px);
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.related-image{
    height:220px;
    padding:15px;
    background:#fff;
}

.related-image img{
    width:100%;
    height:100%;
    object-fit:contain;
}

.related-content{
    padding:15px;
}

.related-content h5{
    font-size:18px;
    min-height:50px;
    margin-bottom:10px;
}

.related-price{
    margin-bottom:15px;
}

.related-price .old-price{
    color:#999;
    text-decoration:line-through;
    margin-right:8px;
}

.related-price .sale-price{
    color:#2E7D32;
    font-size:24px;
    font-weight:700;
}

@media(max-width:768px){

    .related-image{
        height:180px;
    }

}
/*==============cart.php===========*/
.cart-banner{
    background:#2E7D32;
    color:#fff;
    padding:60px 0;
}

.cart-section{
    padding:60px 0;
}

.cart-table img{
    width:80px;
    height:80px;
    object-fit:contain;
}

.cart-product{
    display:flex;
    align-items:center;
    gap:15px;
}

.qty-box{
    display:flex;
    align-items:center;
}

.qty-box input{
    width:50px;
    text-align:center;
}

.qty-btn{
    width:35px;
    height:35px;
    background:#2E7D32;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
}

.remove-btn{
    color:red;
    font-size:20px;
}

.cart-summary{
    margin-top:30px;
    max-width:350px;
    margin-left:auto;
    background:#fff;
    border:1px solid #eee;
    padding:25px;
    border-radius:10px;
}

.summary-row{
    display:flex;
    justify-content:space-between;
    margin-bottom:20px;
}

.empty-cart{
    text-align:center;
    padding:80px 20px;
}

.empty-cart i{
    font-size:80px;
    color:#2E7D32;
    margin-bottom:20px;
}
/*==========chekuot.php==========*/
/*.checkout-section{*/
/*    padding:60px 0;*/
/*}*/

/*.checkout-card,*/
/*.order-summary{*/
/*    background:#fff;*/
/*    border:1px solid #eee;*/
/*    border-radius:12px;*/
/*    padding:25px;*/
/*}*/

/*.checkout-card h3,*/
/*.order-summary h3{*/
/*    margin-bottom:25px;*/
/*    font-weight:700;*/
/*}*/

/*.summary-item{*/
/*    display:flex;*/
/*    justify-content:space-between;*/
/*    margin-bottom:15px;*/
/*}*/

/*.summary-total{*/
/*    display:flex;*/
/*    justify-content:space-between;*/
/*    font-size:20px;*/
/*}*/

/*===========privacypolocy & tearms  return & refunt========*/
.policy-banner{
    background:#2E7D32;
    color:#fff;
    padding:80px 0;
}

.policy-banner h1{
    font-size:48px;
    font-weight:700;
}

.policy-section{
    padding:60px 0;
}

.policy-content{
    background:#fff;
    padding:40px;
    border-radius:12px;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
}

.policy-content h3{
    margin-top:30px;
    margin-bottom:15px;
    color:#2E7D32;
    font-weight:700;
}

.policy-content p,
.policy-content li{
    line-height:1.9;
    color:#444;
}

.policy-content ul{
    padding-left:20px;
}

@media(max-width:768px){

    .policy-banner h1{
        font-size:32px;
    }

    .policy-content{
        padding:25px;
    }

}
/*========about.php=======*/
.about-banner{
    background:#2E7D32;
    color:#fff;
    padding:80px 0;
}

.about-banner h1{
    font-size:48px;
    font-weight:700;
}

.about-section{
    padding:80px 0;
}

.about-content h2{
    font-size:38px;
    margin-bottom:20px;
    font-weight:700;
}

.about-content p{
    line-height:1.9;
    color:#555;
}

.why-choose-us{
    background:#f8f9fa;
    padding:80px 0;
}

.feature-box{
    background:#fff;
    padding:30px;
    border-radius:12px;
    text-align:center;
    height:100%;
    box-shadow:0 5px 15px rgba(0,0,0,.05);
}

.feature-box i{
    font-size:45px;
    color:#2E7D32;
    margin-bottom:15px;
}

.about-stats{
    padding:80px 0;
}

.stat-box h2{
    color:#2E7D32;
    font-size:42px;
    font-weight:700;
}

.about-cta{
    background:#2E7D32;
    color:#fff;
    padding:80px 0;
}

.about-cta h2{
    margin-bottom:15px;
}

@media(max-width:768px){

    .about-banner h1{
        font-size:32px;
    }

    .about-content h2{
        font-size:28px;
        margin-top:20px;
    }

}
/*=====contact.php=========*/
.contact-banner{
    background:#2E7D32;
    color:#fff;
    padding:80px 0;
}

.contact-banner h1{
    font-size:48px;
    font-weight:700;
}

.contact-section{
    padding:80px 0;
}

.contact-info,
.contact-form-box{
    background:#fff;
    padding:30px;
    border-radius:12px;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
}

.contact-info h3,
.contact-form-box h3{
    margin-bottom:20px;
}

.contact-info p{
    margin-bottom:15px;
    font-size:16px;
}

.contact-info i{
    color:#2E7D32;
    width:25px;
}

@media(max-width:768px){

    .contact-banner h1{
        font-size:32px;
    }

    .contact-info{
        margin-bottom:25px;
    }

}

/*==================*/
.timeline-item.cancelled .timeline-icon{

background:#dc3545 !important;

color:#fff;

}

.timeline-item.cancelled h5{

color:#dc3545;

font-weight:700;

}


/*==========login form===============*/
.register-popup{
    border-radius:18px;
    overflow:hidden;
}

.register-popup h3{
    font-weight:700;
    margin-bottom:10px;
}

.register-popup p{
    color:#666;
    font-size:15px;
}

.register-popup .btn{
    padding:12px;
    border-radius:8px;
    font-weight:600;
}
@media (max-width:767px){

.top-links{

display:flex;

justify-content:center;

gap:15px;

flex-wrap:wrap;

}

.top-links a{

font-size:13px;

color:#fff;

}

}