body{
font-family:'Poppins',sans-serif;
overflow-x:hidden;
}

.slider-img{
height:500px;
object-fit:cover;
}

.category-box{
background:#fff;
padding:30px;
text-align:center;
border-radius:15px;
box-shadow:0 10px 30px rgba(0,0,0,.1);
transition:.4s;
}

.category-box:hover{
transform:translateY(-10px);
}

.category-box i{
font-size:50px;
color:#198754;
margin-bottom:15px;
}

.about-section{
background:#f8fff9;
}

.vision-box{
padding:25px;
background:white;
border-radius:15px;
box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.product-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.4s;
    height:100%;
}

.product-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(0,0,0,.15);
}

.product-img{
    background:#f8f9fa;
    padding:20px;
    text-align:center;
}

.product-img img{
    height:220px;
    object-fit:contain;
    transition:.4s;
}

.product-card:hover .product-img img{
    transform:scale(1.08);
}

.product-content{
    padding:20px;
}

.old-price{
    text-decoration:line-through;
    color:#999;
    margin-right:10px;
}

.new-price{
    color:#198754;
    font-size:24px;
    font-weight:700;
}

.price-box{
    margin-top:10px;
}

.offer-section{
padding:80px 0;
background:linear-gradient(45deg,#198754,#0d6efd);
color:white;
}

.review-box{
padding:25px;
border-radius:15px;
background:white;
box-shadow:0 5px 20px rgba(0,0,0,.1);
text-align:center;
}

.blog-card{
padding:25px;
background:white;
border-radius:15px;
box-shadow:0 10px 20px rgba(0,0,0,.08);
}

.footer{
background:#111;
color:white;
padding:60px 0 20px;
}

.footer ul{
list-style:none;
padding:0;
}

.footer li{
margin-bottom:10px;
}

@media(max-width:768px){

.slider-img{
height:200px;
}

.navbar-brand{
font-size:15px;
}

}