/* =========================================================
   Medusa Restaurant — Table Reservation Form
   ========================================================= */

.medusa-res-wrap {
	display: flex;
	justify-content: center;
	padding: 2rem 1rem;
}

.medusa-res-card {
	background: #ffffff;
	border-radius: 12px;
	padding: 2rem 1.75rem;
	width: 100%;
	max-width: 460px;
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.10);
}

/* Title */
.medusa-res-title {
	font-size: 18px;
	font-weight: 700;
	color: #111;
	margin: 0 0 1.5rem;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

/* Alert */
.medusa-res-alert {
	border-radius: 6px;
	padding: 10px 14px;
	font-size: 14px;
	margin-bottom: 1rem;
}

.medusa-res-alert--success {
	background: #e9f7ef;
	color: #1e6f3e;
	border: 1px solid #b6dfca;
}

.medusa-res-alert--error {
	background: #fdf0f0;
	color: #b91c1c;
	border: 1px solid #f5c6c6;
}

/* Form */
.medusa-res-form {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

/* Field wrapper */
.medusa-res-field {
	display: flex;
	align-items: center;
	border: 1px solid #ddd;
	border-radius: 8px;
	padding: 0 14px;
	height: 52px;
	background: #fff;
	transition: border-color 0.2s;
}

.medusa-res-field:focus-within {
	border-color: #F5960A;
}

.medusa-res-field--textarea {
	height: auto;
	align-items: flex-start;
	padding: 12px 14px;
}

/* Icon */
.medusa-res-icon {
	font-size: 18px !important;
	color: #aaa;
	margin-right: 10px;
	flex-shrink: 0;
}

.medusa-res-field--textarea .medusa-res-icon {
	margin-top: 3px;
}

/* Chevron */
.medusa-res-chevron {
	font-size: 14px !important;
	color: #aaa;
	pointer-events: none;
	flex-shrink: 0;
}

/* Inputs */
.medusa-res-field input,
.medusa-res-field select,
.medusa-res-field textarea {
	flex: 1;
	border: none;
	outline: none;
	font-size: 15px;
	color: #333;
	background: transparent;
	font-family: inherit;
	appearance: none;
	-webkit-appearance: none;
}

.medusa-res-field select {
	cursor: pointer;
}

.medusa-res-field textarea {
	resize: none;
	line-height: 1.5;
}

/* Button */
.medusa-res-btn {
	width: 100%;
	height: 52px;
	background: #F5960A;
	border: none;
	border-radius: 10px;
	color: #fff;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	letter-spacing: 0.03em;
	margin-top: 4px;
	transition: background 0.2s, transform 0.1s;
}

.medusa-res-btn:hover {
	background: #d97f06;
}

.medusa-res-btn:active {
	transform: scale(0.98);
}

.medusa-res-btn:disabled {
	background: #f0c07a;
	cursor: not-allowed;
}

/* Notice */
.medusa-res-notice {
	font-size: 12px;
	color: #888;
	margin: 1rem 0 0;
	line-height: 1.5;
}
