/* =============================================================================
   Maurice Promo Popup
   ============================================================================= */

#coffee-promo-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Fondo oscuro */
.coffee-promo-popup__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.72);
    cursor: pointer;
}

/* Caja central */
.coffee-promo-popup__box {
    position: relative;
    z-index: 1;
    max-width: 580px;
    width: 92%;
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35);
    animation: coffeePromoBoxIn 0.35s cubic-bezier(0.34, 1.36, 0.64, 1) both;
}

@keyframes coffeePromoBoxIn {
    from {
        opacity: 0;
        transform: scale(0.88) translateY(18px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Botón cerrar */
.coffee-promo-popup__close {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    background: rgba(255, 255, 255, 0.92);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    color: #333;
    padding: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease;
    line-height: 1;
}

.coffee-promo-popup__close:hover {
    background: #fff;
    color: #000;
    transform: scale(1.1);
}

.coffee-promo-popup__close svg {
    display: block;
    flex-shrink: 0;
}

/* Imagen */
.coffee-promo-popup__image-link {
    display: block;
    line-height: 0;
}

.coffee-promo-popup__image {
    display: block;
    width: 100%;
    height: auto;
    transition: opacity 0.2s ease;
}

.coffee-promo-popup__image-link:hover .coffee-promo-popup__image {
    opacity: 0.93;
}

/* Pie con enlace a bases */
.coffee-promo-popup__footer {
    padding: 12px 20px;
    text-align: center;
    background: #fafafa;
    border-top: 1px solid #ececec;
}

.coffee-promo-popup__bases-link {
    display: inline-block;
    font-size: 13px;
    color: #777;
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color 0.2s ease;
}

.coffee-promo-popup__bases-link:hover {
    color: #333;
}

/* =============================================================================
   Responsive
   ============================================================================= */

@media (max-width: 600px) {
    .coffee-promo-popup__box {
        width: 96%;
        border-radius: 10px;
    }

    .coffee-promo-popup__close {
        top: 8px;
        right: 8px;
        width: 30px;
        height: 30px;
    }
}

