.product-amazing-offer {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    overflow: hidden;
    margin-bottom: 14px;
    padding: 12px 14px;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 16px;
    color: #fff;
    background:
        radial-gradient(circle at 8% 0, rgba(255, 255, 255, .26), transparent 34%),
        linear-gradient(120deg, #b91c1c, #e11d48 58%, #f43f5e);
    box-shadow: 0 10px 25px rgba(190, 24, 93, .2);
}

.product-amazing-offer::after {
    position: absolute;
    inset-inline-end: -25px;
    bottom: -42px;
    width: 105px;
    height: 105px;
    border: 18px solid rgba(255, 255, 255, .08);
    border-radius: 50%;
    content: "";
    pointer-events: none;
}

.product-amazing-offer__title,
.product-amazing-offer__timer {
    position: relative;
    z-index: 1;
}

.product-amazing-offer__title {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 9px;
}

.product-amazing-offer__icon {
    display: grid;
    width: 38px;
    height: 38px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 12px;
    color: #e11d48;
    background: #fff;
    box-shadow: 0 5px 14px rgba(76, 5, 25, .18);
}

.product-amazing-offer__icon i {
    width: 20px;
    height: 20px;
}

.product-amazing-offer__title > div {
    display: grid;
    min-width: 0;
    gap: 2px;
}

.product-amazing-offer__title strong {
    font-size: 14px;
    font-weight: 950;
    white-space: nowrap;
}

.product-amazing-offer__title small {
    overflow: hidden;
    opacity: .84;
    font-size: 9px;
    font-weight: 650;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.product-amazing-offer__timer {
    display: grid;
    flex: 0 0 auto;
    gap: 4px;
    text-align: left;
}

.product-amazing-offer__timer > span {
    opacity: .78;
    font-size: 8px;
    font-weight: 700;
}

.product-amazing-offer__timer time {
    display: flex;
    align-items: center;
    direction: ltr;
    gap: 4px;
}

.product-amazing-offer__timer time > span {
    display: grid;
    min-width: 31px;
    place-items: center;
    padding: 4px 5px;
    border-radius: 8px;
    color: #881337;
    background: #fff;
    box-shadow: 0 4px 10px rgba(76, 5, 25, .12);
}

.product-amazing-offer__timer time b {
    font-size: 11px;
    font-weight: 900;
    line-height: 1.1;
}

.product-amazing-offer__timer time small {
    margin-top: 2px;
    color: #9f1239;
    font-size: 6px;
    line-height: 1;
}

.product-amazing-offer__timer time > i {
    font-style: normal;
    font-weight: 900;
}

.product-amazing-offer.is-ended {
    opacity: .72;
    filter: grayscale(.25);
}

.product-amazing-offer.is-ended .product-amazing-offer__timer time {
    direction: rtl;
    font-size: 10px;
    font-weight: 800;
}

@media (max-width: 520px) {
    .product-amazing-offer {
        align-items: stretch;
        flex-direction: column;
        gap: 10px;
        padding: 11px;
        border-radius: 14px;
    }

    .product-amazing-offer__timer {
        align-items: end;
        grid-template-columns: auto 1fr;
        text-align: right;
    }

    .product-amazing-offer__timer time {
        justify-content: flex-end;
    }
}

