.catalog-section {
    max-width: 1440px;
    margin: 0 auto;
    padding: 5rem 1rem;
    font-family: 'Inter', sans-serif;
}

.breadcrumb-wrapper a {
    color: grey;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 2rem;
    font-weight: 700;
    color: #111827;
}

.category-nav {
    color: grey;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2rem;
}

.breadcrumb-wrapper {
    margin-bottom: 1rem;
}

.category-links {
    width: 100%;
}

.category-links ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.card-content-title a {color:#000;}

.category-links a {
    color: #374151;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.category-links a:hover,
.all-categories {
    color: #222D89 !important;
}

.catalog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.catalog-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.catalog-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.novelty-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background-color: #222D89;
    color: white;
    padding: 0.375rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    z-index: 1;
}

.card-image {
    display: flex;
    justify-content: center;
    position: relative;
    height: 16rem;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.catalog-card:hover .card-image img {
    transform: scale(1.02);
}

.card-content {
    padding: 1.5rem;
}

.card-content h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 1.5rem;
    min-height: 3.5rem;
    line-height: 1.4;
}

.card-button {
    width: 100%;
    background-color: #222D89;
    color: white;
    border: none;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
}

.card-button:hover {
    background-color: #1a2368;
}

.card-button svg {
    transition: transform 0.3s ease;
}

.card-button:hover svg {
    transform: translateX(4px);
}

/* Медиа-запросы для адаптивности */
@media (min-width: 768px) {
    .section-title {
        font-size: 3rem;
    }

    .catalog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .category-nav {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .breadcrumb-wrapper {
        margin-bottom: 0;
    }
}

@media (min-width: 1024px) {
    .catalog-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1280px) {
    .catalog-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}