.ts-product-tabs{
    margin:60px 0;
}

.ts-tab-nav{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    border-bottom:1px solid #e5e5e5;
    margin-bottom:30px;
}

.ts-tab-button{
    background:#f7f7f7;
    border:none;
    padding:14px 24px;
    cursor:pointer;
    border-radius:8px 8px 0 0;
    font-size:15px;
    font-weight:600;
    transition:.3s;
}

.ts-tab-button:hover{
    background:#ececec;
}

.ts-tab-button.active{
    background:#0a6cff;
    color:#fff;
}

.ts-tab-content{
    display:none;
    background:#fff;
    border:1px solid #eee;
    padding:30px;
    border-radius:12px;
    line-height:1.9;
    font-size:15px;
}

.ts-tab-content.active{
    display:block;
}

.ts-tab-content h2,
.ts-tab-content h3{
    margin-top:0;
}

.ts-highlights{
    margin-top:0px;
    padding-top:0px;
    border-top:1px solid #eee;
}

.ts-highlights h3{
    margin-bottom:20px;
}

.ts-inclusions ul,
.ts-exclusions ul{
    padding-left:20px;
}

.ts-inclusions li{
    color:#198754;
    margin-bottom:10px;
}

.ts-exclusions li{
    color:#dc3545;
    margin-bottom:10px;
}
.ts-tab-content ul li::before {
    content: "\f105";
    font: normal normal normal 14px / 1 'FontAwesome';
    position: absolute;
    margin-left: -15px;
    margin-top: 7px;
}

@media(max-width:768px){

    .ts-tab-nav{
        display:grid;
        grid-template-columns:1fr 1fr;
    }

    .ts-tab-button{
        border-radius:8px;
    }

}