.tahado-offer-popup {
	position: fixed;
	inset: 0;
	z-index: 100000;
	display: flex;
	align-items: center;
	justify-content: center;
}
.tahado-offer-popup[hidden] { display: none; }
.tahado-offer-popup__overlay {
	position: absolute;
	inset: 0;
	background: rgba( 24, 29, 62, .65 );
	backdrop-filter: blur( 3px );
}
.tahado-offer-popup__box {
	position: relative;
	background: var( --tahado-ivory, #faf4e9 );
	color: var( --tahado-ink, #181d3e );
	border-radius: 18px;
	max-width: 400px;
	width: calc( 100% - 2rem );
	text-align: center;
	box-shadow: 0 25px 60px rgba( 24, 29, 62, .35 );
	overflow: hidden;
	border: 1px solid rgba( 107, 78, 165, .25 );
	animation: tahado-op-in .35s ease-out;
}
@keyframes tahado-op-in {
	from { opacity: 0; transform: translateY( 18px ) scale( .96 ); }
	to   { opacity: 1; transform: translateY( 0 ) scale( 1 ); }
}
.tahado-offer-popup__box::before {
	content: "";
	display: block;
	height: 6px;
	background: linear-gradient( 90deg, var( --tahado-purple, #6b4ea5 ), var( --tahado-royal, #2a5490 ) 55%, #c9a227 );
}
.tahado-offer-popup__close {
	position: absolute;
	inset-inline-end: .75rem;
	inset-block-start: .85rem;
	z-index: 2;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: rgba( 24, 29, 62, .35 );
	color: #fff;
	border: none;
	font-size: 1.2rem;
	line-height: 1;
	cursor: pointer;
	transition: background .2s ease;
}
.tahado-offer-popup__close:hover { background: rgba( 24, 29, 62, .55 ); }
.tahado-offer-popup__close:focus-visible {
	outline: 2px solid var( --tahado-purple, #6b4ea5 );
	outline-offset: 2px;
}
.tahado-offer-popup__media {
	margin: 0;
	line-height: 0;
}
.tahado-offer-popup__media img {
	width: 100%;
	max-height: 220px;
	object-fit: cover;
	display: block;
}
.tahado-offer-popup__body {
	padding: 1.5rem 1.5rem 1.6rem;
}
.tahado-offer-popup__title {
	margin: 0 0 .5rem;
	font-size: 1.45rem;
	font-weight: 800;
	color: var( --tahado-purple, #6b4ea5 );
	line-height: 1.4;
}
.tahado-offer-popup__text {
	margin: 0 0 1rem;
	font-size: .95rem;
	line-height: 1.8;
	color: var( --tahado-mute, #645e7e );
}
.tahado-offer-popup__text p:last-child { margin-block-end: 0; }
.tahado-offer-popup__text:only-child,
.tahado-offer-popup__title + .tahado-offer-popup__text { margin-block-end: 1.1rem; }
.tahado-offer-popup__code {
	background: #fff;
	border: 1px dashed var( --tahado-stone, #b7abd1 );
	border-radius: 12px;
	padding: .9rem .75rem;
	display: flex;
	flex-direction: column;
	gap: .6rem;
}
.tahado-offer-popup__code-label {
	display: inline-block;
	font-size: .75rem;
	font-weight: 700;
	letter-spacing: .08em;
	color: #a4812a;
	text-transform: uppercase;
}
.tahado-offer-popup__code-row {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: .6rem;
	flex-wrap: wrap;
}
.tahado-offer-popup__code-text {
	font-weight: 800;
	font-size: 1.05rem;
	letter-spacing: .12em;
	color: var( --tahado-ink, #181d3e );
	background: var( --tahado-ivory, #faf4e9 );
	border: 1px solid rgba( 107, 78, 165, .35 );
	border-radius: 8px;
	padding: .45rem .9rem;
	direction: ltr;
}
.tahado-offer-popup__copy {
	background: linear-gradient( 135deg, var( --tahado-purple, #6b4ea5 ), var( --tahado-royal, #2a5490 ) ) !important;
	border: none !important;
	border-radius: 999px !important;
	padding: .45rem 1.3rem !important;
	font-weight: 700 !important;
	box-shadow: 0 6px 16px rgba( 107, 78, 165, .35 );
	transition: transform .15s ease, box-shadow .15s ease;
}
.tahado-offer-popup__copy:hover {
	transform: translateY( -1px );
	box-shadow: 0 8px 20px rgba( 107, 78, 165, .45 );
}
.tahado-offer-popup__code button:focus-visible {
	outline: 2px solid var( --tahado-purple, #6b4ea5 );
	outline-offset: 2px;
}
@media ( max-width: 480px ) {
	.tahado-offer-popup__body { padding: 1.25rem 1rem 1.35rem; }
	.tahado-offer-popup__title { font-size: 1.25rem; }
	.tahado-offer-popup__code-row { flex-direction: column; }
	.tahado-offer-popup__code-text { width: 100%; }
}
