/* Ellstorp Forms — specificity-hardened against theme overrides */
.ellstorp-form,
.ellstorp-form * {
	box-sizing: border-box;
}
.ellstorp-form {
	max-width: 560px;
	margin: 0 auto;
	font-family: inherit;
	color: #111;
}

/* ---- Reservation card ---- */
.ellstorp-form.ellstorp-reservation .ellstorp-form__inner {
	background: #fff;
	border-radius: 16px;
	padding: 32px 28px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

.ellstorp-form .ellstorp-form__logo {
	text-align: center;
	margin-bottom: 24px;
}
.ellstorp-form .ellstorp-form__logo img {
	max-width: 180px;
	height: auto;
	display: inline-block;
}

/* ---- Fields (default = boxed, reservation) ---- */
.ellstorp-form .ellstorp-field {
	margin: 0 0 18px !important;
	padding: 0 !important;
	position: relative;
}
.ellstorp-form .ellstorp-field label {
	display: block !important;
	margin: 0 0 6px !important;
	padding: 0 !important;
	font-weight: 600 !important;
	font-size: 16px !important;
	color: #111 !important;
	line-height: 1.3 !important;
}

.ellstorp-form .ellstorp-field input[type="text"],
.ellstorp-form .ellstorp-field input[type="email"],
.ellstorp-form .ellstorp-field input[type="tel"],
.ellstorp-form .ellstorp-field input[type="date"],
.ellstorp-form .ellstorp-field input[type="number"],
.ellstorp-form .ellstorp-field select,
.ellstorp-form .ellstorp-field textarea {
	display: block !important;
	width: 100% !important;
	max-width: 100% !important;
	padding: 12px 14px !important;
	margin: 0 !important;
	font-size: 16px !important;
	line-height: 1.4 !important;
	border: 1px solid #d9d9d9 !important;
	border-radius: 8px !important;
	background: #fff !important;
	color: #111 !important;
	font-family: inherit !important;
	box-shadow: none !important;
	transition: border-color .15s ease, box-shadow .15s ease;
	-webkit-appearance: none !important;
	-moz-appearance: none !important;
	appearance: none !important;
	height: auto !important;
	min-height: 0 !important;
}
.ellstorp-form .ellstorp-field textarea {
	min-height: 120px !important;
	resize: vertical !important;
}
.ellstorp-form .ellstorp-field select {
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='none' stroke='%23333' stroke-width='2' d='M1 1l5 5 5-5'/></svg>") !important;
	background-repeat: no-repeat !important;
	background-position: right 14px center !important;
	padding-right: 40px !important;
}
.ellstorp-form .ellstorp-field input:focus,
.ellstorp-form .ellstorp-field select:focus,
.ellstorp-form .ellstorp-field textarea:focus {
	outline: none !important;
	border-color: #111 !important;
	box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.08) !important;
}

.ellstorp-form .ellstorp-row {
	display: grid !important;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}
@media (max-width: 480px) {
	.ellstorp-form .ellstorp-row { grid-template-columns: 1fr; }
}

/* ---- Contact form: pure underline inputs (like original) ---- */
.ellstorp-form.ellstorp-contact .ellstorp-form__inner {
	background: transparent;
	box-shadow: none;
	padding: 0;
}
.ellstorp-form.ellstorp-contact .ellstorp-field {
	margin: 0 0 28px !important;
}
.ellstorp-form.ellstorp-contact .ellstorp-field input[type="text"],
.ellstorp-form.ellstorp-contact .ellstorp-field input[type="email"],
.ellstorp-form.ellstorp-contact .ellstorp-field input[type="tel"],
.ellstorp-form.ellstorp-contact .ellstorp-field textarea {
	border: 0 !important;
	border-bottom: 1px solid #999 !important;
	border-radius: 0 !important;
	padding: 14px 0 10px !important;
	background: transparent !important;
	box-shadow: none !important;
	color: #333 !important;
	font-weight: 700;
}
.ellstorp-form.ellstorp-contact .ellstorp-field textarea {
	min-height: 140px !important;
}
.ellstorp-form.ellstorp-contact .ellstorp-field input:focus,
.ellstorp-form.ellstorp-contact .ellstorp-field textarea:focus {
	border-bottom-color: #111 !important;
	box-shadow: none !important;
}
.ellstorp-form.ellstorp-contact .ellstorp-field input::placeholder,
.ellstorp-form.ellstorp-contact .ellstorp-field textarea::placeholder {
	color: #9a9a9a;
	font-weight: 700;
	text-transform: none;
	opacity: 1;
}

/* ---- Honeypot ---- */
.ellstorp-form .ellstorp-hp {
	position: absolute !important;
	left: -10000px !important;
	top: auto !important;
	width: 1px !important;
	height: 1px !important;
	overflow: hidden !important;
	opacity: 0 !important;
	pointer-events: none !important;
}

/* ---- Submit button ---- */
.ellstorp-form .ellstorp-submit {
	margin-top: 24px !important;
	padding: 0 !important;
	text-align: center;
}
.ellstorp-form button.ellstorp-btn,
.ellstorp-form .ellstorp-submit .ellstorp-btn {
	display: block !important;
	width: 100% !important;
	padding: 16px 24px !important;
	margin: 0 !important;
	background: #000 !important;
	background-color: #000 !important;
	background-image: none !important;
	color: #fff !important;
	border: 0 !important;
	border-radius: 999px !important;
	font-size: 16px !important;
	font-weight: 600 !important;
	line-height: 1.2 !important;
	cursor: pointer !important;
	font-family: inherit !important;
	text-transform: none !important;
	text-decoration: none !important;
	box-shadow: none !important;
	transition: background-color .15s ease, opacity .15s ease;
	-webkit-appearance: none !important;
	appearance: none !important;
	letter-spacing: normal !important;
	min-height: 0 !important;
	height: auto !important;
}
.ellstorp-form button.ellstorp-btn:hover,
.ellstorp-form .ellstorp-submit .ellstorp-btn:hover {
	background: #222 !important;
	background-color: #222 !important;
	color: #fff !important;
	opacity: 1;
}
.ellstorp-form button.ellstorp-btn:focus,
.ellstorp-form .ellstorp-submit .ellstorp-btn:focus {
	outline: 2px solid rgba(0, 0, 0, 0.25);
	outline-offset: 2px;
}
.ellstorp-form button.ellstorp-btn[disabled],
.ellstorp-form .ellstorp-submit .ellstorp-btn[disabled] {
	background: #777 !important;
	background-color: #777 !important;
	cursor: not-allowed !important;
}

/* ---- Turnstile & errors ---- */
.ellstorp-form .ellstorp-turnstile {
	margin: 16px 0 4px;
}

.ellstorp-form .ellstorp-error {
	display: block;
	margin-top: 4px;
	color: #c0392b;
	font-size: 13px;
	min-height: 1em;
}
.ellstorp-form .ellstorp-field.has-error input,
.ellstorp-form .ellstorp-field.has-error select,
.ellstorp-form .ellstorp-field.has-error textarea {
	border-color: #c0392b !important;
}

.ellstorp-form .ellstorp-form__feedback {
	display: none;
	padding: 12px 16px;
	border-radius: 8px;
	margin-bottom: 16px;
	font-size: 15px;
}
.ellstorp-form .ellstorp-form__feedback.is-success {
	display: block;
	background: #e8f5ec;
	color: #1a5d31;
	border: 1px solid #9fd3b0;
}
.ellstorp-form .ellstorp-form__feedback.is-error {
	display: block;
	background: #fdecea;
	color: #8a1d13;
	border: 1px solid #f3a9a2;
}

.ellstorp-form.is-loading .ellstorp-btn { opacity: .7; }
