/* Skip Intro Reservierungen – Frontend-Formular */

.sitr-form-wrap {
	max-width: 680px;
	margin: 0 auto;
	font-family: inherit;
}

/* Notices */
.sitr-notice {
	padding: 14px 18px;
	border-radius: 4px;
	margin-bottom: 20px;
	font-size: 0.95em;
	line-height: 1.5;
}

.sitr-notice-success {
	background: #d4edda;
	border: 1px solid #b8dfc5;
	color: #155724;
}

.sitr-notice-error {
	background: #f8d7da;
	border: 1px solid #f1aeb5;
	color: #842029;
}

/* Layout */
#sitr-booking-form {
	display: block !important;
	width: 100% !important;
	max-width: 100% !important;
	padding: 0 !important;
	margin: 0 !important;
	box-sizing: border-box !important;
}

.sitr-row {
	display: grid !important;
	margin: 0 !important;
	padding: 0 !important;
	width: 100% !important;
	max-width: 100% !important;
	box-sizing: border-box !important;
}

.sitr-three-col {
	grid-template-columns: 1fr 1fr 1fr !important;
	gap: 16px;
}

.sitr-two-col {
	grid-template-columns: 1fr 1fr !important;
	gap: 16px;
}

.sitr-field {
	margin-bottom: 18px;
	width: 100%;
	box-sizing: border-box;
}

.sitr-field label {
	display: block;
	margin-bottom: 6px;
	font-weight: 600;
	font-size: 0.9em;
	color: #fff;
	text-align: left;
}

.sitr-required {
	color: #c0392b;
	margin-left: 2px;
}

/* Input-Wrapper mit Icon */
.sitr-input-wrap {
	position: relative;
}

.sitr-input-wrap input,
.sitr-input-wrap select {
	padding-right: 42px;
}

/* Icon-Button (Datum – klickbar) */
.sitr-icon-btn {
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
	background: none;
	border: none;
	padding: 2px;
	cursor: pointer;
	display: flex;
	align-items: center;
	line-height: 0;
}

.sitr-icon-btn img {
	width: 22px;
	height: 22px;
}

/* Icon-Dekoration (Uhrzeit – nicht klickbar) */
.sitr-icon-dec {
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
	pointer-events: none;
	display: flex;
	align-items: center;
	line-height: 0;
}

.sitr-icon-dec img {
	width: 22px;
	height: 22px;
}

/* Inputs */
.sitr-field input[type="text"],
.sitr-field input[type="tel"],
.sitr-field input[type="email"],
.sitr-field input[type="number"],
.sitr-field select,
.sitr-field textarea {
	width: 100%;
	padding: 10px 14px;
	border: 1px solid #ccc;
	border-radius: 4px;
	font-size: 1em;
	font-family: inherit;
	background: #fff;
	color: #333;
	box-sizing: border-box;
	transition: border-color 0.15s ease;
}

/* Nativen Select-Pfeil entfernen */
.sitr-field select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	cursor: pointer;
}

.sitr-field input[type="number"] {
	-moz-appearance: textfield;
}

.sitr-field input[type="number"]::-webkit-inner-spin-button,
.sitr-field input[type="number"]::-webkit-outer-spin-button {
	opacity: 1;
}

.sitr-field input:focus,
.sitr-field select:focus,
.sitr-field textarea:focus {
	outline: none;
	border-color: #333;
	box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.08);
}

.sitr-field textarea {
	resize: vertical;
	min-height: 100px;
}

/* Flatpickr alt-Input */
.sitr-field input.flatpickr-input.flatpickr-alt-input {
	background: #fff;
	cursor: pointer;
}

/* Privacy note */
.sitr-privacy-note {
	font-size: 0.8em;
	color: #fff;
	text-align: left;
	margin-bottom: 18px;
	line-height: 1.5;
}

/* Submit-Button */
.sitr-btn {
	display: inline-block;
	padding: 13px 32px;
	background: #D5B36A;
	color: #490C76;
	border: none;
	border-radius: 50px;
	font-size: 1em;
	font-family: inherit;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.15s ease, color 0.15s ease;
}

.sitr-btn:hover {
	background: #8B6665;
	color: #fff;
}

.sitr-btn:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}

/* Responsive */
@media ( max-width: 600px ) {
	.sitr-row.sitr-two-col,
	.sitr-row.sitr-three-col {
		grid-template-columns: 1fr !important;
		gap: 0;
	}
}
