/* main_hero3 — большой баннер справа от категоризатора */

.promo__banner {
    min-width: 0;
    width: 100%;
    align-self: stretch;
}

.promo__banner .hero3-banner {
    --accent: #5d3a29;
    --accent-bg: #f5efeb;

    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
    min-height: 440px;
    background: #1a100c;
    border-radius: 0;
}

.promo__banner .hero3-slider {
    position: absolute;
    inset: 0;
}

.promo__banner .hero3-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.7s ease, visibility 0.7s;
    z-index: 0;
}

.promo__banner .hero3-slide.is-active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.promo__banner .hero3-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.06);
    transition: transform 8s ease;
}

.promo__banner .hero3-slide.is-active img {
    transform: scale(1);
}

.promo__banner .hero3-shade {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(
        105deg,
        rgba(20, 12, 8, 0.88) 0%,
        rgba(20, 12, 8, 0.55) 42%,
        rgba(20, 12, 8, 0.2) 100%
    );
}

.promo__banner .hero3-slide-content {
    position: absolute;
    inset: 0;
    z-index: 3;
    padding: 40px 48px 88px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    max-width: 620px;
    text-align: left;
    box-sizing: border-box;
}

.promo__banner .hero3-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(8px);
    color: #f5efeb;
    font-size: 13px;
    font-weight: 400;
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 14px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    width: fit-content;
}

.promo__banner .hero3-title {
    font-size: clamp(28px, 3.2vw, 42px);
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -1.2px;
    margin-bottom: 10px;
}

.promo__banner .hero3-title em,
.promo__banner .hero3-title span {
    color: #e8c4b0;
    font-style: normal;
}

.promo__banner .hero3-desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.72);
    max-width: 480px;
    margin-bottom: 22px;
    line-height: 1.6;
}

.promo__banner .hero3-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.promo__banner .btn3-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: var(--accent);
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: 0.2s;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.promo__banner .btn3-primary:hover {
    background: var(--accent-bg);
    transform: translateY(-1px);
    color: var(--accent);
    text-decoration: none;
}

.promo__banner .btn3-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #fff;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: 0.2s;
    border: 1px solid rgba(255, 255, 255, 0.35);
    cursor: pointer;
}

.promo__banner .btn3-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.55);
    color: #fff;
    text-decoration: none;
}

.promo__banner .hero3-controls {
    position: absolute;
    left: 48px;
    right: 48px;
    bottom: 24px;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.promo__banner .hero3-arrows {
    display: flex;
    gap: 8px;
}

.promo__banner .hero3-arrow {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(6px);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.15s;
    padding: 0;
}

.promo__banner .hero3-arrow:hover {
    background: rgba(255, 255, 255, 0.22);
    border-color: rgba(255, 255, 255, 0.4);
}

.promo__banner .hero3-arrow svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2.5;
}

.promo__banner .hero3-dots {
    display: flex;
    gap: 8px;
    align-items: center;
}

.promo__banner .hero3-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    padding: 0;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.35);
    transition: 0.2s;
}

.promo__banner .hero3-dot.is-active {
    width: 28px;
    border-radius: 100px;
    background: #fff;
}

.promo__banner .hero3-counter {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.75);
    font-variant-numeric: tabular-nums;
    min-width: 48px;
    text-align: right;
}

@media (max-width: 1199px) {
    .promo__banner .hero3-slide-content {
        padding: 28px 28px 80px;
        max-width: 520px;
    }

    .promo__banner .hero3-title {
        font-size: clamp(24px, 3vw, 34px);
    }

    .promo__banner .hero3-controls {
        left: 28px;
        right: 28px;
        bottom: 18px;
    }
}

@media (max-width: 991px) {
    .promo__banner .hero3-banner {
        min-height: 360px;
        height: auto;
        aspect-ratio: 16 / 9;
    }

    .promo__banner .hero3-desc {
        display: none;
    }

    .promo__banner .hero3-slide-content {
        padding: 24px 20px 72px;
    }

    .promo__banner .hero3-controls {
        left: 20px;
        right: 20px;
        bottom: 16px;
    }
}

@media (max-width: 640px) {
    .promo__banner .hero3-banner {
        min-height: 300px;
        aspect-ratio: 4 / 3;
    }

    .promo__banner .hero3-title {
        font-size: 22px;
        letter-spacing: -0.5px;
    }

    .promo__banner .btn3-primary,
    .promo__banner .btn3-secondary {
        padding: 10px 18px;
        font-size: 14px;
        border-radius: 10px;
    }

    .promo__banner .hero3-arrow {
        width: 36px;
        height: 36px;
        border-radius: 10px;
    }

    .promo__banner .hero3-arrow svg {
        width: 18px;
        height: 18px;
    }
}
