/* PayHere Payments – frontend form. Namespaced, theme-friendly, no framework. */
.payhere-pp-wrap {
	--pp-brand: #1e3a5f;
	--pp-border: #d7dde5;
	max-width: 720px;
	margin: 0 auto;
}
.payhere-pp-notice {
	background: #fff8e1;
	border: 1px solid #e0b400;
	border-radius: 6px;
	padding: 12px 16px;
	margin-bottom: 18px;
	font-size: 14px;
}
.payhere-pp-form {
	background: #fff;
	border: 1px solid var(--pp-border);
	border-radius: 10px;
	padding: 26px;
}
.payhere-pp-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px 18px;
}
.payhere-pp-field { display: flex; flex-direction: column; }
.payhere-pp-field-wide { grid-column: 1 / -1; }
.payhere-pp-field label {
	font-size: 13px;
	font-weight: 600;
	margin-bottom: 5px;
	color: #374151;
}
.payhere-pp-req { color: #d63638; }
.payhere-pp-field input:not([type="checkbox"]):not([type="radio"]),
.payhere-pp-field select,
.payhere-pp-field textarea {
	border: 1px solid var(--pp-border);
	border-radius: 6px;
	padding: 9px 12px;
	font-size: 15px;
	width: 100%;
	background: #fff;
	color: #1f2937;
}
.payhere-pp-field input:focus,
.payhere-pp-field select:focus,
.payhere-pp-field textarea:focus {
	outline: 2px solid var(--pp-brand);
	outline-offset: 0;
	border-color: var(--pp-brand);
}
.payhere-pp-checkbox { display: flex; align-items: center; gap: 8px; font-weight: 400 !important; }
.payhere-pp-hp { position: absolute !important; left: -9999px !important; height: 1px; overflow: hidden; }
.payhere-pp-presets { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 8px; }
.payhere-pp-preset input { position: absolute; opacity: 0; }
.payhere-pp-preset span {
	display: inline-block;
	border: 1px solid var(--pp-border);
	border-radius: 6px;
	padding: 8px 16px;
	font-size: 14px;
	cursor: pointer;
}
.payhere-pp-preset input:checked + span {
	border-color: var(--pp-brand);
	background: var(--pp-brand);
	color: #fff;
}
.payhere-pp-breakdown {
	margin-top: 18px;
	background: #f4f6f9;
	border-radius: 8px;
	padding: 14px 18px;
	font-size: 14px;
}
.payhere-pp-breakdown > div {
	display: flex;
	justify-content: space-between;
	padding: 4px 0;
}
.payhere-pp-total {
	border-top: 1px solid var(--pp-border);
	margin-top: 6px;
	padding-top: 8px !important;
	font-weight: 700;
	font-size: 16px;
}
.payhere-pp-submit {
	margin-top: 20px;
	width: 100%;
	background: var(--pp-brand);
	color: #fff;
	border: 0;
	border-radius: 8px;
	padding: 14px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
}
.payhere-pp-submit:hover { filter: brightness(1.12); }
.payhere-pp-submit:disabled { opacity: 0.6; cursor: wait; }
.payhere-pp-secure {
	text-align: center;
	font-size: 12px;
	color: #8a93a2;
	margin-top: 10px;
}
@media (max-width: 560px) {
	.payhere-pp-grid { grid-template-columns: 1fr; }
	.payhere-pp-form { padding: 18px; }
}
