/* Hero-блок категории */
.hero-category {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin: 40px 0 80px;
    min-height: 500px;
}

.hero-category__content {
    display: flex;
    flex-direction: column;
    max-width: 52rem;
}

.hero-category__content .h1 {
    margin: 0 0 12px;
    font-size: 4.8rem;
    line-height: 1.2;
}

.hero-category__subtitle {
    font-size: 2rem;
    line-height: 1.6;
    color: #666;
    margin: 0 0 24px;
    font-weight: 400;
}

.hero-category__buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-category__image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 3/2;
}

.hero-category__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.button-primary {
    background: #ff8c42;
    color: #fff;
    padding: 16px 36px;
    border-radius: 999px;
    font-size: 1.7rem;
    font-weight: 600;
    border: none;
    box-shadow: none;
    transition: transform 0.2s ease, background-color 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.button-primary:hover {
    background: #ff7a29;
    transform: translateY(-1px);
}

.button-outline {
    background: transparent;
    color: #5d4037;
    padding: 14px 32px;
    border: 1.5px solid rgba(93, 64, 55, 0.5);
    border-radius: 999px;
    font-size: 1.5rem;
    font-weight: 500;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.button-outline:hover {
    background: rgba(93, 64, 55, 0.06);
    border-color: #5d4037;
}

.page-intro {
    margin-bottom: 40px;
    font-size: 1.6rem;
    line-height: 1.6;
    color: #666;
}

/* Responsive */
@media only screen and (max-width: 1023px) {
    .hero-category {
        gap: 40px;
        margin: 30px 0 60px;
    }
    
    .hero-category__content .h1 {
        font-size: 3.6rem;
    }
    
    .hero-category__subtitle {
        font-size: 1.8rem;
    }
}

@media only screen and (max-width: 767px) {
    .hero-category {
        grid-template-columns: 1fr;
        gap: 32px;
        margin: 24px 0 48px;
        min-height: auto;
    }
    
    .hero-category__content .h1 {
        font-size: 3.2rem;
    }
    
    .hero-category__subtitle {
        font-size: 1.6rem;
    }
    
    .hero-category__image {
        order: -1;
        aspect-ratio: 16/9;
    }
    
    .hero-category__buttons {
        flex-direction: column;
    }
    
    .button-primary,
    .button-outline {
        width: 100%;
        text-align: center;
    }
}
