.hot-item-price {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
}

.hot-item-price__details {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-width: 0;
}

.hot-item-price__label {
    margin-bottom: 3px;
    color: #8492a6;
    font-size: 12px;
    font-weight: 600;
}

.hot-item-price__main {
    color: #111827;
    font-size: 25px;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
}

.hot-item-price__original {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 7px;
    color: #8492a6;
    font-size: 12px;
}

.hot-item-price__original-amount {
    color: #64748b;
    font-size: 13px;
    font-weight: 700;
}

.hot-item-status {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 6px;
    padding: 6px 9px;
    border-radius: 999px;
    color: #38843d;
    background: #eef9ef;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
}

.hot-item-status__dot {
    flex: 0 0 7px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #66bf70;
}

.product-price-row {
    margin-top: auto;
    padding-top: 18px;
}

.product-price-row .hot-item-price__main {
    display: block;
    color: #111827;
    font-size: 20px;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
}

.product-price-row .hot-item-price__original {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 7px;
    color: #8492a6;
    font-size: 12px;
}

.product-price-row .hot-item-price__original-amount {
    display: inline;
    color: #64748b;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.3;
}

.buzz-card {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
}

.buzz-card-body {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    min-height: 0;
}

.buzz-bottom {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    margin-top: auto;
    padding-top: 20px;
}

.buzz-bottom .request-item-btn {
    flex: 0 0 auto;
    white-space: nowrap;
}

@media (max-width: 575.98px) {
    .buzz-bottom {
        align-items: stretch;
        flex-direction: column;
    }

    .buzz-bottom .request-item-btn {
        width: 100%;
    }
}

.buzz-feature-poster {
    position: relative;
    display: grid;
    height: 100%;
    overflow: hidden;
    border: 1px solid rgba(190, 151, 73, 0.2);
    border-radius: 28px;
    background: #f8f2e8;
    box-shadow:
        0 20px 50px rgba(18, 32, 72, 0.12);
    place-items: center;
    transition:
        box-shadow 0.25s ease,
        transform 0.25s ease;
}

.buzz-feature-poster img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.buzz-feature-poster:hover {
    box-shadow:
        0 26px 60px rgba(18, 32, 72, 0.18);
    transform: translateY(-4px);
}

.buzz-feature-poster:focus-visible {
    outline: 3px solid rgba(49, 91, 205, 0.45);
    outline-offset: 4px;
}

@media (max-width: 991.98px) {
    .buzz-feature-poster {
        height: auto;
        border-radius: 22px;
    }

    .buzz-feature-poster img {
        height: auto;
    }
}