/* ===== Попап форми підписки Mailchimp ===== */

.mc-popup-overlay {
	display: none;
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.6);
	z-index: 9999;
	align-items: center;
	justify-content: center;
	padding: 20px;
	box-sizing: border-box;
}

.mc-popup-overlay.is-open {
	display: flex;
}

.mc-popup-window {
	position: relative;
	background: #fff;
	border-radius: 8px;
	padding: 32px 24px 24px;
	max-width: 620px;
	width: 100%;
	max-height: 90vh;
	overflow-y: auto;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
}

.mc-popup-close {
	position: absolute;
	top: 8px;
	right: 12px;
	background: none;
	border: none;
	font-size: 28px;
	line-height: 1;
	cursor: pointer;
	color: #888;
	padding: 4px 8px;
}

.mc-popup-close:hover {
	color: #333;
}

/* Не даємо сторінці скролитись, поки відкритий попап */
body.mc-popup-open {
	overflow: hidden;
}

/* ===== Кнопка у футері ===== */

.subscribe-strip {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	min-height: 110px !important;
}
.subscribe-strip__btn {
	cursor: pointer;
}
