.catalog {
    padding: 60px 20px;
}

.catalog__title {
    font-size: 36px;
    margin-bottom: 40px;
    color: #2C3E50;
    text-align: center;
}

.catalog__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.catalog-card {
    background: #FFF;
    border: 1px solid #E1F5FE;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.catalog-card__image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.catalog-card__title {
    font-size: 20px;
    color: #2C3E50;
    margin-bottom: 10px;
}

.catalog-card__price {
    font-size: 22px;
    color: #1A5276;
    font-weight: 700;
    margin-bottom: 15px;
}

.catalog-card__link {
    display: inline-block;
    padding: 10px 20px;
    background: #A7E7FE;
    color: #1D1D1B;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.3s;
}

.catalog-card__link:hover {
    background: #8FD8F0;
}

/* Адаптив каталога */
@media (max-width: 768px) {
    .catalog__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .catalog__grid {
        grid-template-columns: 1fr;
    }
}