/* Website BOGO / offer popup */
.faizi-offer-popup {
    position: fixed;
    inset: 0;
    z-index: 1080;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(20, 24, 22, 0.55);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.faizi-offer-popup.is-visible {
    opacity: 1;
}

.faizi-offer-popup.is-hiding {
    opacity: 0;
}

.faizi-offer-popup__dialog {
    position: relative;
    max-width: min(92vw, 520px);
    max-height: 88vh;
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
    overflow: hidden;
}

.faizi-offer-popup__close {
    position: absolute;
    top: 8px;
    right: 8px;
    z-index: 2;
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faizi-offer-popup__close:hover {
    background: rgba(0, 0, 0, 0.75);
}

.faizi-offer-popup__img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 88vh;
    object-fit: contain;
}

.cart-free-badge,
.canvas-free-badge {
    display: inline-block;
    margin-left: 6px;
    padding: 1px 7px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #2c5b4c;
    background: rgba(44, 91, 76, 0.12);
    border-radius: 4px;
    vertical-align: middle;
}

.canvas-cart-item.is-free .canvas-item-meta,
.cart-item.is-free .cart-item-price {
    color: #2c5b4c;
}
