/* Hearts of Harris – Table Reservations (front-end) */
.hoh-res-wrap { max-width: 720px; margin: 0 auto; }
.hoh-res-form {
	background: #fff;
	border: 1px solid #ece5df;
	border-radius: 10px;
	padding: 26px;
	box-shadow: 0 6px 24px rgba(0, 0, 0, .05);
}
.hoh-res-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
	margin-bottom: 16px;
}
.hoh-res-field { display: flex; flex-direction: column; margin-bottom: 4px; }
.hoh-res-field label { font-weight: 600; margin-bottom: 6px; font-size: 14px; color: #3a2b25; }
.hoh-res-field label span { color: #b3261e; }
.hoh-res-form input,
.hoh-res-form select,
.hoh-res-form textarea {
	width: 100%;
	padding: 11px 12px;
	border: 1px solid #d8cfc7;
	border-radius: 7px;
	font-size: 15px;
	background: #fdfbf9;
	box-sizing: border-box;
}
.hoh-res-form input:focus,
.hoh-res-form select:focus,
.hoh-res-form textarea:focus {
	outline: none;
	border-color: #7a1f1f;
	box-shadow: 0 0 0 3px rgba(122, 31, 31, .12);
}

/* Seating preview */
.hoh-res-seating {
	background: #faf6f2;
	border: 1px solid #ece0d6;
	border-radius: 8px;
	padding: 16px 18px;
	margin-bottom: 18px;
}
.hoh-res-seating-msg { font-size: 15px; line-height: 1.5; color: #4a3b33; }
.hoh-res-good { color: #1a7f37; font-weight: 700; }
.hoh-res-warn { color: #b26a00; font-weight: 700; }
.hoh-res-bad  { color: #b3261e; font-weight: 600; }

.hoh-res-extra { margin-top: 14px; padding-top: 14px; border-top: 1px dashed #ddcfc4; }
.hoh-res-extra label { display: block; font-weight: 600; margin-bottom: 8px; color: #3a2b25; }
.hoh-res-stepper { display: inline-flex; align-items: center; gap: 0; border: 1px solid #d8cfc7; border-radius: 7px; overflow: hidden; background: #fff; }
.hoh-res-stepper .hoh-step {
	width: 42px; height: 42px; border: none; background: #7a1f1f; color: #fff;
	font-size: 22px; line-height: 1; cursor: pointer;
}
.hoh-res-stepper .hoh-step:hover { background: #641818; }
.hoh-res-stepper input {
	width: 64px !important; text-align: center; border: none !important;
	border-radius: 0 !important; background: #fff !important; -moz-appearance: textfield;
}
.hoh-res-stepper input::-webkit-outer-spin-button,
.hoh-res-stepper input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.hoh-res-hint { font-size: 12.5px; color: #8a7a70; margin: 8px 0 0; }

/* Alert + submit */
.hoh-res-alert {
	padding: 12px 16px; border-radius: 7px; margin-bottom: 16px; font-size: 14.5px;
	background: #fdecea; color: #8a1c13; border: 1px solid #f5c6c0;
}
.hoh-res-submit {
	background: #7a1f1f; color: #fff; border: none; padding: 14px 28px;
	font-size: 16px; font-weight: 700; border-radius: 8px; cursor: pointer;
	width: 100%; transition: background .15s ease;
}
.hoh-res-submit:hover { background: #641818; }
.hoh-res-submit:disabled { opacity: .6; cursor: not-allowed; }

.hoh-res-success {
	background: #eaf7ee; border: 1px solid #b6e0c2; color: #1a7f37;
	padding: 22px; border-radius: 8px; font-size: 16px; text-align: center; line-height: 1.6;
}

/* Honeypot */
.hoh-res-hp { position: absolute; left: -9999px; top: -9999px; height: 0; width: 0; overflow: hidden; }

@media (max-width: 560px) {
	.hoh-res-grid { grid-template-columns: 1fr; }
	.hoh-res-form { padding: 18px; }
}
