/* ============================================
   Bonus Request Modal — paleta home extranjería
   ============================================ */

.bew-bonus-overlay {
	position: fixed;
	inset: 0;
	background: rgba(47, 72, 88, 0.55);
	backdrop-filter: blur(2px);
	z-index: 99999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	opacity: 0;
	visibility: hidden;
	transition: opacity .2s ease, visibility .2s ease;
}

.bew-bonus-overlay.is-open {
	opacity: 1;
	visibility: visible;
}

.bew-bonus-modal {
	position: relative;
	background: #ffffff;
	border-radius: 16px;
	max-width: 480px;
	width: 100%;
	max-height: 90vh;
	overflow-y: auto;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
	transform: translateY(12px) scale(0.98);
	transition: transform .25s ease;
	font-family: inherit;
}

.bew-bonus-overlay.is-open .bew-bonus-modal {
	transform: translateY(0) scale(1);
}

.bew-bonus-modal__header {
	padding: 28px 32px 16px;
	background: linear-gradient(135deg, #ED8C32 0%, #c9680d 100%);
	color: #fff;
	border-radius: 16px 16px 0 0;
	position: relative;
}

.bew-bonus-modal__close {
	position: absolute;
	top: 14px;
	right: 14px;
	background: rgba(255,255,255,0.18);
	border: none;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	color: #fff;
	font-size: 20px;
	line-height: 1;
	cursor: pointer;
	transition: background .15s ease;
	display: flex;
	align-items: center;
	justify-content: center;
}

.bew-bonus-modal__close:hover {
	background: rgba(255,255,255,0.32);
}

.bew-bonus-modal__title {
	font-size: 22px;
	font-weight: 800;
	margin: 0 0 6px;
	line-height: 1.2;
	color: #fff;
	letter-spacing: -0.01em;
}

.bew-bonus-modal__subtitle {
	font-size: 14px;
	margin: 0;
	color: rgba(255, 255, 255, 0.92);
	line-height: 1.4;
}

.bew-bonus-modal__body {
	padding: 24px 32px 28px;
}

.bew-bonus-form__field {
	margin-bottom: 14px;
}

.bew-bonus-form__field label {
	display: block;
	font-size: 13px;
	font-weight: 700;
	color: #2F4858;
	margin-bottom: 6px;
}

.bew-bonus-form__field input[type="text"],
.bew-bonus-form__field input[type="email"] {
	width: 100% !important;
	max-width: 100% !important;
	padding: 12px 14px;
	font-size: 15px;
	font-family: inherit;
	color: #2F4858;
	background: #f9f8f5;
	border: 1px solid rgba(47, 72, 88, 0.15);
	border-radius: 8px;
	box-sizing: border-box;
	transition: border-color .15s ease, box-shadow .15s ease, background .15s ease;
	outline: none;
	display: block;
}

.bew-bonus-form__field input:focus {
	border-color: #c9680d;
	background: #fff;
	box-shadow: 0 0 0 3px rgba(201,104,13,0.12);
}

.bew-bonus-form__honeypot {
	position: absolute !important;
	left: -9999px !important;
	width: 1px !important;
	height: 1px !important;
	overflow: hidden;
}

.bew-bonus-form__check {
	display: flex;
	align-items: flex-start;
	gap: 9px;
	font-size: 13px;
	color: #5a6975;
	line-height: 1.4;
	margin-top: 12px;
	cursor: pointer;
}

.bew-bonus-form__check input[type="checkbox"] {
	flex: 0 0 auto;
	margin-top: 2px;
	accent-color: #c9680d;
	width: 16px;
	height: 16px;
	cursor: pointer;
}

.bew-bonus-form__check a {
	color: #c9680d;
	text-decoration: underline;
}

.bew-bonus-form__amazon-note {
	margin: 16px 0 0;
	padding: 12px 14px;
	background: #fff7ee;
	border: 1px solid #f3d4a8;
	border-radius: 8px;
	font-size: 13px;
	color: #6a4516;
	line-height: 1.45;
}

.bew-bonus-form__amazon-note strong {
	color: #c9680d;
}

.bew-bonus-form__submit {
	width: 100%;
	padding: 14px 20px;
	margin-top: 18px;
	font-size: 15px;
	font-weight: 700;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	color: #ffffff;
	background: linear-gradient(135deg, #ED8C32 0%, #c9680d 100%);
	border: none;
	border-radius: 10px;
	cursor: pointer;
	transition: transform .12s ease, box-shadow .2s ease, background .2s ease;
	box-shadow: 0 4px 14px rgba(201, 104, 13, 0.28);
}

.bew-bonus-form__submit:hover:not(:disabled) {
	background: linear-gradient(135deg, #c9680d 0%, #a85408 100%);
	box-shadow: 0 6px 18px rgba(201, 104, 13, 0.40);
	transform: translateY(-1px);
}

.bew-bonus-form__submit:disabled {
	opacity: 0.65;
	cursor: not-allowed;
	transform: none;
}

.bew-bonus-form__message {
	min-height: 18px;
	margin-top: 12px;
	font-size: 13px;
	font-weight: 600;
	line-height: 1.45;
	text-align: center;
}

.bew-bonus-form__message--error {
	color: #b3261e;
}

.bew-bonus-form__message--success {
	color: #1f7a4d;
}

/* Success view replaces the form */
.bew-bonus-success {
	text-align: center;
	padding: 12px 0 4px;
}

.bew-bonus-success__icon {
	width: 64px;
	height: 64px;
	margin: 0 auto 14px;
	background: #e6f4ec;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #1f7a4d;
	font-size: 36px;
	font-weight: 700;
}

.bew-bonus-success__title {
	font-size: 18px;
	font-weight: 800;
	color: #2F4858;
	margin: 0 0 8px;
}

.bew-bonus-success__msg {
	font-size: 14px;
	color: #5a6975;
	line-height: 1.5;
	margin: 0 0 18px;
}

.bew-bonus-success__close {
	display: inline-block;
	padding: 10px 24px;
	background: #2F4858;
	color: #fff;
	border: none;
	border-radius: 8px;
	font-size: 14px;
	font-weight: 700;
	cursor: pointer;
	font-family: inherit;
}

@media (max-width: 520px) {
	.bew-bonus-modal {
		border-radius: 14px;
	}
	.bew-bonus-modal__header {
		padding: 22px 22px 14px;
		border-radius: 14px 14px 0 0;
	}
	.bew-bonus-modal__title {
		font-size: 19px;
	}
	.bew-bonus-modal__body {
		padding: 20px 22px 24px;
	}
}
