/* ============================================================
   NEWSLETTER — homepage form status text
   ============================================================ */
.bmh-newsletter-ok {
	color: #fff;
	font-size: 14px;
	font-weight: 600;
	margin: 0;
}
.bmh-newsletter-error {
	color: #ff8a80;
	font-size: 12.5px;
	margin: 8px 0 0;
}

/* ============================================================
   FLOATING TRIGGER TAB — right edge, opens the popup on demand
   ============================================================ */
.bm-promo-tab {
	position: fixed;
	top: 50%;
	right: 0;
	transform: translateY(-50%) rotate(180deg);
	writing-mode: vertical-rl;
	z-index: 900;
	display: flex;
	align-items: center;
	gap: 8px;
	border: 0;
	background: #E1251B;
	color: #fff;
	font-family: 'Archivo', sans-serif;
	font-weight: 700;
	font-size: 13px;
	letter-spacing: .02em;
	padding: 18px 10px;
	border-radius: 10px 0 0 10px;
	cursor: pointer;
	box-shadow: -2px 4px 14px rgba(0, 0, 0, .18);
	transition: background .15s ease, padding-right .15s ease;
}
.bm-promo-tab span {
	font-size: 16px;
	font-weight: 900;
}
.bm-promo-tab:hover {
	background: #B81E15;
	padding-right: 14px;
}
@media (max-width: 640px) {
	.bm-promo-tab {
		display: none;
	}
}

/* ============================================================
   DISCOUNT POPUP
   ============================================================ */
.bm-promo-overlay {
	position: fixed;
	inset: 0;
	z-index: 1000;
	background: rgba(20, 20, 30, .55);
	display: none;
	align-items: center;
	justify-content: center;
	padding: 20px;
}
.bm-promo-overlay.is-visible {
	display: flex;
}
.bm-promo {
	position: relative;
	width: 100%;
	max-width: 420px;
	background: #fff;
	border-radius: 16px;
	padding: 40px 32px 32px;
	text-align: center;
	font-family: 'Inter', system-ui, sans-serif;
	box-shadow: 0 24px 60px rgba(0, 0, 0, .3);
	animation: bm-promo-in .25s ease;
}
@keyframes bm-promo-in {
	from { transform: translateY(12px); opacity: 0; }
	to { transform: translateY(0); opacity: 1; }
}
.bm-promo-close {
	position: absolute;
	top: 14px;
	right: 14px;
	width: 32px;
	height: 32px;
	border: 0;
	background: none;
	font-size: 22px;
	line-height: 1;
	color: #8a8f98;
	cursor: pointer;
}
.bm-promo-close:hover {
	color: #1b1e23;
}
.bm-promo-eyebrow {
	display: block;
	font-size: 13px;
	font-weight: 600;
	color: #6b7280;
	margin-bottom: 6px;
}
.bm-promo h2 {
	font-family: 'Archivo', sans-serif;
	font-weight: 900;
	font-size: 34px;
	line-height: 1.15;
	color: #E1251B;
	margin: 0 0 14px;
}
.bm-promo-sub {
	font-size: 14px;
	line-height: 1.6;
	color: #4b5058;
	margin: 0 0 22px;
}
.bm-promo-sub b {
	color: #1b1e23;
	background: #f4f4f6;
	padding: 2px 8px;
	border-radius: 5px;
	font-family: ui-monospace, Consolas, monospace;
}
.bm-promo-form {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.bm-promo-form input[type="email"] {
	height: 48px;
	border: 1px solid #e5e5e5 !important;
	border-radius: 9px !important;
	padding: 0 16px !important;
	font-size: 14px;
	text-align: center;
}
.bm-promo-form input[type="email"]:focus {
	border-color: #E1251B !important;
	outline: none;
}
.bm-promo-submit {
	height: 50px;
	border: 0;
	border-radius: 9px;
	background: #16A34A;
	color: #fff;
	font-family: 'Archivo', sans-serif;
	font-weight: 800;
	font-size: 15px;
	cursor: pointer;
	transition: background .15s ease;
}
.bm-promo-submit:hover {
	background: #128a3e;
}
.bm-promo-error {
	color: #DC2626;
	font-size: 12.5px;
	margin: 10px 0 0;
}
.bm-promo-dismiss {
	display: block;
	width: 100%;
	margin-top: 16px;
	border: 0;
	background: none;
	color: #8a8f98;
	font-size: 13px;
	text-decoration: underline;
	cursor: pointer;
}
.bm-promo-dismiss:hover {
	color: #1b1e23;
}

@media (max-width: 480px) {
	.bm-promo {
		padding: 32px 22px 24px;
	}
	.bm-promo h2 {
		font-size: 28px;
	}
}
