/* GBWA Donate Now Button - saffron/cream theme, no dark backgrounds anywhere */

.gbwadn-btn {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: #C97A1E;
	color: #ffffff;
	border: none;
	border-radius: 999px;
	padding: 9px 20px;
	font-size: 15px;
	font-weight: 800;
	font-family: inherit;
	cursor: pointer;
	box-shadow: 0 2px 8px rgba(166, 83, 26, 0.28);
	line-height: 1.4;
	vertical-align: middle;
}
.gbwadn-btn:hover { background: #A6531A; }
.gbwadn-btn:active { transform: translateY(1px); }

/* ---------------------------------------------------------
 * Popup - appended to document.body, never nested inside the
 * page's own max-width container.
 * ------------------------------------------------------- */
.gbwadn-overlay {
	position: fixed;
	inset: 0;
	background: rgba(58, 44, 26, 0.45);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 999999;
	padding: 16px;
	box-sizing: border-box;
}

.gbwadn-modal {
	background: #FFFDF7;
	border-radius: 16px;
	max-width: 420px;
	width: 100%;
	max-height: 90vh;
	overflow-y: auto;
	padding: 20px;
	box-sizing: border-box;
	box-shadow: 0 12px 40px rgba(58, 44, 26, 0.3);
	position: relative;
	font-family: inherit;
}

.gbwadn-lang-toggle {
	display: flex;
	justify-content: center;
	gap: 6px;
	margin-bottom: 12px;
}
.gbwadn-lang-btn {
	background: #FFF6E8;
	border: 1.5px solid #E9C480;
	color: #A6531A;
	font-weight: 800;
	font-size: 11px;
	border-radius: 999px;
	padding: 4px 12px;
	cursor: pointer;
}
.gbwadn-lang-btn.active { background: #C97A1E; color: #fff; border-color: #A6531A; }

.gbwadn-modal h3 {
	color: #A6531A;
	margin: 0 0 6px;
	font-size: 18px;
	font-weight: 900;
	text-align: center;
}
.gbwadn-modal p.gbwadn-sub {
	color: #7a5c37;
	font-weight: 600;
	font-size: 12.5px;
	text-align: center;
	margin: 0 0 14px;
}

.gbwadn-field { margin-bottom: 12px; }
.gbwadn-field label {
	display: block;
	font-weight: 800;
	color: #3a2c1a;
	font-size: 13px;
	margin-bottom: 5px;
}
.gbwadn-field input[type="text"],
.gbwadn-field input[type="tel"] {
	width: 100%;
	box-sizing: border-box;
	padding: 10px 12px;
	border: 1.5px solid #E4CFA0;
	border-radius: 8px;
	background: #FFFFFF;
	color: #3a2c1a;
	font-weight: 700;
	font-size: 14px;
	font-family: inherit;
}
.gbwadn-field input:focus {
	outline: none;
	background: #FFF9C4;
	border-color: #C97A1E;
}

.gbwadn-options { margin-bottom: 14px; }
.gbwadn-option {
	display: flex;
	align-items: flex-start;
	gap: 9px;
	background: #FFF6E8;
	border: 1.5px solid #E9C480;
	border-radius: 10px;
	padding: 10px 12px;
	margin-bottom: 8px;
	cursor: pointer;
}
.gbwadn-option:hover { border-color: #C97A1E; }
.gbwadn-option input[type="checkbox"] {
	width: 18px;
	height: 18px;
	flex-shrink: 0;
	margin-top: 1px;
	accent-color: #C97A1E;
}
.gbwadn-option span {
	color: #3a2c1a;
	font-weight: 700;
	font-size: 13.5px;
	line-height: 1.35;
}
.gbwadn-option.checked { background: #FFF9C4; border-color: #C97A1E; }

.gbwadn-error {
	color: #b3261e;
	font-weight: 700;
	font-size: 12.5px;
	min-height: 16px;
	margin: -4px 0 10px;
	text-align: center;
}

.gbwadn-submit {
	width: 100%;
	background: #C97A1E;
	color: #fff;
	border: none;
	border-radius: 10px;
	padding: 12px;
	font-size: 15px;
	font-weight: 800;
	cursor: pointer;
	font-family: inherit;
}
.gbwadn-submit:hover { background: #A6531A; }
.gbwadn-submit:disabled { opacity: 0.6; cursor: default; }

.gbwadn-close {
	position: absolute;
	top: 10px;
	right: 12px;
	background: none;
	border: none;
	color: #A6531A;
	font-size: 20px;
	font-weight: 800;
	cursor: pointer;
	line-height: 1;
	padding: 4px;
}
.gbwadn-close:hover { color: #C97A1E; }

.gbwadn-success {
	text-align: center;
	padding: 10px 0 4px;
}
.gbwadn-success .gbwadn-check { font-size: 34px; margin-bottom: 8px; }
.gbwadn-success p {
	color: #3a2c1a;
	font-weight: 700;
	font-size: 13.5px;
	margin: 0 0 16px;
}
.gbwadn-success button {
	background: #C97A1E;
	color: #fff;
	border: none;
	border-radius: 10px;
	padding: 10px 20px;
	font-weight: 800;
	font-size: 14px;
	cursor: pointer;
	font-family: inherit;
}
.gbwadn-success button:hover { background: #A6531A; }
