/* ===== Каталог ===== */

.catalog-page {
    padding: 60px 20px;
    background: #f5f6f8;
}

/* Современная сетка */
.items {
    max-width: 1200px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

/* Карточка */
.item {
    background: #ffffff;
    border-radius: 16px;
    padding: 25px 20px;

    display: flex;
    flex-direction: column;
    align-items: center;

    text-align: center;
    text-decoration: none;

    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

/* Hover */
.item:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

/* Картинка */
.item img {
    width: 140px;
    height: 140px;
    object-fit: contain;
    margin-bottom: 15px;
}

/* Название */
.item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #222;
    margin: 0;
}

/* Заголовок */
.h1 {
    text-align: center;
    margin: 40px 0 10px;
    font-size: 2rem;
}

/* Хлебные крошки */
.nav-text {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 0 20px;
    font-size: 0.95rem;
}

.nav-link {
    color: #777;
    text-decoration: none;
    transition: 0.2s;
}

.nav-link:hover {
    color: #e60023;
}

.aim {
    color: #999;
}

/* ===== Адаптив ===== */

@media (max-width: 768px) {
    .item img {
        width: 110px;
        height: 110px;
    }

    .h1 {
        font-size: 1.6rem;
    }
	body {
    background: red !important;
}
}
