/* promo.html — компонент сторінки акцій (bz-*) */

.bz-equipment-hero--small .h2 span {
    color: #e0001f;
}

.bz-equipment-hero--small {
    min-height: 520px;
    padding: 145px 0 76px;
}

.bz-sales-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
}

.bz-sales-page .sale-card {
    position: relative;
    min-height: 344px;
    border: 1px solid rgba(255,255,255,0.16);
    background: #090909;
    overflow: hidden;
    transition: transform 0.32s ease, border-color 0.32s ease;
}

.bz-sales-page .sale-card:hover {
    transform: translateY(-7px);
    border-color: rgba(224,0,31,0.64);
}

.bz-sales-page .sale-card__bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.bz-sales-page .sale-card__bg:before {
    content: "";
    position: absolute;
    z-index: 2;
    inset: 0;
    background:
            linear-gradient(180deg, rgba(0,0,0,0.26), rgba(0,0,0,0.72)),
            linear-gradient(90deg, rgba(0,0,0,0.34), rgba(0,0,0,0.18));
    pointer-events: none;
}

.bz-sales-page .sale-card__bg picture,
.bz-sales-page .sale-card__bg img {
    display: block;
    width: 100%;
    height: 100%;
}

.bz-sales-page .sale-card__bg img {
    object-fit: cover;
    filter: grayscale(0.85);
    opacity: 0.82;
    transition: transform 0.45s ease, filter 0.45s ease, opacity 0.45s ease;
}

.bz-sales-page .sale-card:hover .sale-card__bg img {
    transform: scale(1.06);
    filter: grayscale(0.35);
    opacity: 0.94;
}

.bz-sales-page .sale-card__main {
    position: relative;
    z-index: 3;
    min-height: 344px;
    padding: 38px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.bz-sales-page .sale-card__name {
    max-width: 620px;
    margin-bottom: 22px;
    color: #fff;
    font-size: 36px;
    line-height: 1.12;
    letter-spacing: 0.035em;
}

.bz-sales-page .sale-card__description {
    max-width: 680px;
    color: #fff;
    font-size: 24px;
    line-height: 1.35;
    font-weight: 500;
}

.bz-sales-page .sale-card__detail-wrapper {
    display: flex;
    justify-content: flex-end;
}

.bz-sales-page .sale-card__detail {
    position: relative;
    z-index: 4;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #e0001f;
    font-size: 16px;
    line-height: 1;
    text-decoration: none;
    transition: color 0.25s ease, transform 0.25s ease;
}

.bz-sales-page .sale-card:hover .sale-card__detail {
    color: #ff0024;
    transform: translateX(4px);
}

.bz-sales-page .sale-card__detail .icon {
    flex: 0 0 auto;
}

.bz-pagination-wrap {
    margin-top: 54px;
}

.bz-pagination-list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.bz-pagination-link {
    min-width: 44px;
    height: 44px;
    padding: 0 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.16);
    background: rgba(255,255,255,0.025);
    color: rgba(255,255,255,0.78);
    font-size: 15px;
    line-height: 1;
    text-decoration: none;
    transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.bz-pagination-link:hover {
    transform: translateY(-2px);
    border-color: rgba(224,0,31,0.72);
    background: rgba(224,0,31,0.12);
    color: #fff;
}

.bz-pagination-link.is-active {
    border-color: #e0001f;
    background: #e0001f;
    color: #fff;
}

.bz-pagination-link--prev,
.bz-pagination-link--next {
    min-width: 52px;
}

@media (max-width: 1199.98px) {
    .bz-sales-grid {gap: 22px;}
    .bz-sales-page .sale-card__name {font-size: 30px;}
    .bz-sales-page .sale-card__description {font-size: 21px;}
}

@media (max-width: 991.98px) {
    .bz-equipment-hero--small {min-height: auto;
        padding: 125px 0 70px;}
    .bz-sales-grid {grid-template-columns: 1fr;}
}

@media (max-width: 767.98px) {
    .bz-equipment-hero--small {padding: 110px 0 58px;}
    .bz-sales-page .sale-card,
    .bz-sales-page .sale-card__main {min-height: 300px;}
    .bz-sales-page .sale-card__main {padding: 26px;}
    .bz-sales-page .sale-card__name {font-size: 25px;}
    .bz-sales-page .sale-card__description {font-size: 18px;}
    .bz-sales-page .sale-card__detail-wrapper {justify-content: flex-start;}
    .bz-pagination-wrap {margin-top: 38px;}
    .bz-pagination-list {gap: 7px;}
    .bz-pagination-link {min-width: 40px;
        height: 40px;
        padding: 0 12px;}
}

.bz-sales-empty {
    max-width: 640px;
    margin: 0 auto;
    padding: 64px 36px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.14);
    background:
            linear-gradient(145deg, rgba(224,0,31,0.05), rgba(255,255,255,0.012)),
            rgba(0,0,0,0.4);
}

.bz-sales-empty__icon {
    width: 78px;
    height: 78px;
    margin: 0 auto 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e0001f;
    border: 1px solid rgba(224,0,31,0.5);
    background: rgba(224,0,31,0.1);
}

.bz-sales-empty__title {
    margin-bottom: 16px;
    color: #fff;
    font-size: 30px;
    line-height: 1.15;
    letter-spacing: 0.03em;
}

.bz-sales-empty__text {
    max-width: 480px;
    margin: 0 auto 32px;
    color: rgba(255,255,255,0.66);
    font-size: 16px;
    line-height: 1.6;
}

.bz-sales-empty__btn {
    display: inline-flex;
}

@media (max-width: 767.98px) {
    .bz-sales-empty {
        padding: 48px 22px;
    }

    .bz-sales-empty__icon {
        width: 64px;
        height: 64px;
        margin-bottom: 22px;
    }

    .bz-sales-empty__title {
        font-size: 24px;
    }

    .bz-sales-empty__text {
        font-size: 15px;
    }
}

.bz-sales-page .sale-card .stretched-link::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 5;
}