/* 🔥 Style du fond semi-transparent */
#popup-container {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

/* 🔥 Contenu principal du pop-up */
#popup {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    width: 90%;
    max-width: 450px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    position: relative;
}

/* 🔥 Bouton de fermeture */
.popup-close {
	position: absolute;
	top: 7px;
	right: 4px;
	background: none;
	border: none;
	font-size: 40px;
	cursor: pointer;
	color: #999;
	line-height: 22px;
}

.promo-dropdown-header .popup-close {
	top: -10px;
	right: -10px;
}

.popup-close:hover {
    color: #333;
}

/* 🔥 Section Produits en Promo */
.popup-footer .btn {
    margin-bottom: 12px;
}