/* Unero Email Signup Widget */
.bt-signup {
	background: #f7f7f5;
	border: 1px solid #e4e4e1;
	border-radius: 6px;
	padding: 22px 24px;
	max-width: 520px;
	margin: 24px auto;
	font-family: inherit;
	color: #222;
}
.bt-signup__title {
	margin: 0 0 6px;
	font-size: 18px;
	font-weight: 600;
	line-height: 1.3;
}
.bt-signup__desc {
	margin: 0 0 14px;
	font-size: 14px;
	line-height: 1.5;
	color: #555;
}
.bt-signup__form {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.bt-signup__row {
	display: flex;
	gap: 8px;
	align-items: stretch;
}
.bt-signup__email {
	flex: 1 1 auto;
	min-width: 0;
	padding: 10px 12px;
	border: 1px solid #ccc;
	border-radius: 4px;
	font-size: 14px;
	background: #fff;
	box-sizing: border-box;
}
.bt-signup__email:focus {
	outline: none;
	border-color: #222;
}
.bt-signup__btn {
	flex: 0 0 auto;
	padding: 10px 18px;
	background: #222;
	color: #fff;
	border: 0;
	border-radius: 4px;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	letter-spacing: 0.02em;
	transition: background 0.15s ease;
}
.bt-signup__btn:hover { background: #000; }
.bt-signup__btn[disabled] {
	opacity: 0.6;
	cursor: not-allowed;
}
.bt-signup__consent {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	font-size: 12px;
	line-height: 1.45;
	color: #555;
	cursor: pointer;
}
.bt-signup__consent input[type="checkbox"] {
	margin-top: 2px;
	flex-shrink: 0;
}
.bt-signup__msg {
	min-height: 18px;
	font-size: 13px;
	line-height: 1.4;
}
.bt-signup__msg.is-success { color: #207a3a; }
.bt-signup__msg.is-error   { color: #c0312b; }

.bt-signup__hp {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

/* Stacked layout: input ve buton alt alta */
.bt-signup--stacked .bt-signup__row {
	flex-direction: column;
}
.bt-signup--stacked .bt-signup__btn {
	width: 100%;
}

/* Mobil */
@media (max-width: 540px) {
	.bt-signup__row { flex-direction: column; }
	.bt-signup__btn { width: 100%; }
}
