.promo-banner {
	position: relative;
	max-width: 100%;
	width: 100%;
	background: linear-gradient(145deg, #ffffff 0%, #f8f1e9 100%);
	/* border-radius: 28px; */
	overflow: hidden;
	box-shadow:
		0 25px 50px -12px rgba(0, 0, 0, 0.4),
		0 0 0 1px rgba(255, 255, 255, 0.1);
	display: flex;
	flex-direction: column;
	padding-top: 25px;
}

/* Decorative ribbon */
.ribbon {
	position: absolute;
	top: 22px;
	right: -42px;
	background: linear-gradient(90deg, #e63946, #d62828);
	color: white;
	font-weight: 600;
	font-size: 13px;
	letter-spacing: 1.5px;
	padding: 8px 50px;
	transform: rotate(45deg);
	box-shadow: 0 4px 12px rgba(230, 57, 70, 0.4);
	z-index: 10;
	text-transform: uppercase;
}

.content {
	padding: 48px 40px 36px;
	text-align: center;
	position: relative;
	z-index: 2;
}

.badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: #eeffe1;
	color: #5c9039;
	font-size: 13px;
	font-weight: 600;
	padding: 6px 16px;
	border-radius: 50px;
	margin-bottom: 20px;
	letter-spacing: 0.5px;
}

.badge::before {
	/* content: "🎁"; */
	font-size: 15px;
}

h1 {
	/* font-family: 'Playfair Display', serif; */
	font-size: clamp(2.2rem, 5vw, 3rem);
	color: #1a1a2e;
	line-height: 1.15;
	font-weight: 500;
	margin-bottom: 12px;
}

h1 span {
	background: linear-gradient(90deg, #ff0000, #2084b9);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.subtitle {
	font-size: 1.4rem;
	color: #4a4a4a;
	margin-bottom: 28px;
	font-weight: 400;
}

.offer-box {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	background: linear-gradient(135deg, #1a1a2e, #0f3460);
	color: white;
	padding: 14px 28px;
	border-radius: 16px;
	margin-bottom: 32px;
	box-shadow: 0 10px 25px rgba(15, 52, 96, 0.35);
}

.offer-box .percent {
	font-size: 2.4rem;
	font-weight: 700;
	line-height: 1;
	color: #ffd166;
}

.offer-box .text {
	text-align: left;
	font-size: 0.95rem;
	line-height: 1.3;
}

.offer-box .text strong {
	display: block;
	font-size: 1.05rem;
	letter-spacing: 0.3px;
}

.cta-btn {
	display: inline-block;
	background: linear-gradient(90deg, #619f3b, #35ab8a);
	color: white;
	text-decoration: none;
	font-weight: 600;
	font-size: 1.05rem;
	padding: 14px 40px;
	border-radius: 50px;
	box-shadow: 0 8px 16px rgba(71, 196, 59, 0.1);
	transition: all 0.3s ease;
	letter-spacing: 0.5px;
}

.cta-btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 20px rgba(66, 148, 196, 0.15);
	background: #2381b3;
	color: #fff;
}

.note {
	margin-top: 22px;
	font-size: 0.85rem;
	color: #777;
}

/* Floating decorative elements */
.deco {
	position: absolute;
	border-radius: 50%;
	opacity: 0.12;
	z-index: 1;
}

.deco-1 {
	width: 180px;
	height: 180px;
	background: #e63946;
	top: -60px;
	left: -50px;
}

.deco-2 {
	width: 120px;
	height: 120px;
	background: #ffd166;
	bottom: -40px;
	right: -30px;
}

.deco-3 {
	width: 70px;
	height: 70px;
	background: #0f3460;
	top: 40%;
	right: 30px;
}

/* Bottom accent bar */
.accent-bar {
	height: 8px;
	background: linear-gradient(90deg, #639f3b, #1e7e94, #3aaf8e);
}

.discount10 {
	color: #e63946;
	font-weight: 700;
	font-size: 24px;
}

@media (max-width: 500px) {
	.content {
		padding: 40px 24px 30px;
	}
	.offer-box {
		flex-direction: column;
		gap: 6px;
		text-align: center;
	}
	.offer-box .text {
		text-align: center;
	}
}
