/* ================================================
   CONFIGURATOR COMPONENT STYLES
   Specific styles for configurator components
   ================================================ */

/* ============================================
   DOOR SELECTION COMPONENTS
   ============================================ */

.door-icon-wrapper {
	width: 100%;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #f5f6f2;
	border-radius: 4px;
	padding: 6px;
}

.door-fallback-icon {
	display: flex;
	gap: 3px;
	height: 28px;
	align-items: center;
}

.door-panel {
	height: 100%;
	border: 1.5px solid #697757;
	background: linear-gradient(to bottom, rgba(189, 198, 179, 0.1), rgba(189, 198, 179, 0.2));
	border-radius: 2px;
	position: relative;
}

.door-panel-harmonica {
	/* Harmonica panels are narrower with a folding effect */
	border-right: 2px solid #697757;
	border-left: none;
	background: linear-gradient(to right, rgba(189, 198, 179, 0.15), rgba(189, 198, 179, 0.25), rgba(189, 198, 179, 0.15));
}

.door-panel-harmonica:first-child {
	border-left: 1.5px solid #697757;
}

.door-type-card {
	transition: all 0.2s ease;
}

.door-type-card:hover {
	transform: translateY(-1px);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.door-type-card.selected {
	background-color: #dee3d4;
	border-color: #697757 !important;
}

.frame-color-option {
	transition: all 0.2s ease;
}

.frame-color-option.selected {
	background-color: #dee3d4;
	border-color: #697757 !important;
}

/* ============================================
   WOOD COLOR SELECTION
   ============================================ */

.wood-color-card {
	background: white;
	border: 2px solid #dee3d4;
	border-radius: 8px;
	padding: 0.75rem 1rem;
	transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
	cursor: pointer;
	position: relative;
	overflow: hidden;
}

.wood-color-card:hover {
	border-color: #697757;
	box-shadow: 0 2px 8px rgba(105, 119, 87, 0.1);
}

.wood-color-card.selected {
	background-color: #dee3d4;
	border-color: #697757;
	border-width: 2px;
}

.wood-color-card.selected::after {
	content: '✓';
	position: absolute;
	top: 0.5rem;
	right: 0.5rem;
	width: 20px;
	height: 20px;
	background: #697757;
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	font-weight: bold;
}

.wood-texture-preview {
	width: 100%;
	height: 60px;
	border-radius: 6px;
	margin-bottom: 0.5rem;
	position: relative;
	overflow: hidden;
	box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.15);
}

/* Light wood texture */
.texture-light-wood {
	background: #9b7653;
	position: relative;
}

.texture-light-wood::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-image: repeating-linear-gradient(
		90deg,
		#a67d5b 0px,
		#a67d5b 18px,
		rgba(0, 0, 0, 0.25) 18px,
		rgba(0, 0, 0, 0.25) 20px,
		#9b7653 20px,
		#9b7653 38px,
		rgba(0, 0, 0, 0.2) 38px,
		rgba(0, 0, 0, 0.2) 40px,
		#8e6f4e 40px,
		#8e6f4e 58px,
		rgba(0, 0, 0, 0.25) 58px,
		rgba(0, 0, 0, 0.25) 60px
	);
}

.texture-light-wood::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-image: repeating-linear-gradient(
		0deg,
		transparent 0px,
		transparent 2px,
		rgba(70, 50, 30, 0.08) 2px,
		transparent 3px,
		transparent 6px,
		rgba(70, 50, 30, 0.05) 6px,
		transparent 7px
	);
}

/* Dark wood texture - using actual image */
.texture-dark-wood {
	background-image: url("../images/configurator/zwart_vuren.png");
	background-size: cover;
	background-position: center;
	position: relative;
}

/* ============================================
   MATERIAL/EXECUTION SELECTION
   ============================================ */

.execution-card {
	background: white;
	border: 2px solid #e5e7eb;
	border-radius: 8px;
	padding: 1rem;
	transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
	cursor: pointer;
	position: relative;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	width: 100%;
	max-width: 720px;
	margin: 0 auto;
}

.execution-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 5px;
	background: linear-gradient(90deg, #697757 0%, #8fa77c 100%);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.execution-card:hover {
	border-color: #697757;
	box-shadow: 0 10px 25px rgba(105, 119, 87, 0.1);
	transform: translateY(-2px);
}

.execution-card:hover::before {
	opacity: 1;
}

.execution-card.selected {
	background: linear-gradient(to bottom, #fafaf8 0%, #f7f9f6 100%);
	border-color: #697757;
	box-shadow: 0 8px 20px rgba(105, 119, 87, 0.12);
}

.execution-card.selected::before {
	opacity: 1;
}

.execution-card.selected::after {
	content: '✓';
	position: absolute;
	top: 1.5rem;
	right: 1.5rem;
	width: 32px;
	height: 32px;
	background: #697757;
	border-radius: 50%;
	color: white;
	font-size: 18px;
	font-weight: bold;
	text-align: center;
	line-height: 32px;
	animation: scaleIn 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes scaleIn {
	from {
		transform: scale(0);
	}
	to {
		transform: scale(1);
	}
}

.execution-header {
	margin-bottom: 0.5rem;
}

.execution-title {
	font-size: 1rem;
	font-weight: 700;
	color: #1f2937;
	margin-bottom: 0.375rem;
	letter-spacing: -0.02em;
}

.price-badge {
	display: inline-flex;
	align-items: center;
	padding: 0.25rem 0.75rem;
	background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
	border: 1px solid #86efac;
	border-radius: 50px;
	transition: all 0.2s ease;
	font-weight: 600;
	font-size: 0.75rem;
}

.execution-card:hover .price-badge {
	transform: scale(1.03);
	box-shadow: 0 4px 10px rgba(34, 197, 94, 0.12);
}

.price-badge.custom {
	background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
	border-color: #93c5fd;
}

.execution-description {
	font-size: 0.75rem;
	color: #4b5563;
	line-height: 1.4;
	margin: 0.375rem 0 0.5rem;
}

.features-divider {
	height: 1px;
	background: linear-gradient(to right, transparent, #e5e7eb 15%, #e5e7eb 85%, transparent);
	margin: 0.5rem 0 0.5rem;
}

.features-section {
	flex-grow: 1;
}

.features-title {
	font-weight: 600;
	font-size: 0.75rem;
	color: #6b7280;
	margin-bottom: 1rem;
	text-transform: uppercase;
	letter-spacing: 0.1em;
}

.feature-item {
	display: flex;
	align-items: flex-start;
	padding: 0.25rem 0;
	transition: all 0.2s ease;
}

.feature-item:hover {
	transform: translateX(3px);
}

.feature-icon {
	width: 20px;
	height: 20px;
	min-width: 20px;
	border-radius: 50%;
	background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 0.875rem;
	transition: all 0.3s ease;
}

.execution-card:hover .feature-icon {
	background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
}

.feature-text {
	font-size: 0.6875rem;
	color: #4b5563;
	line-height: 1.3;
}

.custom-section {
	background: linear-gradient(135deg, #fafaf8 0%, #f5f6f3 100%);
	border: 3px solid #697757;
	position: relative;
	padding-top: 2.5rem;
	max-width: 720px;
}

.custom-badge {
	position: absolute;
	top: -1rem;
	left: 50%;
	transform: translateX(-50%);
	background: #697757;
	color: white;
	padding: 0.5rem 1.75rem;
	border-radius: 50px;
	font-weight: 600;
	font-size: 0.875rem;
	letter-spacing: 0.05em;
	box-shadow: 0 4px 12px rgba(105, 119, 87, 0.25);
}

.custom-content {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.custom-features-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.75rem 1.5rem;
}

@media (max-width: 640px) {
	.custom-features-grid {
		grid-template-columns: 1fr;
	}
}

.custom-textarea {
	width: 100%;
	padding: 1rem;
	border: 2px solid #e5e7eb;
	border-radius: 12px;
	resize: none;
	font-size: 0.9375rem;
	line-height: 1.6;
	transition: all 0.3s ease;
	background: white;
}

.custom-textarea:focus {
	outline: none;
	border-color: #697757;
	box-shadow: 0 0 0 3px rgba(105, 119, 87, 0.1);
}

.custom-textarea::placeholder {
	color: #9ca3af;
	font-size: 0.875rem;
}

.info-box {
	background: white;
	border-radius: 12px;
	padding: 1.25rem;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.info-box-title {
	font-size: 1rem;
	font-weight: 700;
	color: #1f2937;
	margin-bottom: 0.5rem;
}

.info-box-text {
	font-size: 0.875rem;
	color: #6b7280;
	line-height: 1.5;
	margin-bottom: 1rem;
}

.info-notice {
	margin-top: 1rem;
	padding: 0.75rem;
	background: #eff6ff;
	border-radius: 10px;
	border: 1px solid #bfdbfe;
}

.info-notice-text {
	font-size: 0.75rem;
	color: #1e40af;
	display: flex;
	align-items: flex-start;
}

/* ============================================
   CONTACT FORM
   ============================================ */

.contact-form-section {
	padding-top: 0;
	padding-bottom: 0;
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
}

.contact-card {
	background: linear-gradient(135deg, rgba(245, 247, 242, 0.95) 0%, rgba(233, 237, 225, 0.95) 100%);
	backdrop-filter: blur(12px);
	border: 2px solid rgba(105, 119, 87, 0.25);
	border-radius: 24px;
	padding: 2rem;
	padding-top: 1rem;
	box-shadow:
		0 4px 6px -1px rgba(105, 119, 87, 0.15),
		0 2px 4px -1px rgba(105, 119, 87, 0.1),
		0 0 0 1px rgba(105, 119, 87, 0.08);
	max-width: 900px;
	margin: 0 auto;
}

.contact-header {
	text-align: center;
	margin-bottom: 1.5rem;
	padding-bottom: 1rem;
	border-bottom: 2px solid rgba(105, 119, 87, 0.2);
}

.contact-title {
	font-size: 1.75rem;
	font-weight: 700;
	color: #697757;
	margin-bottom: 0.5rem;
	letter-spacing: -0.025em;
}

.contact-subtitle {
	font-size: 0.9375rem;
	color: #6b7280;
	line-height: 1.5;
	max-width: 560px;
	margin: 0 auto;
}

.form-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1rem;
	margin-bottom: 1.5rem;
}

.form-group {
	position: relative;
	width: 100%;
}

.form-label {
	display: block;
	font-size: 0.875rem;
	font-weight: 600;
	color: #374151;
	margin-bottom: 0.5rem;
	letter-spacing: 0.025em;
}

.required-star {
	color: #ef4444;
	margin-left: 0.25rem;
}

.form-input {
	width: 100%;
	padding: 0.75rem 1rem;
	font-size: 0.9375rem;
	border: 2px solid #e5e7eb;
	border-radius: 10px;
	background: white;
	transition: all 0.2s ease;
	color: #1f2937;
}

.form-input:focus {
	outline: none;
	border-color: #697757;
	box-shadow: 0 0 0 3px rgba(105, 119, 87, 0.15);
	background: rgba(255, 255, 255, 0.95);
}

.form-input::placeholder {
	color: #9ca3af;
}

.form-textarea {
	width: 100%;
	padding: 0.75rem 1rem;
	font-size: 0.9375rem;
	border: 2px solid #e5e7eb;
	border-radius: 10px;
	background: white;
	transition: all 0.2s ease;
	resize: vertical;
	min-height: 80px;
	color: #1f2937;
}

.form-group-full {
	grid-column: 1 / -1;
}

.form-textarea:focus {
	outline: none;
	border-color: #697757;
	box-shadow: 0 0 0 3px rgba(105, 119, 87, 0.15);
	background: rgba(255, 255, 255, 0.95);
}

.privacy-section {
	background: rgba(105, 119, 87, 0.08);
	border: 1px solid rgba(105, 119, 87, 0.15);
	border-radius: 10px;
	padding: 1rem;
	margin-bottom: 1.5rem;
}

.privacy-checkbox {
	display: flex;
	align-items: start;
	gap: 0.75rem;
}

.checkbox-input {
	width: 18px;
	height: 18px;
	margin-top: 2px;
	border: 2px solid #d1d5db;
	border-radius: 4px;
	cursor: pointer;
	flex-shrink: 0;
	accent-color: #697757;
}

.checkbox-label {
	font-size: 0.875rem;
	color: #4b5563;
	line-height: 1.5;
}

.privacy-link {
	color: #697757;
	text-decoration: underline;
	font-weight: 500;
	transition: color 0.2s ease;
}

.privacy-link:hover {
	color: #5a6549;
}

.message-box {
	margin-top: 1.5rem;
	padding: 1rem;
	border-radius: 10px;
	animation: slideIn 0.3s ease;
}

@keyframes slideIn {
	from {
		opacity: 0;
		transform: translateY(-10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.success-box {
	background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
	border: 2px solid #86efac;
}

.success-title {
	font-size: 1.125rem;
	font-weight: 700;
	color: #166534;
	margin-bottom: 0.5rem;
}

.success-text {
	font-size: 0.9375rem;
	color: #15803d;
	margin-bottom: 0.25rem;
}

.config-code {
	font-family: 'Courier New', monospace;
	font-weight: 700;
	font-size: 1.125rem;
	color: #166534;
	background: white;
	padding: 0.25rem 0.75rem;
	border-radius: 6px;
	display: inline-block;
	margin: 0 0.25rem;
}

.error-box {
	background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
	border: 2px solid #fca5a5;
}

.error-title {
	font-size: 1.125rem;
	font-weight: 700;
	color: #991b1b;
	margin-bottom: 0.5rem;
}

.error-text {
	font-size: 0.9375rem;
	color: #b91c1c;
}

.info-banner {
	background: linear-gradient(135deg, rgba(239, 246, 255, 0.8) 0%, rgba(219, 234, 254, 0.8) 100%);
	border-radius: 10px;
	padding: 1rem;
	margin-top: 1.5rem;
	border: 1px solid rgba(191, 219, 254, 0.6);
}

.info-content {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.info-icon {
	flex-shrink: 0;
	width: 20px;
	height: 20px;
}

.info-text {
	font-size: 0.8125rem;
	color: #1e40af;
	line-height: 1.4;
}

/* New Contact Form Styles */
.contact-green-header {
	min-height: 40px;
	padding: 0.75rem 1rem;
	background-color: #9BA98C;
	margin-bottom: 1rem;
	border-radius: 8px;
	display: flex;
	align-items: center;
}

.contact-green-header h3 {
	color: white;
	font-weight: 700;
	font-size: 1rem;
	margin: 0;
	line-height: 1.3;
}

.contact-intro-text {
	font-size: 0.9375rem;
	color: #333;
	line-height: 1.6;
	margin-bottom: 1.25rem;
	text-align: left;
}

.contact-form-fields {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	margin-bottom: 1rem;
}

.contact-field-group {
	position: relative;
	width: 100%;
}

.contact-field-row {
	display: flex;
	gap: 0.75rem;
	width: 100%;
}

.contact-field-small {
	flex: 0 0 35%;
}

.contact-field-large {
	flex: 1;
}

.contact-input {
	width: 100%;
	padding: 0.875rem 2.5rem 0.875rem 1rem;
	font-size: 0.9375rem;
	border: 1px solid #e5e5e5;
	border-radius: 8px;
	background: white;
	transition: all 0.2s ease;
	color: #333;
}

.contact-input:focus {
	outline: none;
	border-color: #9BA98C;
	box-shadow: 0 0 0 2px rgba(155, 169, 140, 0.2);
}

.contact-input::placeholder {
	color: #999;
}

.contact-textarea {
	width: 100%;
	padding: 0.875rem 1rem;
	font-size: 0.9375rem;
	border: 1px solid #e5e5e5;
	border-radius: 8px;
	background: white;
	transition: all 0.2s ease;
	resize: vertical;
	min-height: 80px;
	color: #333;
	font-family: inherit;
}

.contact-textarea:focus {
	outline: none;
	border-color: #9BA98C;
	box-shadow: 0 0 0 2px rgba(155, 169, 140, 0.2);
}

.contact-textarea::placeholder {
	color: #999;
}

/* Validation Error Styles */
.contact-input.field-invalid,
.contact-textarea.field-invalid {
	border-color: #dc2626;
	background-color: #fef2f2;
	box-shadow: 0 0 0 2px rgba(220, 38, 38, 0.2);
}

.contact-input.field-invalid:focus,
.contact-textarea.field-invalid:focus {
	border-color: #dc2626;
	box-shadow: 0 0 0 2px rgba(220, 38, 38, 0.3);
}

.privacy-checkbox-input.field-invalid {
	border-color: #dc2626;
	box-shadow: 0 0 0 2px rgba(220, 38, 38, 0.2);
}

.field-error-message {
	display: block;
	color: #dc2626;
	font-size: 0.75rem;
	margin-top: 0.25rem;
	padding-left: 0.25rem;
	font-weight: 500;
}

/* Error animation */
@keyframes shake {
	0%, 100% { transform: translateX(0); }
	10%, 30%, 50%, 70%, 90% { transform: translateX(-4px); }
	20%, 40%, 60%, 80% { transform: translateX(4px); }
}

.contact-input.field-invalid,
.contact-textarea.field-invalid,
.privacy-checkbox-input.field-invalid {
	animation: shake 0.5s ease-in-out;
}

.required-indicator {
	position: absolute;
	right: 1rem;
	top: 50%;
	transform: translateY(-50%);
	color: #c5a572;
	font-size: 1rem;
	font-weight: 500;
}

.required-indicator-inline {
	color: #c5a572;
	font-weight: 500;
}

.contact-privacy-section {
	margin-bottom: 1rem;
}

.contact-privacy-checkbox {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
}

.privacy-checkbox-input {
	width: 16px;
	height: 16px;
	margin-top: 3px;
	border: 2px solid #d1d5db;
	border-radius: 3px;
	cursor: pointer;
	flex-shrink: 0;
	accent-color: #f48c06;
}

.privacy-checkbox-input:checked {
	background-color: #f48c06;
	border-color: #f48c06;
}

.privacy-checkbox-label {
	font-size: 0.8125rem;
	color: #555;
	line-height: 1.5;
}

.contact-info-banner {
	background-color: #9BA98C;
	border-radius: 8px;
	padding: 1rem 1.25rem;
	margin-top: 0.5rem;
}

.contact-info-text {
	font-size: 0.8125rem;
	color: white;
	line-height: 1.6;
	margin: 0;
	text-align: left;
}

.contact-info-link {
	color: white;
	text-decoration: underline;
	font-weight: 500;
}

.contact-info-link:hover {
	opacity: 0.9;
}

/* Desktop/Mobile responsive */
@media (min-width: 769px) {
	.contact-form-section {
		padding-top: 0.2rem;
	}
}

@media (max-width: 768px) {
	.contact-form-section {
		padding-top: 0.2rem;
	}

	.contact-card {
		padding: 1.5rem;
		border-radius: 12px;
	}

	.contact-title {
		font-size: 1.5rem;
	}

	.contact-subtitle {
		font-size: 0.875rem;
	}

	.contact-header {
		margin-bottom: 1.25rem;
		padding-bottom: 0.75rem;
	}

	.form-grid {
		grid-template-columns: 1fr;
		gap: 0.875rem;
	}

	.submit-button {
		padding: 0.875rem 1.5rem;
		font-size: 0.9375rem;
	}
}

/* ============================================
   HOUSE TYPE SELECTION
   ============================================ */

/* House type container - padding around the grid */
.house-type-container {
	padding: 1rem;
}

/* House type grid - 2x2 layout */
.house-type-grid {
	display: grid !important;
	grid-template-columns: repeat(2, 1fr) !important;
	gap: 0.75rem !important;
}

/* Mobile house type grid - 2x2 layout for mobile immersive configurator */
.mobile-house-type-grid {
	display: grid !important;
	grid-template-columns: repeat(2, 1fr) !important;
	gap: 1rem !important;
	padding: 0 0.5rem;
}

/* Custom house type button styling - horizontal layout */
.house-type-button {
	width: 100%;
	min-height: 50px;
	flex-shrink: 0;
	border-radius: 8px;
	border: 2px solid #E5E5E5;
	background-color: #FFFFFF;
	cursor: pointer;
	transition: all 0.2s;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: flex-start;
	padding: 0.5rem 0.75rem;
	gap: 0.75rem;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
	text-align: left;
}

.house-type-button:hover {
	border-color: #D98F28;
	background-color: #FAFAFA;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.house-type-icon {
	width: 32px;
	height: 32px;
	color: #697757;
}

.house-type-icon svg {
	width: 100%;
	height: 100%;
}

.house-type-label {
	font-size: 0.75rem;
	font-weight: 600;
	color: #374151;
	line-height: 1.2;
}

.house-type-button.selected .house-type-icon {
	color: #D98F28;
}

.house-type-button.selected {
	border-color: #f48c06;
	background-color: #FFF9F0;
	box-shadow: 0 2px 8px rgba(244, 140, 6, 0.15);
}

.house-type-button.selected .flex-shrink-0:last-child {
	background-color: #f48c06;
	border-color: #f48c06;
}

.house-type-button .flex-shrink-0:last-child {
	position: relative;
	width: 12px !important;
	height: 12px !important;
	min-width: 12px !important;
	min-height: 12px !important;
}

.house-type-button.selected .flex-shrink-0:last-child::after {
	content: '';
	position: absolute;
	left: 50%;
	top: 50%;
	width: 4px;
	height: 7px;
	border: solid white;
	border-width: 0 2px 2px 0;
	transform: translate(-50%, -60%) rotate(45deg);
}

/* Smaller text for house type buttons to fit "Twee onder een kap" */
.house-type-button .flex-1 {
	font-size: 0.75rem; /* 12px - reduced from 14px */
	line-height: 1.2;
}

/* Wood example cards - no border, just examples (not selectable) */
.wood-example-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.5rem;
	padding: 0.5rem;
	border: none !important;
	box-shadow: none !important;
	background-color: transparent !important;
	cursor: default !important;
	min-height: auto !important;
}

.wood-example-card:hover {
	border: none !important;
	background-color: transparent !important;
	box-shadow: none !important;
}

/* Wood example card images - 50x50px to prevent pixelation */
.wood-example-card .wood-example-image {
	width: 50px !important;
	height: 50px !important;
	flex-shrink: 0;
}

.wood-example-card .wood-example-image img {
	width: 50px !important;
	height: 50px !important;
	object-fit: cover;
}

.wood-example-card .flex-1 {
	text-align: center;
}

/* Custom Range Slider Styling */
input[type="range"][data-dimension] {
	-webkit-appearance: none;
	appearance: none;
	width: 100%;
	height: 12px;
	background: linear-gradient(to right,
		#f48c06 0%,
		#f48c06 var(--slider-progress, 50%),
		#E5E5E5 var(--slider-progress, 50%),
		#E5E5E5 100%);
	border-radius: 6px;
	outline: none;
	cursor: pointer;
}

/* Slider Track - Webkit (Chrome, Safari) */
input[type="range"][data-dimension]::-webkit-slider-track {
	height: 12px;
	background: transparent;
	border-radius: 6px;
}

input[type="range"][data-dimension]::-webkit-slider-thumb {
	-webkit-appearance: none;
	appearance: none;
	width: 32px;
	height: 32px;
	background: #f48c06;
	background-image:
		linear-gradient(white, white),
		linear-gradient(white, white);
	background-size: 3px 14px, 3px 14px;
	background-position: 10px center, 19px center;
	background-repeat: no-repeat;
	border-radius: 6px;
	cursor: pointer;
	position: relative;
	transform: translateY(0);
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}

/* Slider Track - Firefox */
input[type="range"][data-dimension]::-moz-range-track {
	height: 12px;
	background: transparent;
	border-radius: 6px;
}

input[type="range"][data-dimension]::-moz-range-thumb {
	width: 32px;
	height: 32px;
	background: #f48c06;
	background-image:
		linear-gradient(white, white),
		linear-gradient(white, white);
	background-size: 3px 14px, 3px 14px;
	background-position: 10px center, 19px center;
	background-repeat: no-repeat;
	border: none;
	border-radius: 6px;
	cursor: pointer;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}

/* Wood Type Button - Override width for side-by-side layout */
.wood-type-button {
	width: auto !important;
}

/* Door Type Button - Ensure full width in grid */
.door-type-button {
	width: 100% !important;
}

/* Wood Example Cards - Non-clickable display cards */
.wood-example-card {
	cursor: default !important;
	pointer-events: none;
	width: auto !important;
}

.wood-example-card:hover {
	border-color: #E5E5E5 !important;
	background-color: #FFFFFF !important;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05) !important;
	transform: none !important;
}

/* ============================================
   UITVOERING SELECTION (Step 5)
   ============================================ */

.uitvoering-selection {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	width: 100%;
}

.uitvoering-header {
	background: #9BA98C;
	border-radius: 10px;
	padding: 1rem 1.5rem;
	margin-bottom: 0.5rem;
}

.uitvoering-header-title {
	font-size: 1.125rem;
	font-weight: 600;
	color: white;
	margin: 0;
	letter-spacing: -0.01em;
}

.uitvoering-options-container {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	width: 100%;
}

.uitvoering-option {
	background: #F9F9F7;
	border: 2px solid #E8E8E8;
	border-radius: 10px;
	padding: 1.5rem;
	cursor: pointer;
	transition: all 0.2s ease;
	position: relative;
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	width: 100%;
	box-sizing: border-box;
}

.uitvoering-option:hover {
	border-color: #9BA98C;
	background: #FFFFFF;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.uitvoering-option.selected {
	border-color: #E29427;
	background: #FFF9F0;
	box-shadow: 0 4px 16px rgba(226, 148, 39, 0.15);
}

.uitvoering-option-icon {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #697757;
	transition: color 0.2s ease;
}

.uitvoering-option.selected .uitvoering-option-icon {
	color: #E29427;
}

.uitvoering-option-content {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
	text-align: left;
}

.uitvoering-option-title {
	font-size: 1.125rem;
	font-weight: 600;
	color: #2D3319;
	margin: 0;
	line-height: 1.3;
	text-align: left;
}

.uitvoering-option-subtitle {
	font-size: 0.875rem;
	color: #697757;
	margin: 0;
	line-height: 1.4;
	text-align: left;
}

.uitvoering-features-list {
	margin: 1rem 0 0 0;
	padding: 0;
	list-style: none;
	display: block;
}

.uitvoering-features-list li {
	font-size: 0.875rem;
	color: #4b5563;
	line-height: 1.6;
	padding-left: 1.5rem;
	margin-bottom: 0.5rem;
	position: relative;
}

.uitvoering-features-list li:before {
	content: '•';
	position: absolute;
	left: 0.5rem;
	color: #E29427;
	font-weight: bold;
}

/* Checkbox indicator */
.uitvoering-checkbox {
	flex-shrink: 0;
	width: 20px;
	height: 20px;
	border: 2px solid #D1D5DB;
	border-radius: 4px;
	background: white;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.2s ease;
	position: relative;
}

.uitvoering-option:hover .uitvoering-checkbox {
	border-color: #9BA98C;
}

.uitvoering-option.selected .uitvoering-checkbox {
	background: #E29427;
	border-color: #E29427;
}

.uitvoering-checkbox-inner {
	display: none;  /* Hidden - checkmark is added via ::after pseudo-element */
}

/* Checkmark icon when selected - consistent with other checkboxes */
.uitvoering-option.selected .uitvoering-checkbox::after {
	content: '';
	position: absolute;
	width: 5px;
	height: 10px;
	border: solid white;
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
	margin-top: -2px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
	.uitvoering-option {
		padding: 1rem;
		gap: 0.75rem;
	}

	.uitvoering-option-icon svg {
		width: 32px;
		height: 32px;
	}

	.uitvoering-option-title {
		font-size: 1rem;
	}

	.uitvoering-option-subtitle {
		font-size: 0.8125rem;
	}

	.uitvoering-features-list li {
		font-size: 0.8125rem;
	}
}
