body{
    background: linear-gradient(
        135deg,
        #f8fff8 0%,
        #eefcf1 50%,
        #f6fff9 100%
    );
}

.hero-section{
    min-height:90vh;
    display:flex;
    align-items:center;
}

.rounded-4{
    border-radius:24px !important;
}

.glass-nav{
    background: rgba(17,135,77,0.85);
    backdrop-filter: blur(15px);
}

.category-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.4s;
    text-align:center;
}

.category-card img{
    width:100%;
    height:220px;
    object-fit:cover;
}

.category-card h5{
    padding:20px;
    margin:0;
    font-weight:600;
}

.category-card:hover{
    transform:translateY(-10px);
}


.offer-box{
    background:linear-gradient(
        135deg,
        #0f9d58,
        #34a853
    );
    color:white;
    padding:60px;
    border-radius:30px;
}

.whatsapp-btn{
position:fixed;
bottom:25px;
right:25px;
width:65px;
height:65px;
background:#25D366;
color:white;
font-size:30px;
display:flex;
align-items:center;
justify-content:center;
border-radius:50%;
text-decoration:none;
z-index:999;
box-shadow:0 10px 25px rgba(0,0,0,.2);
}

.product-card{
    height:100%;
}

.product-card img{
    height:260px;
    object-fit:cover;
}

.sale-badge{
    position:absolute;
    top:15px;
    left:15px;
    background:#ff4d4d;
    color:white;
    padding:5px 10px;
    border-radius:20px;
    font-size:12px;
    z-index:2;
}

.product-card{
    position:relative;
    border:none;
    border-radius:20px;
    overflow:hidden;
    transition:.4s;
}

.product-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(0,0,0,.15);
}

.product-card img{
    height:250px;
    object-fit:cover;
}