/*=====================================
PRODUCT TABS
=====================================*/

.product-tabs{
    padding:70px 0;
    background:#f8f9fb;
}

.product-tab-title{
    font-size:28px;
    font-weight:800;
    color:#15161D;
    margin-bottom:25px;
    padding-bottom:12px;
    border-bottom:3px solid #D10024;
    position:relative;
}

.product-tab-title::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-3px;
    width:80px;
    height:3px;
    background:#15161D;
}

.product-tab-item{
    display:flex;
    align-items:center;
    gap:18px;
    background:#fff;
    border:1px solid #ececec;
    border-radius:16px;
    padding:18px;
    margin-bottom:18px;
    text-decoration:none;
    transition:.35s;
}

.product-tab-item:hover{
    border-color:#D10024;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    transform:translateY(-5px);
}

.product-tab-image{
    width:110px;
    height:110px;
    min-width:110px;
    background:#fafafa;
    border-radius:12px;
    display:flex;
    justify-content:center;
    align-items:center;
    overflow:hidden;
}

.product-tab-image img{
    max-width:90%;
    max-height:90%;
    object-fit:contain;
    transition:.35s;
}

.product-tab-item:hover .product-tab-image img{
    transform:scale(1.08);
}

.product-tab-content{
    flex:1;
}

.product-tab-content small{
    display:block;
    color:#D10024;
    font-size:13px;
    font-weight:600;
    text-transform:uppercase;
    margin-bottom:8px;
}

.product-tab-content h4{
    font-size:17px;
    color:#15161D;
    margin-bottom:10px;
    line-height:1.4;
    font-weight:700;
}

.stars{
    color:#FFC107;
    font-size:13px;
    margin-bottom:10px;
}

.price{
    display:flex;
    align-items:center;
    gap:10px;
    color:#D10024;
    font-size:22px;
    font-weight:800;
}

.price del{
    color:#999;
    font-size:15px;
    font-weight:500;
}

/*=========================
TABLET
=========================*/

@media(max-width:991px){

.product-tabs{
    padding:60px 0;
}

.product-tab-title{
    margin-top:20px;
}

}

/*=========================
MOBILE
=========================*/

@media(max-width:576px){

.product-tabs{
    padding:45px 0;
}

.product-tab-item{
    flex-direction:column;
    text-align:center;
}

.product-tab-image{
    width:130px;
    height:130px;
}

.product-tab-content h4{
    font-size:16px;
}

.price{
    justify-content:center;
    font-size:20px;
}

}