/**
 * Service card styling for the Custom Laser Work page (added 2026-08-18, per Wulfy: the
 * "Request a quote" links were plain unstyled text, not obviously clickable, and he wanted them
 * to draw people in more). Applied via a .wla-service-card wrapper div in that page's own
 * content (wp-admin > Pages > Custom Laser Work), not a template -- theme-independent per the
 * usual convention.
 */
.wla-service-card {
	padding: 32px 28px;
	border: 1px solid #e6e2db;
	border-radius: 6px;
	background: #fff;
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.wla-service-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 10px 28px rgba(0, 0, 0, 0.1);
	border-color: #c05530;
}

.wla-service-card h2 {
	margin-top: 0;
}

.wla-service-card .button {
	margin-top: 12px;
}

/* Flatsome's [button color="primary"] maps to the theme's blue accent (#446084), not the
   site's real, recognizable CTA color -- overriding to the same #c05530 used everywhere else
   (Add to Cart, Quick View close, header search) so this reads as "the" call-to-action color
   rather than a different, less-familiar one. */
.wla-cta-button.button {
	background-color: #c05530 !important;
	border-color: #c05530 !important;
}

.wla-cta-button.button:hover {
	background-color: #a34527 !important;
	border-color: #a34527 !important;
}
