/* ── Product category archive ── */

.cat-hero {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 48px;
    align-items: center;
    padding: 70px 0 50px;
}

.cat-hero h1 {
    font-size: 48px;
    line-height: 1.05;
}

.cat-description {
    max-width: 700px;
    margin-top: 20px;
    line-height: 1.75;
}

.cat-hero-image img {
    width: 100%;
    aspect-ratio: 6 / 4;
    object-fit: cover;
    border-radius: 8px;
    animation: cat-fade 0.6s ease both;
}

@keyframes cat-fade {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.cat-products {
    border-top: 6px solid var(--cc-black);
    padding: 50px 0 90px;
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .cat-hero {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 40px 0 36px;
    }

    .cat-hero h1 { font-size: 36px; }

    .cat-products { padding: 36px 0 60px; }
}
