/**
 * Polkapojkarna Newsletter — frontend styling.
 *
 * Inherits the theme's brand tokens (Josefin Sans, brand red #870802, 45px
 * inputs with 1px black border and 5px radius). The footer h2 sizing is left
 * to the theme's existing `.footer-content h2` rule so headings stay in sync
 * with the rest of the footer.
 */

.pp-newsletter {
	width: 100%;
	font-family: "Josefin Sans", serif;
	color: #232323;
}

.pp-newsletter__intro {
	margin: 0 0 12px;
	font-family: inherit;
	font-size: 14px;
}

.pp-newsletter__form {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	align-items: stretch;
	gap: 10px;
	margin: 0;
}

.pp-newsletter__label {
	flex: 1 1 0;
	min-width: 0;
	margin: 0;
}

.pp-newsletter__input {
	width: 100%;
	height: 45px;
	padding: 0 10px;
	border: 1px solid #000;
	border-radius: 5px;
	background: #fff;
	color: #232323;
	font-family: inherit;
	font-size: 16px;
	line-height: 1;
	box-sizing: border-box;
	-webkit-appearance: none;
	appearance: none;
}

.pp-newsletter__input::placeholder {
	color: #747474;
	opacity: 1;
}

.pp-newsletter__input:focus-visible {
	outline: 2px solid #870802;
	outline-offset: 2px;
}

.pp-newsletter__submit {
	flex: 0 0 auto;
	height: 45px;
	padding: 0 18px;
	border: none;
	border-radius: 5px;
	background: #870802;
	color: #fff;
	font-family: inherit;
	font-size: 16px;
	font-weight: 400;
	letter-spacing: 0.02em;
	cursor: pointer;
	transition: background-color 0.15s ease, opacity 0.15s ease;
}

.pp-newsletter__submit:hover,
.pp-newsletter__submit:focus-visible {
	background: #6a0601;
}

.pp-newsletter__submit:focus-visible {
	outline: 2px solid #232323;
	outline-offset: 2px;
}

.pp-newsletter__submit:disabled {
	opacity: 0.6;
	cursor: progress;
}

.pp-newsletter__hp {
	position: absolute !important;
	left: -9999px !important;
	width: 1px !important;
	height: 1px !important;
	opacity: 0 !important;
	pointer-events: none !important;
}

.pp-newsletter__response {
	flex-basis: 100%;
	min-height: 1.25rem;
	margin: 0;
	font-family: inherit;
	font-size: 14px;
	text-align: center;
}

.pp-newsletter__response[data-state="success"] {
	padding: 10px;
	margin-top: 4px;
	background: rgba(0, 128, 0, 0.6);
	color: #fff;
	border-radius: 5px;
}

.pp-newsletter__response[data-state="error"] {
	margin-top: 4px;
	color: #870802;
}

.pp-newsletter__response[data-state="loading"] {
	color: #747474;
}

.screen-reader-text {
	position: absolute !important;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

/**
 * Checkout opt-in checkbox (Klarna Checkout / classic WooCommerce).
 */
.pp-newsletter-checkout {
	margin: 16px 0;
	padding: 12px 14px;
	background: #f7f5f6;
	border: 1px solid #eee;
	border-radius: 5px;
	font-family: "Josefin Sans", serif;
	color: #232323;
}

.pp-newsletter-checkout label {
	display: flex;
	gap: 10px;
	align-items: flex-start;
	margin: 0;
	cursor: pointer;
	font-size: 14px;
	line-height: 1.4;
}

.pp-newsletter-checkout input[type="checkbox"] {
	flex: 0 0 auto;
	width: 18px;
	height: 18px;
	margin: 2px 0 0;
	accent-color: #870802;
	cursor: pointer;
}
