.promo-pack-popup {
	position: fixed;
	right: 24px;
	bottom: 24px;
	z-index: 9998;
	box-sizing: border-box;
	width: 90%;
	max-width: 250px;
	padding: 30px 24px 30px;
	border: 1px solid rgba(0, 0, 0, 0.1);
	border-radius: 20px;
	background: #fff;
	box-shadow: 0 14px 40px rgba(17, 24, 39, 0.24);
	color: #111827;
	font-family: 'Montserrat', sans-serif;
	text-align: center;
	animation: promoPackPopupIn 0.35s ease-out both;
}

.promo-pack-popup.is-closing {
	animation: promoPackPopupOut 0.22s ease-in both;
}

.promo-pack-popup__close {
	position: absolute;
	top: 0;
	right: 15px;
	z-index: 2;
	padding: 0;
	border: 0;
	background: transparent;
	color: #e53935;
	font-size: 2.5rem;
	line-height: 1;
	cursor: pointer;
	user-select: none;
}

.promo-pack-popup__close:hover,
.promo-pack-popup__close:focus-visible {
	color: #e04562;
	outline: none;
}

.promo-pack-popup__image {
	display: block;
	width: 100%;
	max-height: 150px;
	margin: 0 auto 10px;
	object-fit: contain;
}

.promo-pack-popup__message {
	margin: 0;
	color: #111827;
	font-size: 18px;
	line-height: 1.5;
}

.promo-pack-popup__today,
.promo-pack-popup__discount {
	font-weight: 700;
}

.promo-pack-popup__discount {
	color: #54ae54;
}

.promo-pack-popup__cta {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 26px;
	padding: 0.8rem 1.8rem;
	border-radius: 999px;
	background-image: linear-gradient(to right, #25aae1, #4481eb, #04befe, #3f86ed);
	background-size: 300% 100%;
	box-shadow: 0 2px 15px rgba(65, 132, 234, 0.75);
	color: #fff !important;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.2;
	text-decoration: none !important;
	transition: all 0.4s ease-in-out;
}

.promo-pack-popup__cta:hover,
.promo-pack-popup__cta:focus-visible {
	background-position: 100% 0;
	box-shadow: 0 1px 8px rgba(65, 132, 234, 0.85);
	color: #fff !important;
	transform: scale(1.03);
	outline: none;
}

.promo-pack-popup--blackfriday .promo-pack-popup__today,
.promo-pack-popup--blackfriday .promo-pack-popup__discount {
	color: #e63946;
}

.promo-pack-popup--blackfriday .promo-pack-popup__cta {
	background-image: linear-gradient(90deg, #e63946, #ff5a5f, #b91526, #ff7a7f);
	box-shadow: 0 2px 15px rgba(230, 57, 70, 0.72);
}

.promo-pack-popup--aniversario .promo-pack-popup__today,
.promo-pack-popup--aniversario .promo-pack-popup__discount {
	color: #1769ff;
}

.promo-pack-popup--aniversario .promo-pack-popup__cta {
	background-image: linear-gradient(90deg, #1769ff, #2447d8, #0c58e8, #2b7cff);
	box-shadow: 0 2px 15px rgba(23, 105, 255, 0.72);
}

@media (max-width: 600px) {
	.promo-pack-popup {
		right: 16px;
		bottom: 16px;
		width: calc(100% - 32px);
		padding: 30px 24px 30px;
	}

	.promo-pack-popup__image {
		max-height: 125px;
	}
}

@keyframes promoPackPopupIn {
	from { opacity: 0; transform: translateY(22px); }
	to { opacity: 1; transform: translateY(0); }
}

@keyframes promoPackPopupOut {
	from { opacity: 1; transform: translateY(0); }
	to { opacity: 0; transform: translateY(16px); }
}
