/**
 * Cinema Hardware Laser Engraving - Frontend Styles
 * Matches site theme: dark (#444446), gold accents (#F5C861), teal buttons (#59A5C5)
 */

/* Engraving section wrapper */
.ch-engraving-ui {
	margin: 20px 0;
	padding: 20px;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 4px;
}

.ch-engraving-placeholder {
	margin: 20px 0;
	padding: 15px;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 4px;
	color: #999;
	font-style: italic;
}

/* Enable checkbox row */
.ch-engraving-enable-row {
	margin-bottom: 15px !important;
}

.ch-engraving-enable-row label {
	display: flex;
	align-items: center;
	font-size: 16px;
	font-weight: 500;
	cursor: pointer;
	color: #fff;
}

/* Larger checkbox to match site scale */
#ch-engraving-enable {
	width: 24px;
	height: 24px;
	margin-right: 12px;
	cursor: pointer;
	accent-color: #59A5C5; /* Blue to match site buttons */
}

/* Fee label styling with gold accent */
#ch-engraving-fee-label {
	color: #F5C861;
	font-weight: 600;
	margin-left: 8px;
}

/* Fields container */
.ch-engraving-fields {
	margin-top: 20px;
	padding-top: 20px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Text input fields - match site's 50px height and styling */
.ch-engraving-fields input[type="text"] {
	width: 100%;
	height: 50px;
	padding: 0 15px;
	font-size: 16px;
	font-family: 'Roboto', sans-serif;
	background: #fff;
	border: 1px solid #cccccc;
	border-radius: 4px;
	color: #333;
	box-sizing: border-box;
}

.ch-engraving-fields input[type="text"]:focus {
	outline: none;
	border-color: #F5C861;
	box-shadow: 0 0 0 1px #F5C861;
}

/* Labels */
.ch-engraving-fields label {
	display: block;
	margin-bottom: 8px;
	font-size: 14px;
	font-weight: 500;
	color: #fff;
}

.ch-engraving-fields .required {
	color: #F5C861;
	margin-left: 4px;
}

/* Form rows */
.ch-engraving-fields .form-row {
	margin-bottom: 20px;
}

/* Confirmation checkbox */
#ch-engraving-confirm {
	width: 20px;
	height: 20px;
	margin-right: 10px;
	cursor: pointer;
	accent-color: #59A5C5;
}

/* Confirmation row styling */
.ch-engraving-fields p:last-child label {
	display: flex;
	align-items: flex-start;
	font-size: 14px;
	color: #ddd;
	cursor: pointer;
	line-height: 1.4;
}

/* Price update highlight animation */
.ch-engraving-price-highlight {
	animation: priceHighlight 0.5s ease-in-out;
}

@keyframes priceHighlight {
	0%, 100% {
		color: inherit;
	}
	50% {
		color: #F5C861;
		transform: scale(1.05);
	}
}

/* Responsive adjustments */
@media (max-width: 768px) {
	.ch-engraving-ui {
		padding: 15px;
	}

	.ch-engraving-fields input[type="text"] {
		font-size: 16px; /* Prevent zoom on iOS */
	}
}
