.hpt-payment-form {
	color: #e1e1e2;
}

.hpt-payment-form__summary {
	border: 1px solid #a8d400;
	padding: 20px;
	background: #111;
}

.hpt-payment-form__summary-name {
	display: block;
	margin-bottom: 12px;
	color: #a8d400;
	text-transform: uppercase;
}

.hpt-payment-form__summary-row,
.hpt-payment-form__summary-total {
	display: flex;
	justify-content: space-between;
	gap: 16px;
}

.hpt-payment-form__summary-total {
	margin-top: 12px;
	padding-top: 12px;
	border-top: 1px solid #555;
	font-weight: 700;
	color: #fff;
}

.hpt-payment-form__submit {
	background: #a8d400;
	color: #000;
	border-radius: 0;
	font-weight: 700;
	padding: 12px 22px;
}

.hpt-payment-form__submit:hover,
.hpt-payment-form__submit:focus {
	background: #c7f500;
	color: #000;
}

.hpt-payment-form__card-errors {
	color: #ff8585;
	font-size: 14px;
	min-height: 20px;
}

.hpt-payment-form__notice {
	color: #ff8585;
	margin-bottom: 16px;
	font-weight: 700;
}

.hpt-payment-form__payment-section {
	margin-top: 20px;
	transition: opacity 0.3s ease, filter 0.3s ease;
}

.hpt-payment-form__payment-section.is-disabled {
	opacity: 0.45;
	filter: grayscale(0.5);
	pointer-events: none;
	user-select: none;
}

.hpt-payment-form__payment-section.is-enabled {
	opacity: 1;
	filter: grayscale(0);
	pointer-events: auto;
	user-select: auto;
}

.hpt-payment-form__card-wrapper {
	background: #0f0f0f;
	border: 1px solid #2a2a2a;
	border-radius: 12px;
	padding: 24px;
	box-shadow: 0 0 24px rgba(168, 212, 0, 0.25);
	position: relative;
	transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.hpt-payment-form__card-wrapper:focus-within {
	border-color: rgba(168, 212, 0, 0.25);
	box-shadow: 0 0 32px rgba(168, 212, 0, 0.25);
}

.hpt-payment-form__card-header {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 20px;
}

.hpt-payment-form__secure-left {
	display: flex;
	align-items: flex-start;
	gap: 12px;
}

.hpt-payment-form__lock-icon {
	color: #a8d400;
	flex-shrink: 0;
	margin-top: 2px;
}

.hpt-payment-form__secure-text {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.hpt-payment-form__secure-text strong {
	color: #e1e1e2;
	font-size: 15px;
	font-weight: 600;
}

.hpt-payment-form__secure-text span {
	color: #888;
	font-size: 12px;
	line-height: 1.4;
}

.hpt-payment-form__powered-by {
	color: #888;
	font-size: 12px;
	white-space: nowrap;
	flex-shrink: 0;
}

.hpt-payment-form__powered-by strong {
	color: #a8d400;
	font-weight: 700;
}

.hpt-payment-form__card-input-area {
	background: #181818;
	border: 1px solid #ADCB00;
	border-radius: 12px;
	padding: 18px 20px;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
	min-height: 64px;
	display: flex;
	align-items: center;
	margin-bottom: 20px;
}

.hpt-payment-form__card-input-area:hover,
.hpt-payment-form__card-input-area:focus-within {
	border-color: #ADCB00;
	box-shadow: 0 0 0 2px rgba(173, 203, 0, 0.15);
}

.hpt-payment-form__card-element {
	padding: 0;
	background: transparent;
	border: none;
	width: 100%;
}

.hpt-payment-form__card-footer {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	padding-top: 16px;
	border-top: 1px solid #2a2a2a;
}

.hpt-payment-form__shield-icon {
	flex-shrink: 0;
	margin-top: 2px;
}

.hpt-payment-form__footer-text {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.hpt-payment-form__footer-text strong {
	color: #ADCB00;
	font-size: 14px;
	font-weight: 600;
}

.hpt-payment-form__footer-text span {
	color: #888;
	font-size: 12px;
	line-height: 1.4;
}

.hpt-payment-form__submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	position: relative;
}

.hpt-payment-form__spinner {
	display: none;
	width: 18px;
	height: 18px;
	border: 2px solid rgba(0, 0, 0, 0.25);
	border-top-color: #000;
	border-radius: 50%;
	animation: hpt-spin 0.8s linear infinite;
	flex-shrink: 0;
}

.hpt-payment-form__submit.is-processing .hpt-payment-form__spinner {
	display: inline-block;
}

.hpt-payment-form__submit.is-processing .hpt-payment-form__submit-text {
	opacity: 0.85;
}

@keyframes hpt-spin {
	to { transform: rotate(360deg); }
}

.hpt-payment-form__processing-notice {
	display: none;
	margin-top: 12px;
	color: #a8d400;
	font-size: 13px;
	font-weight: 600;
}

.hpt-payment-form__processing-notice.is-visible {
	display: block;
}
