/**
 * Homepage newsletter popup — Din Couture.
 */

.dinc-nl-popup {
	position: fixed;
	inset: 0;
	z-index: 10050;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1rem;
}

.dinc-nl-popup[hidden] {
	display: none !important;
}

.dinc-nl-popup__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(17, 17, 17, 0.55);
}

.dinc-nl-popup__panel {
	position: relative;
	z-index: 1;
	width: min(100%, 420px);
	background: #fff;
	color: #111;
	padding: 2rem 1.5rem 1.5rem;
	box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
	text-align: center;
}

.dinc-nl-popup__close {
	position: absolute;
	top: 0.35rem;
	right: 0.45rem;
	border: 0;
	background: transparent;
	font-size: 1.75rem;
	line-height: 1;
	cursor: pointer;
	min-width: 2.75rem;
	min-height: 2.75rem;
	color: #111;
}

.dinc-nl-popup__eyebrow {
	margin: 0 0 0.5rem;
	font-size: 0.68rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: #666;
}

.dinc-nl-popup__title {
	margin: 0 0 0.65rem;
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(1.35rem, 3.5vw, 1.75rem);
	font-weight: 400;
	line-height: 1.25;
	color: #111;
}

.dinc-nl-popup__text {
	margin: 0 0 1.25rem;
	font-size: 0.92rem;
	line-height: 1.45;
	color: #444;
}

.dinc-nl-popup__form {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	text-align: left;
}

.dinc-nl-popup__input {
	width: 100%;
	min-height: 2.85rem;
	padding: 0.65rem 0.85rem;
	border: 1px solid #ccc;
	background: #fff;
	color: #111;
	font-size: 1rem;
}

.dinc-nl-popup__consent {
	display: flex;
	align-items: flex-start;
	gap: 0.5rem;
	font-size: 0.8rem;
	line-height: 1.35;
	color: #444;
	cursor: pointer;
}

.dinc-nl-popup__consent input {
	margin-top: 0.15rem;
}

.dinc-nl-popup__submit {
	width: 100%;
	min-height: 2.85rem;
	border: 1px solid #111;
	background: #111;
	color: #fff;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	font-size: 0.75rem;
	cursor: pointer;
}

.dinc-nl-popup__submit:disabled {
	opacity: 0.6;
	cursor: wait;
}

.dinc-nl-popup__status {
	margin: 0;
	min-height: 1.25rem;
	font-size: 0.82rem;
	color: #2a5a2a;
	text-align: center;
}

.dinc-nl-popup__status.is-error {
	color: #8a1f1f;
}

@media (max-width: 480px) {
	.dinc-nl-popup {
		align-items: flex-end;
		padding: 0;
	}

	.dinc-nl-popup__panel {
		width: 100%;
		max-width: none;
		padding: 1.75rem 1.15rem 1.35rem;
		border-radius: 12px 12px 0 0;
	}
}
