/**
 * Restaurant Landing Page Styles - Gastronomie
 * Eigene Bildwelt und gastronomie-spezifische Gestaltung
 */

/* ==========================================================================
   Hero Section mit Hintergrundbild
   ========================================================================== */

.restaurant-hero {
	position: relative;
	min-height: 90vh;
	display: flex;
	align-items: center;
	padding: 120px 0 80px;
	overflow: hidden;
}

.restaurant-hero-bg {
	position: absolute;
	inset: 0;
	z-index: 0;
	background: #1a1a1a;
}

.restaurant-hero-bg-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: blur(3px);
}

.restaurant-hero-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0,0,0,0.35);
}

.restaurant-hero-inner {
	position: relative;
	z-index: 1;
}

.restaurant-hero-content {
	max-width: 720px;
}

.restaurant-hero-title {
	font-size: clamp(2.5rem, 6vw, 4rem);
	font-weight: 800;
	line-height: 1.1;
	color: #fff;
	margin: 0 0 24px;
}

.restaurant-hero-line {
	display: block;
}

.restaurant-hero-accent {
	color: var(--color-accent, #f97316);
}

.restaurant-hero-sub {
	font-size: clamp(1.125rem, 2.5vw, 1.375rem);
	line-height: 1.6;
	color: rgba(255,255,255,0.9);
	margin: 0 0 32px;
	max-width: 580px;
}

.restaurant-hero-cta {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	margin-bottom: 32px;
}

.restaurant-hero-trust {
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
}

.restaurant-trust-item {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 0.9375rem;
	color: rgba(255,255,255,0.85);
}

.restaurant-trust-item svg {
	color: var(--color-accent, #f97316);
	flex-shrink: 0;
}

@media (max-width: 768px) {
	.restaurant-hero {
		min-height: auto;
		padding: 100px 0 60px;
	}

	.restaurant-hero-cta {
		flex-direction: column;
	}

	.restaurant-hero-cta .btn {
		width: 100%;
		justify-content: center;
	}

	.restaurant-hero-trust {
		flex-direction: column;
		gap: 12px;
	}
}

/* ==========================================================================
   Section Titles
   ========================================================================== */

.restaurant-section-title {
	font-size: clamp(1.75rem, 4vw, 2.5rem);
	font-weight: 700;
	line-height: 1.2;
	color: var(--color-text, #1a202c);
	margin: 0 0 16px;
	text-align: center;
}

.restaurant-section-lead {
	font-size: 1.125rem;
	color: var(--color-text-muted, #64748b);
	text-align: center;
	max-width: 640px;
	margin: 0 auto 48px;
}

/* ==========================================================================
   Problem Section
   ========================================================================== */

.restaurant-problem {
	background: var(--color-surface, #f8fafc);
	padding: 80px 0;
}

.restaurant-problem-content {
	max-width: 900px;
	margin: 0 auto;
}

.restaurant-problem-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	margin: 48px 0;
}

.restaurant-problem-card {
	padding: 28px;
	text-align: center;
}

.restaurant-problem-icon {
	width: 56px;
	height: 56px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 16px;
	background: var(--color-accent-light, #fff7ed);
	border-radius: 14px;
	color: var(--color-accent, #f97316);
}

.restaurant-problem-card p {
	font-size: 1rem;
	line-height: 1.6;
	color: var(--color-text, #1a202c);
	margin: 0;
}

.restaurant-problem-solution {
	font-size: clamp(1.25rem, 2.5vw, 1.5rem);
	font-weight: 700;
	color: var(--color-primary, #2563eb);
	text-align: center;
	margin: 0;
}

@media (max-width: 768px) {
	.restaurant-problem-grid {
		grid-template-columns: 1fr;
	}
}

/* ==========================================================================
   Scenarios Section mit Bildern
   ========================================================================== */

.restaurant-scenarios {
	position: relative;
	padding: 80px 0;
	overflow: hidden;
}

.restaurant-scenarios-bg {
	position: absolute;
	inset: 0;
	z-index: -1;
}

.restaurant-scenarios-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	margin-top: 48px;
}

.restaurant-scenario-card {
	background: #fff;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0,0,0,0.06);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.restaurant-scenario-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.restaurant-scenario-image {
	aspect-ratio: 16/10;
	overflow: hidden;
}

.restaurant-scenario-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.restaurant-scenario-card:hover .restaurant-scenario-image img {
	transform: scale(1.05);
}

.restaurant-scenario-content {
	padding: 24px;
}

.restaurant-scenario-content h3 {
	font-size: 1.125rem;
	font-weight: 700;
	color: var(--color-text, #1a202c);
	margin: 0 0 8px;
}

.restaurant-scenario-content p {
	font-size: 0.9375rem;
	line-height: 1.6;
	color: var(--color-text-muted, #64748b);
	margin: 0;
}

@media (max-width: 1024px) {
	.restaurant-scenarios-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

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

/* ==========================================================================
   How It Works Section
   ========================================================================== */

.restaurant-how {
	background: var(--color-surface, #f8fafc);
	padding: 80px 0;
}

.restaurant-how-steps {
	display: flex;
	justify-content: center;
	align-items: flex-start;
	gap: 16px;
	margin-top: 48px;
}

.restaurant-how-step {
	flex: 1;
	max-width: 220px;
	text-align: center;
	position: relative;
}

.restaurant-how-number {
	position: absolute;
	top: -8px;
	left: 50%;
	transform: translateX(-50%);
	width: 28px;
	height: 28px;
	background: var(--color-primary, #2563eb);
	color: #fff;
	font-size: 0.875rem;
	font-weight: 700;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 1;
}

.restaurant-how-icon {
	width: 80px;
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 16px;
	background: #fff;
	border-radius: 20px;
	box-shadow: 0 4px 20px rgba(0,0,0,0.08);
	color: var(--color-primary, #2563eb);
}

.restaurant-how-icon-accent {
	background: var(--color-accent, #f97316);
	color: #fff;
}

.restaurant-how-step h3 {
	font-size: 1rem;
	font-weight: 700;
	color: var(--color-text, #1a202c);
	margin: 0 0 8px;
}

.restaurant-how-step p {
	font-size: 0.875rem;
	line-height: 1.5;
	color: var(--color-text-muted, #64748b);
	margin: 0;
}

.restaurant-how-connector {
	width: 40px;
	height: 2px;
	background: var(--color-border, #e2e8f0);
	margin-top: 48px;
	flex-shrink: 0;
}

@media (max-width: 900px) {
	.restaurant-how-steps {
		flex-direction: column;
		align-items: center;
		gap: 32px;
	}

	.restaurant-how-step {
		max-width: 100%;
		display: flex;
		flex-direction: row;
		align-items: center;
		text-align: left;
		gap: 20px;
	}

	.restaurant-how-number {
		position: static;
		transform: none;
		flex-shrink: 0;
	}

	.restaurant-how-icon {
		margin: 0;
		flex-shrink: 0;
	}

	.restaurant-how-connector {
		width: 2px;
		height: 32px;
		margin: 0;
	}
}

/* ==========================================================================
   Benefits Section
   ========================================================================== */

.restaurant-benefits {
	position: relative;
	padding: 80px 0;
	overflow: hidden;
}

.restaurant-benefits-bg {
	position: absolute;
	inset: 0;
	z-index: -1;
}

.restaurant-benefits-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	margin-top: 48px;
}

.restaurant-benefit-card {
	padding: 28px;
	text-align: center;
	transition: transform 0.3s ease;
}

.restaurant-benefit-card:hover {
	transform: translateY(-8px);
}

.restaurant-benefit-icon {
	width: 64px;
	height: 64px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 16px;
	background: var(--color-primary-light, #eff6ff);
	border-radius: 16px;
	color: var(--color-primary, #2563eb);
}

.restaurant-benefit-icon-accent {
	background: var(--color-accent-light, #fff7ed);
	color: var(--color-accent, #f97316);
}

.restaurant-benefit-title {
	font-size: 1.0625rem;
	font-weight: 700;
	color: var(--color-text, #1a202c);
	margin: 0 0 8px;
}

.restaurant-benefit-text {
	font-size: 0.9375rem;
	line-height: 1.6;
	color: var(--color-text-muted, #64748b);
	margin: 0;
}

.restaurant-benefits-cta {
	text-align: center;
	margin-top: 48px;
}

@media (max-width: 1024px) {
	.restaurant-benefits-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

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

/* ==========================================================================
   Pricing Section
   ========================================================================== */

.restaurant-pricing {
	background: var(--color-surface, #f8fafc);
	padding: 80px 0;
}

.restaurant-pricing-examples {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	max-width: 900px;
	margin: 0 auto;
}

.restaurant-pricing-example {
	padding: 0;
	overflow: hidden;
}

.restaurant-pricing-example-header {
	padding: 20px 24px;
	background: var(--color-primary, #2563eb);
	color: #fff;
}

.restaurant-pricing-example-type {
	display: block;
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	opacity: 0.8;
	margin-bottom: 4px;
}

.restaurant-pricing-example-header h3 {
	font-size: 1.125rem;
	font-weight: 700;
	margin: 0;
}

.restaurant-pricing-example-details {
	padding: 20px 24px;
}

.restaurant-pricing-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 0;
	border-bottom: 1px solid var(--color-border, #e2e8f0);
	font-size: 0.9375rem;
}

.restaurant-pricing-row:last-child {
	border-bottom: none;
}

.restaurant-pricing-row span:first-child {
	color: var(--color-text-muted, #64748b);
}

.restaurant-pricing-row span:last-child {
	font-weight: 600;
	color: var(--color-text, #1a202c);
}

.restaurant-pricing-total {
	margin-top: 8px;
	padding-top: 14px;
	border-top: 2px solid var(--color-primary, #2563eb);
	border-bottom: none;
}

.restaurant-pricing-total span:last-child {
	font-size: 1.125rem;
	color: var(--color-accent, #f97316);
}

.restaurant-pricing-link {
	text-align: center;
	margin-top: 40px;
}

.btn-outline {
	background: transparent;
	border: 2px solid var(--color-primary, #2563eb);
	color: var(--color-primary, #2563eb);
}

.btn-outline:hover {
	background: var(--color-primary, #2563eb);
	color: #fff;
}

@media (max-width: 768px) {
	.restaurant-pricing-examples {
		grid-template-columns: 1fr;
	}
}

/* ==========================================================================
   Image Section (Parallax-Style)
   ========================================================================== */

.restaurant-image-section {
	height: 400px;
	overflow: hidden;
}

.restaurant-image-section-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

@media (max-width: 768px) {
	.restaurant-image-section {
		height: 250px;
	}
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */

.restaurant-faq {
	position: relative;
	padding: 80px 0;
	overflow: hidden;
}

.restaurant-faq-bg {
	position: absolute;
	inset: 0;
	z-index: -1;
}

.restaurant-faq-list {
	max-width: 800px;
	margin: 48px auto 0;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.restaurant-faq-item {
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 2px 10px rgba(0,0,0,0.04);
	overflow: hidden;
}

.restaurant-faq-question {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 20px 24px;
	font-size: 1.0625rem;
	font-weight: 600;
	color: var(--color-text, #1a202c);
	cursor: pointer;
	list-style: none;
}

.restaurant-faq-question::-webkit-details-marker {
	display: none;
}

.restaurant-faq-question span {
	flex: 1;
}

.restaurant-faq-arrow {
	flex-shrink: 0;
	color: var(--color-text-muted, #64748b);
	transition: transform 0.3s ease;
}

.restaurant-faq-item[open] .restaurant-faq-arrow {
	transform: rotate(180deg);
}

.restaurant-faq-answer {
	padding: 0 24px 20px;
}

.restaurant-faq-answer p {
	font-size: 1rem;
	line-height: 1.7;
	color: var(--color-text-muted, #64748b);
	margin: 0;
}

/* ==========================================================================
   CTA Section mit Hintergrundbild
   ========================================================================== */

.restaurant-cta {
	position: relative;
	padding: 100px 0;
	overflow: hidden;
	/* The .restaurant-cta-bg child sits at z-index -1, which without a stacking
	   context here paints behind the white page background instead of behind
	   this section - the photo and gradient never showed and the white CTA text
	   was invisible on white. */
	isolation: isolate;
}

.restaurant-cta-bg {
	position: absolute;
	inset: 0;
	z-index: -1;
}

.restaurant-cta-bg-img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	/* The image follows the gradient in the DOM, so without this it paints over
	   the scrim and the white copy becomes unreadable on the photo. */
	z-index: 0;
}

.restaurant-cta-gradient {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(30, 64, 175, 0.95) 0%, rgba(26, 54, 93, 0.92) 100%);
	z-index: 1;
}

.restaurant-cta .container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	/* Top, not center: the embedded registration form is far taller than the
	   copy, and centering pushed the heading into the middle of the section. */
	align-items: start;
}

.restaurant-cta-content {
	color: #fff;
	/* Keep the copy beside the form while scrolling past its full height. */
	position: sticky;
	top: 120px;
}

.restaurant-cta-title,
.restaurant-cta-text {
	/* The global "h1, h2, h3, h4" rule sets a dark heading colour that wins
	   over the inherited white of .restaurant-cta-content. */
	color: #fff;
}

.restaurant-cta-title {
	font-size: clamp(1.75rem, 4vw, 2.5rem);
	font-weight: 700;
	line-height: 1.2;
	margin: 0 0 16px;
}

.restaurant-cta-text {
	font-size: 1.125rem;
	line-height: 1.6;
	opacity: 0.9;
	margin: 0;
}

.restaurant-cta-form {
	max-width: 480px;
}

.restaurant-form-card {
	padding: 32px;
}

.restaurant-cta-buttons {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.restaurant-cta-buttons .btn {
	justify-content: center;
}

.restaurant-form-admin-note {
	font-size: 0.875rem;
	color: var(--color-text-muted, #64748b);
	text-align: center;
	padding: 24px;
	background: var(--color-surface, #f8fafc);
	border-radius: 8px;
}

@media (max-width: 1024px) {
	.restaurant-cta .container {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.restaurant-cta-form {
		max-width: 100%;
	}

	/* One column: sticking the copy would pin it over the form while scrolling
	   through the fields below it. */
	.restaurant-cta-content {
		position: static;
	}
}

/* ==========================================================================
   Utility Classes
   ========================================================================== */

.reveal {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
	opacity: 1;
	transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

.glass-card {
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border-radius: 16px;
	box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.8);
}

.light-blob {
	position: absolute;
	border-radius: 50%;
	filter: blur(80px);
	opacity: 0.4;
}

.light-blob-blue {
	width: 400px;
	height: 400px;
	background: var(--color-primary, #2563eb);
	top: 20%;
	left: -10%;
}

.light-blob-orange {
	width: 300px;
	height: 300px;
	background: var(--color-accent, #f97316);
	bottom: 20%;
	right: -5%;
}

.light-blob-parallax {
	position: absolute;
	inset: 0;
	pointer-events: none;
}

/* ==========================================================================
   Demo Section (Restaurant)
   ========================================================================== */

.restaurant-demo {
	position: relative;
	padding: 100px 0;
	background: var(--color-surface, #f8fafc);
	overflow: hidden;
}

.restaurant-demo-bg {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.restaurant-demo > .container {
	position: relative;
	z-index: 1;
}

.restaurant-demo .section-header {
	max-width: 700px;
	margin: 0 auto 64px;
}

.restaurant-demo .restaurant-section-lead {
	font-size: 1.125rem;
	line-height: 1.7;
	color: var(--color-text-muted, #64748b);
	margin-top: 16px;
}

.restaurant-demo-flow {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: flex-start;
	gap: 8px;
	margin-bottom: 64px;
}

.restaurant-demo-step {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
	padding: 16px 12px;
	text-align: center;
	position: relative;
	min-width: 120px;
	max-width: 160px;
}

.restaurant-demo-step-number {
	position: absolute;
	top: 0;
	right: 8px;
	width: 24px;
	height: 24px;
	background: var(--color-accent, #f97316);
	color: #fff;
	font-size: 0.75rem;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
}

.restaurant-demo-step-icon {
	width: 64px;
	height: 64px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--color-primary-light, #eff6ff);
	border-radius: 16px;
	color: var(--color-primary, #2563eb);
}

.restaurant-demo-step-icon-accent {
	background: var(--color-accent-light, #fff7ed);
	color: var(--color-accent, #f97316);
}

.restaurant-demo-step-label {
	font-size: 0.875rem;
	font-weight: 500;
	color: var(--color-text, #1a202c);
	line-height: 1.4;
}

.restaurant-demo-connector {
	width: 32px;
	height: 2px;
	background: linear-gradient(90deg, var(--color-primary, #2563eb) 0%, var(--color-accent, #f97316) 100%);
	margin-top: 44px;
	flex-shrink: 0;
}

@media (max-width: 768px) {
	.restaurant-demo-flow {
		flex-direction: column;
		align-items: center;
		gap: 0;
	}

	.restaurant-demo-step {
		flex-direction: row;
		text-align: left;
		max-width: 100%;
		width: 100%;
		padding: 12px 0;
		gap: 16px;
	}

	.restaurant-demo-step-number {
		position: static;
	}

	.restaurant-demo-connector {
		width: 2px;
		height: 24px;
		margin: 0 0 0 76px;
	}
}

.restaurant-demo-features {
	background: #fff;
	border-radius: 20px;
	padding: 40px;
	margin-bottom: 48px;
	box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
}

.restaurant-demo-features-title {
	font-size: 1.25rem;
	font-weight: 600;
	color: var(--color-text, #1a202c);
	margin: 0 0 24px;
	text-align: center;
}

.restaurant-demo-features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 16px;
}

.restaurant-demo-feature {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px 16px;
	background: var(--color-surface, #f8fafc);
	border-radius: 10px;
}

.restaurant-demo-feature svg {
	flex-shrink: 0;
	color: var(--color-accent, #f97316);
}

.restaurant-demo-feature span {
	font-size: 0.9375rem;
	color: var(--color-text, #1a202c);
}

.restaurant-demo-sandbox {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	max-width: 700px;
	margin: 0 auto 48px;
	padding: 24px;
	background: rgba(37, 99, 235, 0.05);
	border-radius: 16px;
	border: 1px solid rgba(37, 99, 235, 0.15);
}

.restaurant-demo-sandbox-icon {
	flex-shrink: 0;
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--color-primary-light, #eff6ff);
	border-radius: 12px;
	color: var(--color-primary, #2563eb);
}

.restaurant-demo-sandbox-text {
	font-size: 0.9375rem;
	line-height: 1.6;
	color: var(--color-text, #1a202c);
	margin: 0;
}

.restaurant-demo-cta {
	display: flex;
	justify-content: center;
	gap: 16px;
	flex-wrap: wrap;
}

/* ==========================================================================
   Demo Form Section (Restaurant)
   ========================================================================== */

.restaurant-demo-form {
	position: relative;
	padding: 100px 0;
	overflow: hidden;
}

.restaurant-demo-form-bg {
	position: absolute;
	inset: 0;
	z-index: -1;
}

.restaurant-demo-form-gradient {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark, #1a365d) 100%);
}

.restaurant-demo-form-content {
	text-align: center;
	color: #fff;
	max-width: 600px;
	margin: 0 auto 48px;
}

.restaurant-demo-form-title {
	font-size: clamp(1.75rem, 4vw, 2.5rem);
	font-weight: 700;
	line-height: 1.2;
	margin: 0 0 16px;
}

.restaurant-demo-form-text {
	font-size: 1.125rem;
	line-height: 1.6;
	opacity: 0.9;
	margin: 0;
}

.restaurant-demo-form-card {
	max-width: 640px;
	margin: 0 auto;
	padding: 40px;
}

.restaurant-demo-request-form {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.restaurant-form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}

@media (max-width: 640px) {
	.restaurant-form-row {
		grid-template-columns: 1fr;
	}
}

.restaurant-form-group {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.restaurant-form-group label {
	font-size: 0.875rem;
	font-weight: 500;
	color: var(--color-text, #1a202c);
}

.restaurant-form-group .required {
	color: var(--color-accent, #f97316);
}

.restaurant-form-group input,
.restaurant-form-group select,
.restaurant-form-group textarea {
	padding: 12px 16px;
	font-size: 1rem;
	border: 1px solid var(--color-border, #e2e8f0);
	border-radius: 10px;
	background: #fff;
	color: var(--color-text, #1a202c);
	transition: border-color 0.2s, box-shadow 0.2s;
}

.restaurant-form-group input:focus,
.restaurant-form-group select:focus,
.restaurant-form-group textarea:focus {
	outline: none;
	border-color: var(--color-primary, #2563eb);
	box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.restaurant-form-group input::placeholder,
.restaurant-form-group textarea::placeholder {
	color: var(--color-text-muted, #94a3b8);
}

.restaurant-form-group select {
	cursor: pointer;
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 12px center;
	background-size: 16px;
	padding-right: 40px;
}

.restaurant-form-group textarea {
	resize: vertical;
	min-height: 80px;
}

.restaurant-form-submit {
	text-align: center;
	margin-top: 8px;
}

.restaurant-form-submit .btn {
	min-width: 240px;
}

.restaurant-form-privacy {
	font-size: 0.8125rem;
	color: var(--color-text-muted, #64748b);
	text-align: center;
	margin: 0;
}

.restaurant-form-privacy a {
	color: var(--color-primary, #2563eb);
	text-decoration: underline;
}
