.catalog-page .category-toggle-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
    position: relative;
}

.catalog-page .category-toggle-container {
    display: inline-flex;
    background: #f0f0f0;
    border-radius: 40px;
    padding: 4px;
    position: relative;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.catalog-page .category-btn {
    padding: 10px 28px;
    border-radius: 36px !important;
    border: none !important;
    background: transparent !important;
    color: #666 !important;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    cursor: pointer;
    margin: 0 !important;
    font-size: 0.95rem;
}

.catalog-page .btn-content {
    display: flex;
    align-items: center;
    gap: 8px;
}

.catalog-page .icon {
    font-size: 1.1em;
    transition: transform 0.2s ease;
}

.catalog-page .category-btn:hover .icon {
    transform: scale(1.05);
}

.catalog-page .category-radio:checked + .category-btn {
    color: white !important;
    background: transparent !important;
}

.catalog-page .toggle-highlight {
    position: absolute;
    top: 4px;
    bottom: 4px;
    background: #4C00BD;
    border-radius: 36px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.catalog-page .photosessions-container {
    position: relative;
    min-height: 500px;
}

.catalog-page .category-cards-wrapper {
    transition: all 0.3s ease-in-out;
    opacity: 0;
    transform: translateX(20px);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    pointer-events: none;
}

.catalog-page .category-cards-wrapper.active {
    opacity: 1;
    transform: translateX(0);
    position: relative;
    pointer-events: all;
}

/* Анимации для карточек при появлении (можно оставить, но они уже не нужны, так как карточки всегда видны) */
@keyframes catalogCardFadeInUp {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.catalog-page .category-cards-wrapper.active .col {
    animation: catalogCardFadeInUp 0.4s ease-out forwards;
    opacity: 0;
}

.catalog-page .category-cards-wrapper.active .col:nth-child(1) { animation-delay: 0.05s; }
.catalog-page .category-cards-wrapper.active .col:nth-child(2) { animation-delay: 0.1s; }
.catalog-page .category-cards-wrapper.active .col:nth-child(3) { animation-delay: 0.15s; }
.catalog-page .category-cards-wrapper.active .col:nth-child(4) { animation-delay: 0.2s; }
.catalog-page .category-cards-wrapper.active .col:nth-child(5) { animation-delay: 0.25s; }
.catalog-page .category-cards-wrapper.active .col:nth-child(6) { animation-delay: 0.3s; }

/* Адаптивность для каталога */
@media (max-width: 768px) {
    .catalog-page .category-toggle-container {
        flex-wrap: wrap;
        border-radius: 20px;
        background: transparent;
        padding: 0;
        gap: 10px;
        box-shadow: none;
    }
    
    .catalog-page .category-btn {
        background: white !important;
        padding: 8px 20px;
        font-size: 0.85rem;
        border-radius: 25px !important;
        border: 1px solid #e0e0e0 !important;
    }
    
    .catalog-page .category-radio:checked + .category-btn {
        background: #4C00BD !important;
        color: white !important;
        border-color: #4C00BD !important;
    }
    
    .catalog-page .toggle-highlight {
        display: none;
    }
}

