/* === BLOCK 2 — ЛУЧШИЙ ВАРИАНТ 2025 === */
.block-2 {
    width: 100%;
    padding: 140px 20px 120px;
    background: #FAF7F4;
    font-family: 'PT Mono', monospace;
}

.block-2-container {
    max-width: 1400px;
    margin: 0 auto;

}

/* Заголовок */
.block-2-title {
    font-size: 88px;
    font-weight: 400;
    letter-spacing: 8px;
    margin: 0 0 16px 0;
    text-transform: uppercase;
    color: #1A1A1A;
    text-shadow: 0 3px 8px rgba(139,105,81,.18);
}

.block-2-subtitle {
    font-size: 15px;
    color: #555;
    max-width: 620px;
    line-height: 1.75;
    margin-bottom: 50px;
}

/* Сетка — 3 в ряд на ПК */
.block-2-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px 40px;
    max-width: 1400px;
    margin: 0 auto 100px;
}

/* Карточка */
.block-2-card {
    position: relative;
    background: #FAF7F4;
    transition: transform .5s cubic-bezier(.2,.8,.4,1);
}

.block-2-card:hover {
    transform: translateY(-8px);
}

/* Обёртка изображения */
.block-2-card-image-wrapper {
    position: relative;
    height: 440px;
    background: #fff;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Оба изображения */
.block-2-card-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;

    background: #FAF7F4;
    transition: opacity .7s cubic-bezier(.4,0,.2,1);
}

.block-2-card-image img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    transition: transform .9s cubic-bezier(.2,.8,.4,1);
}

.block-2-card:hover .block-2-card-image img {
    transform: scale(1.04);
}

/* Hover-смена */
.block-2-card-image.main  { opacity: 1; }
.block-2-card-image.hover { opacity: 0; }
.block-2-card:hover .main  { opacity: 0; }
.block-2-card:hover .hover { opacity: 1; }

/* Инфо под карточкой */
.block-2-card-info {
    padding: 12px 0 0;
    text-align: left;
    background: #FAF7F4;
    width: 100%;
}

.block-2-card-name {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 2.5px;
    margin: 0 0 6px;
    color: #000;
    text-transform: uppercase;
    text-decoration: none;
}

.block-2-card-price {
    font-size: 14px;
    font-weight: 500;
    color: #000;
    letter-spacing: 0.5px;
}

.block-2-more {
    width: 100%;
    display: flex;
    justify-content: flex-end;
}
/* Кнопка "Все товары" */
.block-2-more-link {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    font-size: 13px;
    letter-spacing: 2.2px;
    text-transform: uppercase;
    color: #000;
    text-decoration: none;
    transition: gap .35s ease;
}

.block-2-more-link:hover {
    gap: 28px;
}

.block-2-more-link svg {
    transition: transform .35s ease;
}

.block-2-more-link:hover svg {
    transform: translateX(8px);
}

.block-2-card-link {
    text-decoration: none;
}

/* === АДАПТИВ === */
@media (max-width: 1024px) {
    .block-2-container {
        margin-right: 30px;
    }
    .block-2-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px 30px;
    }
    .block-2-title { font-size: 64px; letter-spacing: 6px; }
}

@media (max-width: 767px) {
    .block-2 { padding: 90px 16px; }
    .block-2-title { font-size: 48px; letter-spacing: 4px; }
    .block-2-grid { 
        grid-template-columns: repeat(2, 1fr);
        gap: 20px 16px;
        padding: 0 8px;
    }
    .block-2-card-image-wrapper { 
        height: auto;
        aspect-ratio: 1 / 1;
    }
    .block-2-card-full {
        grid-column: 1 / -1;
    }
    .block-2-card-full .block-2-card-image-wrapper {
        height: auto;
        aspect-ratio: 1 / 1;
    }
    .block-2-card-info { 
        text-align: left;
        padding-left: 0;
    }
    .block-2-quickview { display: none; }
    .block-2-more { 
        justify-content: center;
    }
}

