/* ================== POPUP BASE ================== */

.mbu-xmas-popup {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 540px;
    min-height: 260px;
    border-radius: 32px;
    overflow: hidden;
    background: #044479;
    box-shadow: 0 28px 70px rgba(15, 23, 42, 0.55);
    color: #ffffff;
    z-index: 99999;
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

    /* start hidden, animate in */
    opacity: 0;
    transform: translate(40px, 40px) scale(0.95);
    pointer-events: none;
    visibility: hidden;
    transition:
        opacity 0.4s ease-out,
        transform 0.4s ease-out,
        box-shadow 0.35s ease-out;
}

/* chat bubble tail */
.mbu-xmas-popup::after {
    content: "";
    position: absolute;
    bottom: -18px;
    right: 60px;
    border-width: 18px 18px 0 18px;
    border-style: solid;
    border-color: #044479 transparent transparent transparent;
    opacity: 0.95;
    pointer-events: none;
}

/* visible state */
.mbu-xmas-popup.mbu-xmas-visible {
    opacity: 1;
    transform: translate(0, 0) scale(1);
    pointer-events: auto;
    visibility: visible;
    box-shadow: 0 32px 80px rgba(15, 23, 42, 0.72);
}

/* ================== CLOSE BUTTON ================== */

.mbu-xmas-close {
    position: absolute;
    top: 10px;
    right: 14px;
    background: rgba(15, 23, 42, 0.9);
    color: #ffffff;
    border: none;
    font-size: 20px;
    padding: 4px 10px;
    border-radius: 999px;
    cursor: pointer;
    z-index: 2;
    line-height: 1;
    transition: background 0.2s ease, transform 0.2s ease;
}

.mbu-xmas-close:hover {
    background: rgba(15, 23, 42, 1);
    transform: translateY(-1px);
}

/* ================== LAYOUT ================== */

.mbu-xmas-content {
    display: flex;
    align-items: stretch;
}

/* LEFT COLUMN: IMAGE */
.mbu-xmas-image-col {
    flex: 0 0 40%;
    overflow: hidden;
    display: flex;
}

.mbu-xmas-img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover; /* fills the column, no edges */
}

/* RIGHT COLUMN: TEXT */
.mbu-xmas-text-col {
    flex: 0 0 60%;
    padding: 20px 26px 16px; /* THIS ensures text doesn’t stick to edge */
    background: linear-gradient(135deg, #044479, #02b3f0, #e26089);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
}

/* ================== TYPOGRAPHY ================== */

.mbu-xmas-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 13px;
    border-radius: 999px;
    background: #e26089;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 4px;
    font-family: "Poppins", system-ui, sans-serif;
}

.mbu-xmas-title {
    margin: 0;
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1.3;
    font-family: "Poppins", system-ui, sans-serif;
    color:white;
}

.mbu-xmas-price-row {
    margin: 2px 0 4px;
    font-size: 1.1rem;
    font-weight: 700;
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.old-price {
    text-decoration: line-through;
    color: #e5e7eb;
    opacity: 0.85;
    font-weight: 600;
}

.arrow {
    color: #f9fafb;
    font-weight: 700;
}

.new-price {
    color: #fef3c7;
    font-size: 1.25rem;
    font-weight: 800;
}

.mbu-xmas-description {
    margin: 0 0 8px;
    font-size: 0.9rem;
    line-height: 1.5;
    color: #f9fafb;
}

/* ================== BUTTON (FULL WIDTH) ================== */

.mbu-xmas-btn {
    width: 70%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 22px;
    border-radius: 999px;
    background: linear-gradient(135deg, #02b3f0, #e26089);
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.45);
    border: none;
    cursor: pointer;
    font-family: "Poppins", system-ui, sans-serif;
    transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
}

.mbu-xmas-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.55);
    opacity: 0.98;
}

/* ================== DISCLAIMER ================== */

.mbu-xmas-disclaimer {
    margin: 4px 0 0;
    font-size: 10px;
    opacity: 0.7;
    line-height: 1.2;
}

/* ================== RESPONSIVE ================== */

@media (max-width: 575.98px) {
    .mbu-xmas-popup {
        right: 1rem;
        left: 1rem;
        width: auto;
        bottom: 1.5rem;
    }

    .mbu-xmas-content {
        flex-direction: column;
    }

    .mbu-xmas-image-col,
    .mbu-xmas-text-col {
        flex: 0 0 auto;
        width: 100%;
    }

    .mbu-xmas-title {
        font-size: 1.15rem;
        color:white;
    }

    .mbu-xmas-description {
        font-size: 0.85rem;
        padding-right: 2rem !important;
    }

    .mbu-xmas-btn {
        font-size: 0.85rem;
    }
}
