/* ───────────────────────────────────────────────────────────
   Georgian Help — payment form styles
   Matches the theme tokens (--color-primary, --font-heading, …)
   ─────────────────────────────────────────────────────────── */

.gh-payment-block {
	margin: 32px 0;
}

.gh-payment-trigger {
	font-size: 16px;
	padding: 16px 32px;
}

.gh-payment-form-wrap {
	margin-top: 16px;
	border: 1.5px solid var(--color-primary, #C8102E);
	border-radius: 16px;
	overflow: hidden;
	animation: gh-slide-down 0.25s ease;
}

@keyframes gh-slide-down {
	from { opacity: 0; transform: translateY(-8px); }
	to   { opacity: 1; transform: translateY(0); }
}

.gh-payment-form-inner {
	padding: 32px;
	background: #fff;
}

.gh-payment-form__title {
	font-family: var(--font-heading, sans-serif);
	font-size: 20px;
	font-weight: 700;
	color: var(--color-text, #141414);
	margin: 0 0 8px;
}

.gh-payment-form__subtitle {
	font-size: 14px;
	color: var(--color-text-muted, #5a5a5a);
	margin: 0 0 24px;
	line-height: 1.6;
}

.gh-form-row {
	display: flex;
	flex-direction: column;
	gap: 6px;
	margin-bottom: 16px;
}

.gh-form-label {
	font-size: 14px;
	font-weight: 600;
	color: var(--color-text, #141414);
}

.gh-required {
	color: var(--color-primary, #C8102E);
	margin-left: 2px;
}

.gh-form-input {
	width: 100%;
	padding: 13px 16px;
	border: 1.5px solid var(--color-border, #e2e2e2);
	border-radius: 8px;
	font-family: var(--font-body, sans-serif);
	font-size: 15px;
	color: var(--color-text, #141414);
	background: #fff;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
	box-sizing: border-box;
}

.gh-form-input:focus {
	outline: none;
	border-color: var(--color-primary, #C8102E);
	box-shadow: 0 0 0 3px rgba(200, 16, 46, 0.10);
}

.gh-form-input::placeholder {
	color: #aaa;
}

.gh-form-textarea {
	resize: vertical;
	min-height: 90px;
}

/* Personal-data consent — matches theme .gh-form__checkbox* */
.gh-payment-form .gh-form__checkbox-group {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	margin: 4px 0 16px;
	cursor: pointer;
}

.gh-payment-form .gh-form__checkbox {
	margin-top: 4px;
	flex-shrink: 0;
	width: 18px;
	height: 18px;
	accent-color: var(--color-primary, #C8102E);
}

.gh-payment-form .gh-form__checkbox-label {
	font-size: 13px;
	line-height: 1.5;
	color: var(--color-text-muted, #5a5a5a);
	user-select: none;
}

.gh-payment-form .gh-form__checkbox-label a {
	color: var(--color-text, #141414);
	text-decoration: underline;
}

.gh-payment-form .gh-form__checkbox-label a:hover {
	color: var(--color-primary, #C8102E);
}

/* Honeypot — visually hidden but present in the DOM */
.gh-hp-field {
	position: absolute !important;
	left: -9999px !important;
	width: 1px;
	height: 1px;
	opacity: 0;
	pointer-events: none;
}

.gh-form-errors {
	background: #fff0f2;
	border: 1px solid rgba(200, 16, 46, 0.30);
	border-radius: 8px;
	padding: 12px 16px;
	font-size: 14px;
	color: var(--color-primary, #C8102E);
	margin-bottom: 16px;
	line-height: 1.5;
}

.gh-form-submit {
	margin-top: 8px;
	justify-content: center;
	font-size: 16px;
	padding: 16px 24px;
}

.gh-form-submit:disabled {
	opacity: 0.65;
	cursor: not-allowed;
	transform: none !important;
	box-shadow: none !important;
}

.gh-form-notice {
	margin: 12px 0 0;
	font-size: 13px;
	color: var(--color-text-muted, #5a5a5a);
	text-align: center;
	line-height: 1.5;
}

/* Urgency / trust block placed before the payment form */
.gh-urgency-block {
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding: 20px 24px;
	background: rgba(200, 16, 46, 0.04);
	border-left: 3px solid var(--color-primary, #C8102E);
	border-radius: 0 8px 8px 0;
	margin-bottom: 24px;
}

.gh-urgency-block__item {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 14px;
	color: var(--color-text, #141414);
	line-height: 1.5;
}

.gh-urgency-block__icon {
	flex-shrink: 0;
	color: var(--color-primary, #C8102E);
}

@media (max-width: 600px) {
	.gh-payment-form-inner {
		padding: 20px 16px;
	}
	.gh-payment-trigger {
		width: 100%;
		justify-content: center;
	}
}
