/* ============================================================
   EGO LAB — conversion blocks: promo/service cross-links + booking popup
   Palette follows site header: #663130 burgundy, #542726 hover,
   #d25239 terracotta accent, #F3E8DE / #FEF5ED cream, Montserrat.
   ============================================================ */

/* ---------- Promo -> service button (bottom of sale posts) ---------- */
.egolab-service-cta {
	margin: 32px 0 24px;
	padding: 28px 32px;
	background: linear-gradient(135deg, #FEF5ED 0%, #F3E8DE 100%);
	border: 1px solid #E5D7CA;
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	flex-wrap: wrap;
	box-sizing: border-box;
	font-family: Montserrat, sans-serif;
}

.egolab-service-cta__text {
	flex: 1 1 260px;
}

.egolab-service-cta__label {
	display: block;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #d25239;
	margin-bottom: 6px;
}

.egolab-service-cta__name {
	font-size: 20px;
	font-weight: 600;
	line-height: 1.3;
	color: #292D32;
	margin: 0;
}

.egolab-service-cta__btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 14px 32px;
	border-radius: 64px;
	background: #663130;
	color: #FFFFFF !important;
	font-family: Montserrat, sans-serif;
	font-size: 16px;
	font-weight: 600;
	line-height: 20px;
	letter-spacing: -0.096px;
	text-decoration: none !important;
	white-space: nowrap;
	transition: background 0.2s ease-in-out, transform 0.2s ease-in-out;
}

.egolab-service-cta__btn:hover {
	background: #542726;
	color: #FFFFFF !important;
	transform: translateY(-1px);
}

.egolab-service-cta__btn svg {
	flex-shrink: 0;
}

/* ---------- Service -> promo banner (top of service pages) ---------- */
.egolab-promo-banner {
	margin: 0 0 32px;
	padding: 20px 28px;
	background: #663130;
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	flex-wrap: wrap;
	box-sizing: border-box;
	font-family: Montserrat, sans-serif;
	position: relative;
	overflow: hidden;
}

.egolab-promo-banner::before {
	content: "";
	position: absolute;
	top: -40px;
	right: -40px;
	width: 140px;
	height: 140px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.06);
	pointer-events: none;
}

.egolab-promo-banner__text {
	flex: 1 1 280px;
	color: #F3E8DE;
}

.egolab-promo-banner__badge {
	display: inline-block;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #663130;
	background: #F3E8DE;
	border-radius: 64px;
	padding: 4px 12px;
	margin-bottom: 8px;
}

.egolab-promo-banner__title {
	font-size: 17px;
	font-weight: 600;
	line-height: 1.35;
	color: #FFFFFF;
	margin: 0;
}

.egolab-promo-banner__btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 26px;
	border-radius: 64px;
	background: #FFFFFF;
	color: #663130 !important;
	font-family: Montserrat, sans-serif;
	font-size: 15px;
	font-weight: 600;
	line-height: 18px;
	text-decoration: none !important;
	white-space: nowrap;
	transition: background 0.2s ease-in-out, transform 0.2s ease-in-out;
	position: relative;
	z-index: 1;
}

.egolab-promo-banner__btn:hover {
	background: #F3E8DE;
	color: #542726 !important;
	transform: translateY(-1px);
}

@media screen and (max-width: 640px) {
	.egolab-service-cta,
	.egolab-promo-banner {
		padding: 20px;
		flex-direction: column;
		align-items: flex-start;
	}
	.egolab-service-cta__btn,
	.egolab-promo-banner__btn {
		width: 100%;
		justify-content: center;
	}
}

/* ============================================================
   Booking popup (replaces taplink.cc flow)
   ============================================================ */

.egolab-bp-overlay {
	position: fixed;
	inset: 0;
	background: rgba(41, 21, 20, 0.55);
	backdrop-filter: blur(4px);
	z-index: 99999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 16px;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.25s ease, visibility 0.25s ease;
	box-sizing: border-box;
}

.egolab-bp-overlay.egolab-bp-open {
	opacity: 1;
	visibility: visible;
}

.egolab-bp {
	background: #FFF9F4;
	width: 100%;
	max-width: 460px;
	max-height: calc(100vh - 32px);
	max-height: calc(100dvh - 32px);
	overflow-y: auto;
	border-radius: 24px;
	box-shadow: 0 24px 80px rgba(41, 21, 20, 0.35);
	position: relative;
	font-family: Montserrat, sans-serif;
	transform: translateY(24px) scale(0.97);
	transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
	box-sizing: border-box;
}

.egolab-bp-overlay.egolab-bp-open .egolab-bp {
	transform: translateY(0) scale(1);
}

.egolab-bp__close {
	position: absolute;
	top: 14px;
	right: 14px;
	width: 36px;
	height: 36px;
	border: none;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.25);
	color: #fff;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.2s;
	z-index: 2;
	padding: 0;
}

.egolab-bp__close:hover {
	background: rgba(255, 255, 255, 0.45);
}

/* header band — burgundy like site CTA */
.egolab-bp__head {
	background: linear-gradient(135deg, #663130 0%, #542726 100%);
	border-radius: 24px 24px 0 0;
	padding: 30px 28px 26px;
	text-align: center;
	color: #fff;
	position: relative;
	overflow: hidden;
}

.egolab-bp__head::after {
	content: "";
	position: absolute;
	bottom: -50px;
	left: 50%;
	transform: translateX(-50%);
	width: 220px;
	height: 100px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.05);
	pointer-events: none;
}

.egolab-bp__badge {
	display: inline-block;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: #663130;
	background: #F3E8DE;
	border-radius: 64px;
	padding: 5px 14px;
	margin-bottom: 14px;
}

.egolab-bp__title {
	font-size: 21px;
	font-weight: 700;
	line-height: 1.3;
	margin: 0 0 8px;
	color: #FFFFFF;
}

.egolab-bp__subtitle {
	font-size: 14px;
	font-weight: 400;
	line-height: 1.45;
	color: #EFD9CC;
	margin: 0;
}

/* countdown */
.egolab-bp__timer-wrap {
	padding: 22px 28px 4px;
	text-align: center;
}

.egolab-bp__timer-label {
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #8a6f66;
	margin-bottom: 10px;
}

.egolab-bp__timer {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-variant-numeric: tabular-nums;
}

.egolab-bp__timer-cell {
	min-width: 62px;
	padding: 12px 10px;
	background: #663130;
	border-radius: 14px;
	color: #fff;
	font-size: 30px;
	font-weight: 700;
	line-height: 1;
	text-align: center;
	box-shadow: 0 6px 16px rgba(102, 49, 48, 0.28);
}

.egolab-bp__timer-cell small {
	display: block;
	font-size: 10px;
	font-weight: 500;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #D9B8AE;
	margin-top: 5px;
}

.egolab-bp__timer-sep {
	font-size: 26px;
	font-weight: 700;
	color: #663130;
	padding-bottom: 14px;
}

.egolab-bp__timer-cell.tick {
	animation: egolab-bp-tick 0.5s ease;
}

@keyframes egolab-bp-tick {
	0% { transform: scale(1); }
	40% { transform: scale(1.08); }
	100% { transform: scale(1); }
}

.egolab-bp__timer-wrap.egolab-bp-urgent .egolab-bp__timer-cell {
	background: #d25239;
	animation: egolab-bp-pulse 1s ease infinite;
}

@keyframes egolab-bp-pulse {
	0%, 100% { box-shadow: 0 6px 16px rgba(210, 82, 57, 0.3); }
	50% { box-shadow: 0 6px 24px rgba(210, 82, 57, 0.55); }
}

/* channels */
.egolab-bp__body {
	padding: 18px 28px 28px;
}

.egolab-bp__channels-label {
	font-size: 13px;
	font-weight: 600;
	color: #6b5550;
	text-align: center;
	margin: 0 0 14px;
}

.egolab-bp__channels {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.egolab-bp__channel {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 13px 18px;
	background: #FFFFFF;
	border: 1px solid #EBDED3;
	border-radius: 16px;
	text-decoration: none !important;
	transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.egolab-bp__channel:hover {
	border-color: #663130;
	box-shadow: 0 6px 18px rgba(102, 49, 48, 0.12);
	transform: translateY(-1px);
}

.egolab-bp__channel-icon {
	width: 42px;
	height: 42px;
	flex-shrink: 0;
	border-radius: 50%;
	background: #663130;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.2s;
}

.egolab-bp__channel:hover .egolab-bp__channel-icon {
	background: #542726;
}

.egolab-bp__channel-icon svg {
	width: 22px;
	height: 22px;
}

.egolab-bp__channel-text {
	display: flex;
	flex-direction: column;
	min-width: 0;
}

.egolab-bp__channel-name {
	font-size: 15px;
	font-weight: 600;
	color: #292D32;
	line-height: 1.25;
}

.egolab-bp__channel-note {
	font-size: 12px;
	color: #8a6f66;
	line-height: 1.3;
	margin-top: 2px;
}

.egolab-bp__phone {
	display: block;
	margin-top: 14px;
	padding: 15px 18px;
	border-radius: 16px;
	background: #663130;
	color: #FFFFFF !important;
	text-align: center;
	font-size: 19px;
	font-weight: 700;
	letter-spacing: 0.02em;
	text-decoration: none !important;
	transition: background 0.2s;
}

.egolab-bp__phone:hover {
	background: #542726;
}

.egolab-bp__phone-note {
	text-align: center;
	font-size: 12px;
	color: #8a6f66;
	margin: 10px 0 0;
}

@media screen and (max-width: 480px) {
	.egolab-bp__head { padding: 26px 20px 22px; }
	.egolab-bp__timer-wrap { padding: 18px 20px 4px; }
	.egolab-bp__body { padding: 14px 20px 22px; }
	.egolab-bp__timer-cell { min-width: 54px; font-size: 26px; }
	.egolab-bp__title { font-size: 19px; }
}

/* lock scroll while popup open */
body.egolab-bp-locked {
	overflow: hidden;
}
