.tab-switcher-section .page-width {
    display: flex;
    justify-content: center;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.tab-switcher-section .section-blocks {
    max-width: 900px;
    margin: 0 auto;
}

.tab-switcher-section .headline-title {
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}

.tab-switcher-section .tab-wrapper {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 7px;
}

.tab-switcher-section .tab-wrapper::-webkit-scrollbar {
    display: none;
}

.tab-switcher-section .tab-item {
    padding: 30px 20px;
    font-weight: 700;
    min-width: 0;
    text-align: center;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    cursor: pointer;
    flex: 1;
    white-space: nowrap;
}

.tab-switcher-section .content-wrapper {
    position: relative;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    overflow: hidden;
}

.tab-switcher-section .content-item {
    font-size: 16px;
    display: none;
    word-break: break-all;
}

.tab-switcher-section .content-item.active {
    display: block;
}

.tab-switcher-section .content-text {
    padding: 20px 30px;
    text-align: center;
}

.tab-switcher-section .content-text-desc {
    font-size: 14px;
    margin-bottom: 12px;
    line-height: 1.6;
}

.tab-switcher-section .content-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.tab-switcher-section .content-link:hover {
    opacity: 0.8;
}

.tab-switcher-section .content-item-inner {
    position: relative;
    min-height: 300px;
}

.tab-switcher-section .content-image-only {
    min-height: 0;
}

.tab-switcher-section .content-image-only .content-bg-image {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.tab-switcher-section .content-image-only.ratio-auto .content-bg-image img {
    width: 100%;
    height: auto;
}

.tab-switcher-section .content-image-only.ratio-1-1 .content-bg-image {
    aspect-ratio: 1 / 1;
}

.tab-switcher-section .content-image-only.ratio-4-3 .content-bg-image {
    aspect-ratio: 4 / 3;
}

.tab-switcher-section .content-image-only.ratio-16-9 .content-bg-image {
    aspect-ratio: 16 / 9;
}

.tab-switcher-section .content-image-only.ratio-3-2 .content-bg-image {
    aspect-ratio: 3 / 2;
}

.tab-switcher-section .content-image-only.ratio-21-9 .content-bg-image {
    aspect-ratio: 21 / 9;
}

.tab-switcher-section .content-image-only:not(.ratio-auto) .content-bg-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tab-switcher-section .content-bg-image {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.tab-switcher-section .content-bg-image img {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 0 0 10px 10px;
    object-fit: cover;
}

.tab-switcher-section .content-products {
    position: absolute;
    right: 10px;
    bottom: 15px;
    display: flex;
    flex-direction: column-reverse;
    gap: 12px;
    max-width: 220px;
}

.tab-switcher-section .product-card {
    display: flex;
    flex-direction: column;
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
    transition: box-shadow 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.tab-switcher-section .product-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.tab-switcher-section .product-card-image {
    position: relative;
    width: 100%;
    padding: 10px 15px;
}

.tab-switcher-section .product-card-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.tab-switcher-section .product-card-quick-add-wrap {
    position: absolute;
    right: 10px;
    bottom: 6px;
}

.tab-switcher-section .product-card-quick-add-wrap .quick-add__opener {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 6px;
    cursor: pointer;
    padding: 5px;
    transition: all 0.2s ease;
}

.tab-switcher-section .product-card-quick-add-wrap .quick-add__opener:hover {
    color: #fff;
    transform: scale(1.05);
}

.tab-switcher-section .product-card-price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    font-size: 15px;
    font-weight: 700;
    padding: 10px 16px;
    border-radius: 20px;
    margin: 0 12px 12px;
    text-decoration: none;
}

.tab-switcher-section .product-card-price svg {
    width: 14px;
    height: 14px;
}

.tab-switcher-section .tab-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 10px;
}

.tab-switcher-section .tab-pagination-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-switcher-section .tab-pagination-dot.active {
    transform: scale(1.2);
}

.tab-switcher-section .tab-nav-arrows {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 10;
    padding: 0 8px;
}

.tab-switcher-section .tab-nav-arrow {
    pointer-events: auto;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
    padding: 0;
}

.tab-switcher-section .tab-nav-arrow:hover {
    transform: scale(1.1);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.tab-switcher-section .tab-nav-arrow svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

@media (max-width: 959px) {
    .tab-switcher-section .headline-title {
        margin-bottom: 6px;
    }

    .tab-switcher-section .tab-wrapper {
        gap: 6px;
        flex-wrap: wrap;
    }

    .tab-switcher-section .tab-item {
        min-width: initial;
        flex: 1 1 auto;
        padding: 8px 6px;
        white-space: nowrap;
    }

    .tab-switcher-section .content-item {
        font-size: 14px;
    }

    .tab-switcher-section .content-text {
        padding: 15px;
    }

    .tab-switcher-section .content-text-desc {
        font-size: 12px;
    }

    .tab-switcher-section .content-link {
        font-size: 14px;
    }

    .tab-switcher-section .content-item-inner {
        min-height: 200px;
    }

    .tab-switcher-section .content-image-only {
        min-height: 0;
    }

    .tab-switcher-section .content-products {
        right: 8px;
        bottom: 10px;
        max-width: 140px;
        gap: 8px;
    }

    .tab-switcher-section .product-card {
        border-radius: 10px;
    }

    .tab-switcher-section .product-card-image {
        padding: 8px 10px;
    }

    .tab-switcher-section .product-card-quick-add-wrap {
        right: 4px;
        bottom: 4px;
    }

    .tab-switcher-section .product-card-quick-add-wrap .quick-add__opener {
        width: 32px;
        height: 32px;
        padding: 6px;
    }

    .tab-switcher-section .product-card-price {
        font-size: 12px;
        padding: 8px 12px;
        margin: 0 8px 8px;
        border-radius: 16px;
    }

    .tab-switcher-section .tab-nav-arrows {
        padding: 0 4px;
    }

    .tab-switcher-section .tab-nav-arrow {
        width: 32px;
        height: 32px;
    }

    .tab-switcher-section .tab-nav-arrow svg {
        width: 14px;
        height: 14px;
    }
}