
    .section-title{
    position: relative;
}

.section-title::after{
    content:"";
    width:60px;
    height:3px;
    background:#f5a623;
    display:block;
    margin:10px auto;
}

.product-card0{
    border-radius:15px;
    overflow:hidden;
    background:#fff;
    box-shadow:0 2px 6px rgba(0,0,0,0.1);
    display:flex;
    flex-direction:column;
    height:100%;
}

.product-img{
    position:relative;
    width:100%;
    aspect-ratio: 3/4;   /* 🔥 prevents image cut */
    overflow:hidden;
}
.product-img img{
    width:100%;
    height:100%;
    object-fit:cover;   /* 🔥 keeps image full */
    border-radius:18px;
}

.badge-offer{
    position:absolute;
    top:10px;
    left:10px;
    background:#e9f0ff;
    padding:4px 8px;
    font-size:12px;
    border-radius:6px;
}

.rating{
    position:absolute;
    bottom:10px;
    left:10px;
    background:#fff;
    padding:3px 8px;
    border-radius:20px;
    font-size:12px;
}

.price{
    font-weight:600;
}

.old-price{
    text-decoration:line-through;
    color:#999;
    font-size:13px;
    margin-left:5px;
}

.discount{
    color:green;
    font-size:13px;
    margin-left:5px;
}

.best-price{
    color:green;
    font-size:13px;
}

.title{
    font-size:14px;
    color:#555;
}

.add-cart{
    border-top:1px solid #eee;
    padding:10px;
    text-align:center;
    font-weight:600;
    cursor:pointer;
    position:relative;
}

.wish{
    position:absolute;
    right:15px;
}

@media(max-width:576px){
    .product-img{
        aspect-ratio: 2/3;
    }
}