/*==============================================
 WOWOOOCART PREMIUM PRODUCT CARD
 Version 1.0
==============================================*/

.wow-products-section{
    padding:80px 0;
    background:#f8fafc;
}

.wow-section-heading{
    text-align:center;
    margin-bottom:45px;
}

.wow-section-heading h2{
    font-size:34px;
    color:#1f2937;
    margin-bottom:10px;
}

.wow-section-heading p{
    color:#6b7280;
    font-size:17px;
}

.wow-product-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.wow-product-card{

    background:#fff;

    border-radius:20px;

    overflow:hidden;

    position:relative;

    transition:.35s;

    box-shadow:0 12px 35px rgba(0,0,0,.08);

}

.wow-product-card:hover{

    transform:translateY(-8px);

    box-shadow:0 22px 45px rgba(0,0,0,.14);

}

.wow-product-image{

    padding:25px;

    background:#ffffff;

}

.wow-product-image img{

    width:100%;

    aspect-ratio:1/1;

    object-fit:contain;

    display:block;

}

.wow-product-content{

    padding:20px;

}

.wow-product-content h3{

    margin:0 0 15px;

    font-size:20px;

    color:#222;

}

.wow-price{

    display:flex;

    align-items:center;

    gap:12px;

    margin-bottom:20px;

}

.wow-price del{

    color:#9ca3af;

    font-size:15px;

}

.wow-price strong{

    color:#ff6b00;

    font-size:25px;

}

.wow-buy-btn{

    display:block;

    width:100%;

    text-align:center;

    background:#ff6b00;

    color:#fff;

    padding:14px;

    border-radius:12px;

    font-weight:700;

    text-decoration:none;

    transition:.3s;

}

.wow-buy-btn:hover{

    background:#e55d00;

}

.wow-product-badge{

    position:absolute;

    top:15px;

    left:15px;

    background:#e11d48;

    color:#fff;

    font-size:13px;

    font-weight:700;

    padding:6px 12px;

    border-radius:30px;

}