/* Стили для страницы категорий каталога */
.category-catalog-page {
    background-color: #f5f7fa;
    min-height: 100vh;
}

.category-catalog-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-top: 2rem;
}

.category-catalog-title {
    font-size: 2.5rem;
    font-weight: 300;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.category-catalog-subtitle {
    font-size: 1.1rem;
    color: #7f8c8d;
    max-width: 600px;
    margin: 0 auto;
}

.category-catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    padding-bottom: 3rem;
}

.category-catalog-card {
    background: white;
    border-radius: 0px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: none;
    height: 100%;
}

.category-catalog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.category-catalog-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: all 0.3s ease;
}

.category-catalog-card:hover .category-catalog-image {
    transform: scale(1.03);
}

.category-catalog-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.category-catalog-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.category-catalog-description {
    color: #7f8c8d;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.category-catalog-link {
    display: inline-flex;
    align-items: center;
    color: #e74c3c;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    margin-top: auto;
}

.category-catalog-link:hover {
    color: #c0392b;
}

.category-catalog-link::after {
    content: "→";
    margin-left: 5px;
    transition: all 0.3s ease;
}

.category-catalog-link:hover::after {
    transform: translateX(3px);
}

.category-catalog-count {
    background-color: #e74c3c;
    color: white;
    border-radius: 12px;
    padding: 0.25rem 0.75rem;
    font-size: 0.8rem;
    font-weight: 500;
    margin-left: 0.5rem;
}

/* Адаптивность для планшетов */
@media (max-width: 992px) {
    .category-catalog-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1.5rem;
    }

    .category-catalog-title {
        font-size: 2.2rem;
    }

    .category-catalog-image {
        height: 200px;
    }
}

/* Адаптивность для мобильных устройств */
@media (max-width: 768px) {
    .category-catalog-header {
        margin-bottom: 2rem;
        padding-top: 1rem;
    }

    .category-catalog-title {
        font-size: 2rem;
    }

    .category-catalog-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .category-catalog-image {
        height: 180px;
    }

    .category-catalog-content {
        padding: 1.25rem;
    }
}

/* Адаптивность для маленьких мобильных устройств */
@media (max-width: 480px) {
    .category-catalog-title {
        font-size: 1.75rem;
    }

    .category-catalog-subtitle {
        font-size: 1rem;
    }

    .category-catalog-content {
        padding: 1rem;
    }

    .category-catalog-name {
        font-size: 1.1rem;
    }

    .category-catalog-image {
        height: 250px;
    }
}

/* Fallback для старых браузеров */
@supports not (display: grid) {
    .category-catalog-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    .category-catalog-card {
        width: 280px;
        margin: 1rem;
    }
}