detail-tabs .tabs-heading-item{
    display: flex;
    position: relative;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 15px;
    cursor: pointer;
    text-align: center;
}
detail-tabs .tabs-heading-item img{
    width: 60px;
}
detail-tabs .tabs-heading{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 10px;
    border-bottom:1px solid rgba(var(--color-entry-line),0.2)
}
detail-tabs .tabs-heading-item.active::after{
    content: '';
    width: 100%;
    height: 1px;
    bottom: -1px;
    position: absolute;
    background-color: rgba(var(--color-entry-line));
}

detail-tabs .tabs-body{
    margin-top: 20px;
}

detail-tabs .product-tabs-item{
    display: none;
}

detail-tabs .product-tabs-item.active{
    display: block;
}