.product-tabs {
    padding: 60px 0;
    background: transparent;
}

.container,
.tabs-container {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0 20px;
}

.tabs-nav {
    display: flex;
    border-bottom: 1px solid var(--wp--preset--color--theme-light-grey);
    margin-bottom: 40px;
    gap: 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    width: 100%;
    justify-content: space-between;
}

.tab-btn {
    background: none;
    border: none;
    padding: 20px 0;
    cursor: pointer;
    font-size: var(--wp--preset--font-size--text-medium);
    font-weight: 400;
    color: var(--wp--preset--color--theme-semi-grey);
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
    position: relative;
    flex: 1;
    text-align: center;
    min-width: 0;

}

.tab-btn:hover {
    color: var(--wp--preset--color--theme-grey);
    background: none;
}

.tab-btn.active {
    color: var(--wp--preset--color--theme-black);
    border-bottom-color: var(--wp--preset--color--theme-black);
    background: none;
    font-weight: 500;
}

.tab-panel {
    display: none;
    animation: fadeIn 0.3s ease-in-out;
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* TAB NOTRE FORMULE */
.tab-content-formule {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 4%;
    width: 100%;
}

.tab-content-formule .formule-title {
    width: 32%;
    max-width: 400px;
    min-width: 220px;
    font-size: var(--wp--preset--font-size--h-3);
    font-weight: 600;
    color: var(--wp--preset--color--theme-black);
    margin-bottom: 0;
    text-align: left;
    flex-shrink: 0;
    line-height: 1.3;
    display: flex;
    align-items: center;
}

.formule-items {
    display: flex;
    gap: 30px;
    flex: 1;
    align-items: flex-start;
    overflow-x: auto;
    padding: 10px 0!important;
    position: relative;
    max-width: 65%;
}

.formule-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
}

.formule-item-image {
    flex-shrink: 0;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    border: 1px solid #FEF2DE;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0px;
    padding: 5px;
}

.formule-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.formule-item-content {
    flex: 1;
    width: 100%;
    padding: 0px 20px;
}

.formule-item-title {
    font-size: var(--wp--preset--font-size--h-6);
    font-weight: 600;
    color: var(--wp--preset--color--theme-black);
    margin-bottom: 15px;

}

.formule-item-description p {
    text-align: center !important;
    color: var(--wp--preset--color--theme-semi-grey);
    line-height: 1.5;
    font-size: var(--wp--preset--font-size--text-small);

}

.formule-item-description p {
    margin-bottom: 10px;
}

/* Botones de navegación del slider */
.formule-items::before,
.formule-items::after {
    content: '';
    position: absolute;
    top: 35%;
    transform: translateY(-35%);
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

#product-tabs .splide__pagination {
    display: none;
}

#product-tabs .splide__arrow {
    top: 40%;
    background-color: transparent;
    border: 1px solid #FEF2DE;
    border-radius: 100px;
}

