.klipsa-discount-modal.is-hidden {
	display: none !important;
}

.klipsa-discount-modal {
	position: fixed;
	inset: 0;
	z-index: 99999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
}

.klipsa-discount-modal-overlay {
	position: absolute;
	inset: 0;
	background: rgba(17, 17, 17, .55);
}

.klipsa-discount-modal-box {
	position: relative;
	background: #fff;
	color: #111;
	border-radius: 20px;
	padding: 32px 26px;
	max-width: 380px;
	width: 100%;
	box-shadow: 0 30px 70px rgba(0, 0, 0, .25);
	animation: klipsaDiscountModalIn .3s ease;
}

.klipsa-discount-modal-close {
	position: absolute;
	top: 14px;
	right: 16px;
	border: none;
	background: transparent;
	color: rgba(0, 0, 0, .5);
	font-size: 24px;
	line-height: 1;
	cursor: pointer;
	transition: color .2s ease;
}

.klipsa-discount-modal-close:hover {
	color: #111;
}

.klipsa-discount-modal-label {
	display: inline-block;
	padding: 6px 10px;
	margin-bottom: 14px;
	border-radius: 999px;
	background: #d6ad68;
	color: #fff;
	font-size: 11px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .06em;
}

.klipsa-discount-modal-box h3 {
	margin: 0 0 12px;
	font-size: 22px;
	line-height: 1.2;
	font-weight: 800;
	color: #111;
}

.klipsa-discount-modal-box p {
	margin: 0 0 20px;
	color: rgba(0, 0, 0, .6);
	font-size: 14px;
	line-height: 1.5;
}

.klipsa-discount-modal-tiers {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-bottom: 22px;
}

.klipsa-discount-modal-tiers div {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 11px 12px;
	border-radius: 12px;
	background: rgba(0, 0, 0, .035);
	border: 1px solid rgba(0, 0, 0, .06);
}

.klipsa-discount-modal-tiers strong {
	font-size: 13px;
	font-weight: 700;
	color: #111;
}

.klipsa-discount-modal-tiers span {
	color: #b8863f;
	font-size: 18px;
	font-weight: 900;
}

/* --- Топ-рівень знижки (від 10000 грн) --- */
.klipsa-discount-modal-tiers .klipsa-discount-modal-top {
	background: rgba(214, 173, 104, .1);
	border: 1px solid rgba(214, 173, 104, .5);
}

.klipsa-discount-modal-tiers .klipsa-discount-modal-top strong {
	color: #8a5a1e;
}

.klipsa-discount-modal-tiers .klipsa-discount-modal-top span {
	background: linear-gradient(135deg, #d6ad68, #a67328);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.klipsa-discount-modal-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 44px;
	border-radius: 999px;
	background: #d6ad68;
	color: #fff;
	font-size: 13px;
	font-weight: 800;
	text-transform: uppercase;
	text-decoration: none;
	transition: .2s ease;
}

.klipsa-discount-modal-btn:hover {
	background: #111;
	color: #fff;
}

@keyframes klipsaDiscountModalIn {
	from {
		opacity: 0;
		transform: scale(.92) translateY(10px);
	}
	to {
		opacity: 1;
		transform: scale(1) translateY(0);
	}
}

@media (max-width: 480px) {
	.klipsa-discount-modal-box {
		padding: 26px 20px;
	}
}
