.av-product-section{
    background:#f8fbff;
}

.av-product-card{
    background:#fff;
    border-radius:25px;
    padding:50px;
    margin-bottom:50px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    transition:.4s;
}

.av-product-card:hover{
    transform:translateY(-8px);
}

.av-product-img{
    overflow:hidden;
    border-radius:20px;
}

.av-product-img img{
    width:100%;
    transition:.5s;
}

.av-product-card:hover img{
    transform:scale(1.05);
}

.av-category{
    background:#0d6efd;
    color:#fff;
    padding:8px 20px;
    border-radius:30px;
    display:inline-block;
    font-size:14px;
    margin-bottom:15px;
}

.av-product-title{
    font-size:42px;
    font-weight:700;
    margin-bottom:15px;
}

.av-composition{
    font-size:17px;
    line-height:30px;
    color:#444;
}

.av-info-grid{
    display:flex;
    gap:20px;
    margin:25px 0;
}

.av-info-item{
    background:#f4f7fc;
    padding:15px 25px;
    border-radius:15px;
}

.av-info-item span{
    color:#666;
    font-size:14px;
}

.av-info-item h6{
    margin-top:5px;
    margin-bottom:0;
    font-weight:700;
}

.av-description{
    color:#666;
    line-height:30px;
    margin-bottom:25px;
}

.theme-btn{
    background:#0d6efd;
    color:#fff;
    padding:14px 30px;
    border-radius:50px;
    text-decoration:none;
    display:inline-block;
    transition:.3s;
}

.theme-btn:hover{
    background:#0047b3;
    color:#fff;
}

@media(max-width:768px){

    .av-product-card{
        padding:25px;
    }

    .av-product-title{
        font-size:28px;
    }

    .av-info-grid{
        flex-direction:column;
    }
}