.product-tabs {
    margin: 32px 0;
    font-family: inherit;
}

.tabs-nav {
    display: flex;
    gap: 32px;
    padding-left: 0;
    list-style: none;
    padding-bottom: 18px;
}

.tabs-nav li {
    padding: 0 0 10px 0;
    font-weight: 500;
    color: var(--color-font);
    cursor: pointer;
    position: relative;
    font-size: 1.1rem;
    transition: color 0.2s;
}

.tabs-nav li.active {
    color: var(--color-font-active);
}

.tabs-nav li.active::after {
    content: "";
    display: block;
    height: 8px;
    width: 100%;
    background: var(--color-sec-active);
    border-radius: 19px;
    position: absolute;
    left: 0;
    bottom: -2px;
}

.tabs-content {
    border-radius: 8px;
    min-height: 120px;
}

.tab-pane {
    display: none;
    color: var(--color-overlay);
    font-size: 1.08rem;
    line-height: 1.7;
}

.tab-pane.active {
    display: block;
}

.tab-pane.active p {
    padding-top: 31px;
    padding-bottom: 31px;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.tab-pane .highlight {
    color: var(--color-sec);
    font-weight: 700;
    background: none;
}

@media (max-width: 600px) {
    .tabs-nav {
        gap: 12px;
        font-size: 0.98rem;
    }

    .tabs-content {
        padding: 16px 8px;
    }
}