/* 62Pay Checkout Styles */

#wc-62pay-cc-fields {
	margin: 15px 0;
	padding: 20px;
	background: #f9f9f9;
	border-radius: 8px;
	border: 1px solid #ddd;
}

#wc-62pay-cc-fields .form-row {
	margin-bottom: 15px;
}

#wc-62pay-cc-fields label {
	font-weight: 600;
	color: #333;
	margin-bottom: 5px;
	display: block;
}

#wc-62pay-cc-fields input[type="text"],
#wc-62pay-cc-fields input[type="password"],
#wc-62pay-cc-fields select {
	width: 100%;
	padding: 12px 15px;
	border: 2px solid #ddd;
	border-radius: 6px;
	font-size: 16px;
	transition: all 0.3s ease;
	box-sizing: border-box;
}

#wc-62pay-cc-fields input:focus {
	outline: none;
	border-color: #007cba;
	box-shadow: 0 0 0 3px rgba(0, 124, 186, 0.1);
}

/* Validação Visual */
#wc-62pay-cc-fields input.wc-62pay-valid {
	border-color: #28a745;
	background-color: #f8fff9;
}

#wc-62pay-cc-fields input.wc-62pay-invalid {
	border-color: #dc3545;
	background-color: #fff8f8;
}

#wc-62pay-cc-fields input.wc-62pay-valid:focus {
	border-color: #28a745;
	box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.1);
}

#wc-62pay-cc-fields input.wc-62pay-invalid:focus {
	border-color: #dc3545;
	box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

/* Ícones de validação */
#wc-62pay-cc-fields .form-row {
	position: relative;
}

#wc-62pay-cc-fields input.wc-62pay-valid::after {
	content: '✓';
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
	color: #28a745;
	font-weight: bold;
}

#wc-62pay-cc-fields input.wc-62pay-invalid::after {
	content: '✗';
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
	color: #dc3545;
	font-weight: bold;
}

/* Responsividade */
@media (max-width: 768px) {
	#wc-62pay-cc-fields {
		padding: 15px;
		margin: 10px 0;
	}

	#wc-62pay-cc-fields .form-row-first,
	#wc-62pay-cc-fields .form-row-last {
		width: 100% !important;
		margin-right: 0 !important;
	}
}

/* Loading state */
#wc-62pay-cc-fields.loading {
	opacity: 0.6;
	pointer-events: none;
}

/* Campo de parcelas */
#wc-62pay-cc-fields select {
	background-color: white;
	background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 12 12"><path fill="%23666" d="M10.293 3.293L6 7.586 1.707 3.293A1 1 0 00.293 4.707l5 5a1 1 0 001.414 0l5-5a1 1 0 10-1.414-1.414z"/></svg>');
	background-repeat: no-repeat;
	background-position: right 12px center;
	background-size: 12px;
	padding-right: 40px;
	appearance: none;
}

/* Mensagens de erro */
.wc-62pay-error-message {
	color: #dc3545;
	font-size: 14px;
	margin-top: 5px;
	display: block;
}

/* Indicador de tipo de cartão */
.wc-62pay-card-type {
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 12px;
	color: #666;
	text-transform: uppercase;
	font-weight: bold;
}
