/* Основная обертка */
.catalog-tabs-wrapper {
    background-color: #F3F4F5;
    padding: 80px 0;
    font-family: 'Inter', sans-serif;
    width: 100%;
    border-radius: 16px;
}

.catalog-tabs-inner {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 0px;
    box-sizing: border-box;
}

/* Заголовок */
.ct-header-row {
    margin-bottom: 24px;
}

.ct-title {
    color: #292A2A;
    font-size: 40px;
    font-weight: 600;
    margin: 0;
}

/* Табы */
.ct-tabs-row {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.ct-tab-btn {
    padding: 12px 20px;
    background: #FFFFFF;
    border-radius: 45px;
    border: 1px solid #DEE2E3;
    color: #292A2A;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.ct-tab-btn:hover {
    border-color: #00B1BA;
    color: #00B1BA;
}

/* Активный таб (Сделал зеленым для красоты) */
.ct-tab-btn.active {
    background: #00B1BA;
    border-color: #00B1BA;
    color: #FFFFFF;
}

/* Сетка товаров */
.ct-grid-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

/* Карточка товара */
.ct-product-card {
    width: calc((100% - 60px) / 4);
    background: #FFFFFF;
    border-radius: 12px;
    padding: 16px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    transition: box-shadow 0.2s;
    height: 222px;
}

.ct-product-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.ct-card-image {
    width: 140px;
    height: 140px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 8px;
}

.ct-card-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.ct-card-title {
    color: #292A2A;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Карточка "Смотреть все" */
.ct-link-card {
    width: calc((100% - 60px) / 4);
    background: rgba(0, 177, 186, 0.10);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    height: 222px;
    box-sizing: border-box;
    transition: background 0.2s;
}

.ct-link-card:hover {
    background: rgba(0, 177, 186, 0.20);
}

.ct-link-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
}

.ct-link-text {
    color: #00B1BA;
    font-size: 16px;
    font-weight: 500;
    white-space: nowrap;
}

.ct-link-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Адаптивность */
@media (max-width: 1100px) {
    .ct-product-card, .ct-link-card {
        width: calc((100% - 40px) / 3); /* 3 в строке */
    }
}

@media (max-width: 800px) {
    .ct-product-card, .ct-link-card {
        width: calc((100% - 20px) / 2); /* 2 в строке */
        height: 200px;
    }
    .ct-card-image {
        width: 110px;
        height: 110px;
    }
}

@media (max-width: 480px) {
    .catalog-tabs-wrapper {
        padding: 48px 0;
    }
    .ct-title {
        font-size: 28px;
        margin-bottom: 16px;
    }
    .ct-product-card, .ct-link-card {
        width: 100%; /* 1 в строке на узких экранах */
    }
    .ct-tab-btn {
        padding: 10px 16px;
        font-size: 14px;
    }
}