/*

Theme Name: ATLAS Child
Description: A child theme for ATLAS, providing custom styles and modifications while inheriting the functionality of the parent theme.
Template: ATLAS

*/

.empera-price-box {
	position: relative;
	max-width: 520px;
	margin: 0 auto;
	padding: 32px 24px 24px;
	background: #e9e9e9;
	border-radius: 24px;
}

.empera-price-box__inner {
	background: #e30613;
	border-radius: 0 0 20px 20px;
	padding: 24px 28px 28px;
}

.empera-price-box__topline {
	margin: 0 0 18px;
	font-size: 2rem;
	line-height: 1.2;
	font-weight: 500;
	color: #1b2f6b;
}

.empera-price-box__price-wrap {
	display: flex;
	align-items: flex-end;
	gap: 6px;
	flex-wrap: wrap;
	margin-bottom: 12px;
}

.empera-price-box__price {
	font-size: clamp(3rem, 8vw, 5.25rem);
	line-height: 0.95;
	font-weight: 800;
	color: #fff;
	letter-spacing: -0.04em;
}

.empera-price-box__suffix {
	font-size: clamp(1.5rem, 3vw, 2.25rem);
	line-height: 1.1;
	font-weight: 700;
	color: #fff;
	margin-bottom: 8px;
}

.empera-price-box__old-price {
	margin: 0;
	font-size: clamp(1.4rem, 2.5vw, 2rem);
	line-height: 1.2;
	font-weight: 700;
	color: #fff;
	text-decoration: line-through;
}

.empera-price-box__badge {
	position: absolute;
	top: -14px;
	right: -18px;
	width: 132px;
	height: 132px;
	border-radius: 50%;
	background: #163b86;
	color: #fff;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
	border: 4px solid #f2f2f2;
	z-index: 2;
}

.empera-price-box__badge::before {
	content: "";
	position: absolute;
	top: -2px;
	left: -8px;
	width: 34px;
	height: 34px;
	background: linear-gradient(135deg, #f5f5f5 0%, #d9d9d9 100%);
	border-top-left-radius: 16px;
	border-bottom-right-radius: 28px;
	transform: rotate(-25deg);
	z-index: 3;
}

.empera-price-box__badge span {
	display: block;
	font-size: 2.5rem;
	line-height: 1;
	font-weight: 800;
}

.empera-price-box__badge small {
	display: block;
	font-size: 1.1rem;
	line-height: 1.1;
	font-weight: 700;
}

@media (max-width: 600px) {
	.empera-price-box {
		padding: 24px 16px 16px;
	}

	.empera-price-box__inner {
		padding: 20px 20px 24px;
	}

	.empera-price-box__badge {
		width: 100px;
		height: 100px;
		top: -10px;
		right: -10px;
	}

	.empera-price-box__badge span {
		font-size: 2rem;
	}

	.empera-price-box__badge small {
		font-size: 0.95rem;
	}
}