/* KPay Gateway Checkout Styles */

.payment_method_kpay_hosted,
.payment_method_kpay_wechat,
.payment_method_kpay_alipay,
.payment_method_kpay_unionpay,
.payment_method_kpay_payme,
.payment_method_kpay_fps,
.payment_method_kpay_applepay,
.payment_method_kpay_googlepay {
	padding: 15px;
	margin-bottom: 10px;
}

/* QR Code Display */
#kpay-qr-code-container {
	text-align: center;
	padding: 30px;
	background: #f9f9f9;
	border-radius: 8px;
	margin: 20px 0;
}

#kpay-qr-code-image {
	max-width: 300px;
	width: 100%;
	height: auto;
	margin: 20px auto;
	display: block;
}

#kpay-qr-code-url {
	font-family: monospace;
	background: #fff;
	padding: 15px;
	border: 1px solid #ddd;
	border-radius: 4px;
	word-break: break-all;
	margin: 15px 0;
}

.kpay-qr-instructions {
	font-size: 14px;
	color: #666;
	margin: 15px 0;
}

/* Apple Pay Button */
#kpay-applepay-button {
	display: none;
}

#kpay-applepay-button.available {
	display: block;
}

.apple-pay-button {
	-webkit-appearance: -apple-pay-button;
	-apple-pay-button-type: plain;
	-apple-pay-button-style: black;
	width: 100%;
	height: 44px;
	margin: 15px 0;
	cursor: pointer;
}

/* Google Pay Button */
#kpay-googlepay-button {
	display: none;
	margin: 15px 0;
}

#kpay-googlepay-button.available {
	display: block;
}

.gpay-button {
	width: 100%;
	height: 44px;
	background: #000;
	color: #fff;
	border: none;
	border-radius: 4px;
	font-size: 16px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
}

.gpay-button:hover {
	background: #333;
}

/* Loading State */
.kpay-loading {
	position: relative;
	pointer-events: none;
	opacity: 0.6;
}

.kpay-loading::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 20px;
	height: 20px;
	margin: -10px 0 0 -10px;
	border: 2px solid #f3f3f3;
	border-top: 2px solid #333;
	border-radius: 50%;
	animation: kpay-spin 1s linear infinite;
}

@keyframes kpay-spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}

/* Payment Method Icons */
.payment_method_kpay_hosted label::before,
.payment_method_kpay_wechat label::before,
.payment_method_kpay_alipay label::before,
.payment_method_kpay_unionpay label::before,
.payment_method_kpay_payme label::before,
.payment_method_kpay_fps label::before,
.payment_method_kpay_applepay label::before,
.payment_method_kpay_googlepay label::before {
	content: '';
	display: inline-block;
	width: 24px;
	height: 24px;
	margin-right: 10px;
	vertical-align: middle;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}

/* Error Messages */
.kpay-error {
	background: #f8d7da;
	color: #721c24;
	padding: 12px 15px;
	border: 1px solid #f5c6cb;
	border-radius: 4px;
	margin: 15px 0;
}

/* Success Messages */
.kpay-success {
	background: #d4edda;
	color: #155724;
	padding: 12px 15px;
	border: 1px solid #c3e6cb;
	border-radius: 4px;
	margin: 15px 0;
}

/* Responsive */
@media (max-width: 768px) {
	#kpay-qr-code-container {
		padding: 20px 10px;
	}

	#kpay-qr-code-image {
		max-width: 250px;
	}
}
