.bc-popup-open {
	overflow: hidden;
}

.bc-popup {
	position: fixed;
	inset: 0;
	z-index: 10050;
	display: grid;
	place-items: center;
	padding: 20px;
	font-family: inherit;
}

.bc-popup__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(15, 23, 42, .58);
	backdrop-filter: blur(3px);
}

.bc-popup__card {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	width: min(520px, 100%);
	max-height: calc(100vh - 40px);
	overflow: auto;
	background: #fff;
	border-radius: 22px;
	box-shadow: 0 30px 80px rgba(15, 23, 42, .28);
}

.bc-popup__card--with-image {
	grid-template-columns: minmax(210px, 260px) minmax(360px, 440px);
	width: min(700px, 100%);
}

.bc-popup__image {
	width: 100%;
	height: 100%;
	min-height: 330px;
	object-fit: cover;
	background: #f8fafc;
	border-radius: 22px 0 0 22px;
}

.bc-popup__content {
	min-width: 0;
	padding: 40px 38px 34px;
}

.bc-popup__eyebrow {
	display: inline-block;
	margin-bottom: 12px;
	color: #b45309;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: .07em;
	text-transform: uppercase;
}

.bc-popup h2 {
	margin: 0 36px 12px 0;
	color: #111827;
	font-size: clamp(28px, 3vw, 34px);
	line-height: 1.15;
	text-wrap: balance;
}

.bc-popup p {
	margin: 0 0 22px;
	color: #64748b;
	line-height: 1.6;
}

.bc-popup__close {
	position: absolute;
	top: 12px;
	right: 14px;
	z-index: 2;
	width: 34px;
	height: 34px;
	border: 0;
	border-radius: 50%;
	background: rgba(248, 250, 252, .92);
	color: #334155;
	font-size: 25px;
	line-height: 1;
	cursor: pointer;
}

.bc-popup__coupon {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 10px 10px 10px 16px;
	border: 1px dashed #f59e0b;
	border-radius: 12px;
	background: #fffbeb;
}

.bc-popup__coupon code {
	color: #92400e;
	font-size: 17px;
	font-weight: 800;
	letter-spacing: .08em;
}

.bc-popup__coupon button,
.bc-popup__link {
	border: 0;
	border-radius: 9px;
	background: #111827;
	color: #fff;
	font-size: 13px;
	font-weight: 700;
	text-decoration: none;
	cursor: pointer;
}

.bc-popup__coupon button {
	padding: 10px 12px;
}

.bc-popup__timer {
	margin-top: 12px;
	color: #64748b;
	font-size: 13px;
}

.bc-popup__timer strong {
	color: #b45309;
	font-variant-numeric: tabular-nums;
}

.bc-popup__link {
	display: inline-flex;
	margin-top: 20px;
	padding: 11px 16px;
}

@media (max-width: 620px) {
	.bc-popup__card,
	.bc-popup__card--with-image {
		grid-template-columns: 1fr;
		width: min(430px, 100%);
	}

	.bc-popup__image {
		height: 155px;
		min-height: 0;
		border-radius: 22px 22px 0 0;
	}

	.bc-popup__content {
		padding: 26px 22px 24px;
	}

	.bc-popup h2 {
		margin-right: 30px;
		font-size: clamp(25px, 8vw, 30px);
	}
}

@media (max-width: 390px) {
	.bc-popup {
		padding: 12px;
	}

	.bc-popup__coupon {
		align-items: stretch;
		flex-direction: column;
	}

	.bc-popup__coupon button {
		width: 100%;
	}
}
