/**
 * Public Styles for Stadtguthaben Product Motifs
 */

.sgh-motif-selector {
	margin: 25px 0;
	padding: 20px;
	background: #f9f9f9;
	border: 1px solid #e5e5e5;
	border-radius: 8px;
}

.sgh-motif-selector h3 {
	margin-top: 0;
	margin-bottom: 10px;
	font-size: 1.2em;
}

.sgh-motif-selector .description {
	color: #666;
	margin-bottom: 15px;
}

.sgh-motifs-gallery {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
	gap: 15px;
	margin-bottom: 15px;
}

.sgh-motif-option {
	cursor: pointer;
	border: 3px solid transparent;
	border-radius: 8px;
	overflow: hidden;
	transition: all 0.3s;
	display: block;
	background: #fff;
}

.sgh-motif-option:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.sgh-motif-option.selected {
	border-color: #4CAF50;
}

.sgh-motif-option input[type="radio"] {
	display: none;
}

.sgh-motif-image-wrapper {
	position: relative;
	background: #f5f5f5;
}

.sgh-motif-image-wrapper img {
	width: 100%;
	height: 180px;
	object-fit: cover;
	display: block;
}

.sgh-motif-checkmark {
	position: absolute;
	top: 10px;
	right: 10px;
	width: 30px;
	height: 30px;
	background: #fff;
	border-radius: 50%;
	display: none;
	align-items: center;
	justify-content: center;
	box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.sgh-motif-checkmark svg {
	stroke: #4CAF50;
}

.sgh-motif-option.selected .sgh-motif-checkmark {
	display: flex;
}

.sgh-motif-name {
	padding: 12px;
	text-align: center;
	background: #f5f5f5;
	font-weight: 500;
	font-size: 0.95em;
}

.sgh-motif-option.selected .sgh-motif-name {
	background: #e8f5e9;
	color: #2e7d32;
}

.sgh-motif-required-error {
	color: #dc3232;
	margin-top: 10px;
	font-weight: 500;
	padding: 10px;
	background: #ffe8e8;
	border-left: 3px solid #dc3232;
	border-radius: 3px;
}

/* Responsive */
@media (max-width: 768px) {
	.sgh-motifs-gallery {
		grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
		gap: 10px;
	}

	.sgh-motif-image-wrapper img {
		height: 140px;
	}
}
