/*==================================================
GENERAL
==================================================*/

body{
    font-family:'Segoe UI',sans-serif;
    font-size:15px;
    color:#333;
    background:#fff;
}

a{
    text-decoration:none;
}

ul{
    margin:0;
    padding:0;
    list-style:none;
}

/*==================================================
TOP OFFER BAR
==================================================*/

.top-offer-bar{
    background:#2e7d32;
    position:relative;
    z-index:999;
}

.offer-slide{
    height:46px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:15px;
    font-weight:600;
    text-align:center;
    padding:0 60px;
}

.offer-slide strong{
    color:#ffd54f;
}

.offer-nav{
    width:40px;
    opacity:1;
}

.offer-nav i{
    color:#fff;
    font-size:14px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon{
    display:none;
}

/*==================================================
HEADER V2
==================================================*/

.main-header{
    background:#fff;
    border-bottom:1px solid #eee;
    position:sticky;
    top:0;
    z-index:999;
}

.header-inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
    min-height:90px;
    gap:30px;
}

.header-logo img{
    height:70px;
    width:auto;
    object-fit:contain;
}

.header-menu{
    flex:1;
    display:flex;
    justify-content:center;
}

.header-menu ul{
    display:flex;
    align-items:center;
    gap:35px;
    margin:0;
}

.header-menu ul li a{
    color:#222;
    font-size:15px;
    font-weight:600;
    transition:.3s;
}

.header-menu ul li a:hover{
    color:#2e7d32;
}

.header-actions{
    display:flex;
    align-items:center;
    gap:12px;
}

.header-search{
    display:flex;
    align-items:center;
    border:1px solid #ddd;
    border-radius:40px;
    overflow:hidden;
}

.header-search input{
    width:260px;
    border:none;
    outline:none;
    padding:12px 18px;
}

.header-search button{
    width:50px;
    height:48px;
    border:none;
    background:#2e7d32;
    color:#fff;
}

.header-icon{
    width:46px;
    height:46px;
    border:1px solid #ddd;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#222;
    transition:.3s;
}

.header-icon:hover{
    background:#2e7d32;
    color:#fff;
    border-color:#2e7d32;
}

.header-icon .icon-badge{
    color: rgba(0, 0, 0, 0.774);
    margin-bottom: 15px;
    font-weight: 600;
}

.header-icon:hover .icon-badge{
    color: #fff;
}
/*==================================================
HEADER RESPONSIVE
==================================================*/

.mobile-menu-btn{
    border:none;
    background:none;
    font-size:22px;
    color:#222;
}

.mobile-menu{
    padding:15px 0;
}

.mobile-menu li{
    border-bottom:1px solid #eee;
}

.mobile-menu li a{
    display:block;
    padding:12px 0;
    color:#222;
    font-weight:500;
}

@media(min-width:992px){

    .header-inner{
        display:flex;
        align-items:center;
        justify-content:space-between;
        gap:25px;
    }

    .header-menu ul{
        display:flex;
        gap:30px;
        margin:0;
    }
}

@media(max-width:991px){

    .header-inner{
        min-height:75px;
        display:grid;
        grid-template-columns:40px 1fr auto;
        align-items:center;
    }

    .header-logo{
        text-align:center;
    }

    .header-logo img{
        height:50px;
    }

    .header-actions{
        display:flex;
        gap:8px;
    }

    .header-icon{
        width:38px;
        height:38px;
    }
}
/*==================================================
HERO SLIDER
==================================================*/

.hero-slider{
    position:relative;
}

.slider-image{
    height:650px;
    object-fit:cover;
}

.carousel-caption{
    bottom:20%;
    text-align:left;
}

.carousel-caption h1{
    font-size:60px;
    font-weight:700;
}

.carousel-caption p{
    font-size:20px;
    margin-bottom:20px;
}

/*==================================================
SECTION HEADING
==================================================*/

.section-heading{
    text-align:center;
    margin-bottom:50px;
}

.section-heading h2{
    font-size:36px;
    font-weight:700;
    color:#222;
    margin-bottom:12px;
}

.section-heading p{
    font-size:16px;
    color:#777;
    max-width:650px;
    margin:0 auto;
}

/*==================================================
CATEGORY SECTION
==================================================*/

.shop-category{
    background:#fff;
}

.category-scroll-wrapper{
    overflow-x:auto;
    overflow-y:hidden;
    padding-bottom:10px;

    /* Firefox */
    scrollbar-width:none;

    /* IE & Edge */
    -ms-overflow-style:none;
}

/* Chrome, Safari, Opera */
.category-scroll-wrapper::-webkit-scrollbar{
    display:none;
}

.category-scroll{
    display:flex;
    gap:25px;
    width:max-content;
    margin:0 auto;
}

.category-item{
    flex:0 0 160px;
    text-align:center;
}

.category-circle-img{
    width:140px;
    height:140px;
    border-radius:50%;
    object-fit:cover;
    border:4px solid #f5f5f5;
    box-shadow:0 5px 15px rgba(0,0,0,.08);
    transition:.3s;
}

.category-item:hover .category-circle-img{
    transform:translateY(-5px);
}

.category-name{
    margin-top:15px;
    font-size:15px;
    font-weight:600;
    color:#222;
    text-align:center;
}

/*==================================================
PRODUCT CARD
==================================================*/
.product-card{
    background:#fff;
    border-radius:12px;
    overflow:hidden;
    border:1px solid #eee;
    transition:.3s;
    height:100%;
}

.product-image img{
    width:100%;
    height:298px;
    object-fit:cover;
}

.product-content{
    padding:15px;
}

.wishlist-btn{
    position: relative;
    float: left;
    top:10px;
    left:10px;
    width:36px;
    height:36px;
    background:#fff;
    border-radius:50%;
    align-items:center;
    justify-content:center;
    box-shadow:0 2px 8px rgba(0,0,0,.08);
    opacity:1 !important;
    visibility:visible !important;
    z-index:999;
    transition-duration: 0.5s;  
} 

.wishlist-btn .far {
    position: relative;
    float: left;
    top:10px;
    left:10px;
}

.wishlist-btn:hover {
   background: #d0ece5;
   transition-duration: 0.5s;
}
/*-------------------------------wishlist page---------------------*/
.wishlist-card{
    border:none;
    border-radius:16px;
    overflow:hidden;
    transition:.3s;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
}

.wishlist-card:hover{
    transform:translateY(-5px);
}

.wishlist-image{
    height:250px;
    overflow:hidden;
}

.wishlist-image img{
    width:100%;
    height:100%;
    object-fit:contain;
    padding:15px;
}

.wishlist-title{
    font-size:15px;
    font-weight:600;
    min-height:45px;
}

.wishlist-price{
    color:#2E7D32;
    font-size:22px;
    font-weight:700;
    margin-top:10px;
}

.empty-wishlist{
    background:#fff;
    border-radius:20px;
    padding:60px 20px;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
}
/*-------------------------------------------------------*/
.discount-badge{
    position: relative;
    float: right;
    top:10px;
    right:10px;

    background:rgba(25,135,84,0.90);
    backdrop-filter:blur(4px);
    color:#fff;

    font-size:12px;
    font-weight:600;

    padding:6px 10px;

    border-radius:20px;
}

.product-brand{
    color:#888;
    font-size:13px;
    margin-bottom:5px;
}

.product-title{
    font-size: 15px;
    font-weight: 600;
    min-height: 41px;
    margin-left: 8px;
    margin-top: 8px;
}

.selling-price{
    color:#198754;
    font-size:22px;
    font-weight:700;
}

.mrp-price{
color:#999;
text-decoration:line-through;
margin-left:8px;
}


.product-category{
    font-size:13px;
    color:#777;
    margin: 5px 10px;
    font-weight: 700;
}

.product-short-desc{
    font-size:13px;
    color:#666;
    min-height:38px;
    margin: 5px 10px 0px 10px;
    display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
    overflow:hidden;
}

.price-rating-row{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    margin-left: 10px;
    margin-right: 10px;
}

.price-block{
    display:flex;
    align-items:center;
    gap:8px;
}

.selling-price{
    font-size:26px;
    font-weight:700;
    color:#198754;
}

.mrp-price{
    font-size:14px;
    color:#999;
    text-decoration:line-through;
}

.rating-block{
    font-size:14px;
    font-weight:600;
    color:#333;
}

.rating-block i{
    color:#ffb400;
}

.stock-text{
    font-size:13px;
    font-weight:500;
    margin: 10px 10px;
}

.in-stock{
    color:#198754;
}

.out-stock{
    color:#dc3545;
}

.variant-label{
    font-size:12px;
    color:#0d6efd;
    margin-bottom:12px;
}

/*==================================================
CATEGORY HERO
==================================================*/
.category-hero img{
width:100%;
height:400px;
object-fit:cover;
}

.category-page{
background:#f8f9fa;
}



/* .product-card:hover{
transform:translateY(-5px);
box-shadow:0 10px 25px rgba(0,0,0,.08);
} */




/*==================================================
FOOTER
==================================================*/

footer{
    background:#1f1f1f;
    color:#fff;
}

footer h5,
footer h6{
    margin-bottom:15px;
}

footer a{
    color:#fff;
}

footer a:hover{
    color:#4caf50;
}

/*==================================================
RESPONSIVE
==================================================*/

@media(max-width:991px){

    .header-inner{
        flex-direction:column;
    }

    .header-menu ul{
        gap:15px;
        flex-wrap:wrap;
        justify-content:center;
    }

    .header-search input{
        width:160px;
    }

    .category-item{
        flex:0 0 140px;
    }

    .category-circle-img{
        width:120px;
        height:120px;
    }
}

@media(max-width:768px){

    .offer-slide{
        font-size:12px;
        height:40px;
        padding:0 40px;
    }

    .slider-image{
        height:350px;
    }

    .carousel-caption{
        bottom:10%;
    }

    .carousel-caption h1{
        font-size:28px;
    }

    .carousel-caption p{
        font-size:14px;
    }

    .header-actions{
        flex-wrap:wrap;
        justify-content:center;
    }

    .header-search{
        width:100%;
    }

    .header-search input{
        width:100%;
    }

    .header-menu ul{
        flex-direction:column;
        gap:10px;
    }

    .category-item{
        flex:0 0 120px;
    }

    .category-circle-img{
        width:100px;
        height:100px;
    }

    .category-name{
        font-size:13px;
    }
}
