/* Reserve panel — Saudia Keys brand: #FCF4ED bg, #E3A66E primary, #A25F34 accent. */

.sk-reserve {
	--sk-bg: #fcf4ed;
	--sk-primary: #e3a66e;
	--sk-accent: #a25f34;
	--sk-ink: #1a1a1a;
	--sk-line: #e7d9c9;
	max-width: 720px;
	margin: 0 auto;
	font-family: "Roboto", Arial, sans-serif;
	color: var(--sk-ink);
}

.sk-tabs {
	display: flex;
	gap: 4px;
	margin-bottom: 20px;
	border-bottom: 1px solid var(--sk-line);
}

.sk-tab {
	appearance: none;
	background: none;
	border: 0;
	border-bottom: 2px solid transparent;
	padding: 12px 18px;
	font: inherit;
	font-weight: 600;
	letter-spacing: .02em;
	color: #8a7a68;
	cursor: pointer;
	transition: color .15s, border-color .15s;
}

.sk-tab:hover {
	color: var(--sk-accent);
}

.sk-tab.is-active {
	color: var(--sk-accent);
	border-bottom-color: var(--sk-accent);
}

.sk-tab:focus-visible {
	outline: 2px solid var(--sk-accent);
	outline-offset: 2px;
}

.sk-panel {
	display: none;
}

.sk-panel.is-active {
	display: block;
}

.sk-row {
	display: grid;
	gap: 16px;
	margin-bottom: 16px;
}

.sk-row--2 {
	grid-template-columns: 1fr 1fr;
}

.sk-field {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.sk-label {
	font-size: 13px;
	font-weight: 600;
	color: #6a5c4c;
}

.sk-field input,
.sk-field select {
	width: 100%;
	padding: 11px 12px;
	border: 1px solid var(--sk-line);
	border-radius: 4px;
	background: #fff;
	font: inherit;
	color: var(--sk-ink);
	box-sizing: border-box;
}

.sk-field input:focus,
.sk-field select:focus {
	outline: none;
	border-color: var(--sk-primary);
	box-shadow: 0 0 0 3px rgba(227, 166, 110, .25);
}

.sk-field input[aria-invalid="true"] {
	border-color: #b32d2e;
}

.sk-error {
	font-size: 13px;
	color: #b32d2e;
}

/* Honeypot — off-screen, never shown to people. */
.sk-hp {
	position: absolute !important;
	left: -9999px !important;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.sk-summary {
	margin-top: 20px;
	padding: 18px;
	background: var(--sk-bg);
	border: 1px solid var(--sk-line);
	border-radius: 8px;
}

.sk-price {
	min-height: 40px;
	display: flex;
	align-items: baseline;
	gap: 10px;
	flex-wrap: wrap;
}

.sk-price__amount {
	font-family: "Lemon Milk", "Roboto", sans-serif;
	font-size: 32px;
	font-weight: 700;
	color: var(--sk-accent);
	line-height: 1;
}

.sk-price__meta {
	font-size: 14px;
	color: #6a5c4c;
}

.sk-price__hint {
	font-size: 14px;
	color: #8a7a68;
}

.sk-summary__note {
	margin: 12px 0 16px;
	font-size: 13px;
	line-height: 1.5;
	color: #6a5c4c;
}

.sk-submit {
	appearance: none;
	border: 0;
	width: 100%;
	padding: 14px 20px;
	background: var(--sk-primary);
	color: #fff;
	font: inherit;
	font-weight: 700;
	letter-spacing: .03em;
	border-radius: 4px;
	cursor: pointer;
	transition: background .15s;
}

.sk-submit:hover {
	background: var(--sk-accent);
}

.sk-submit:disabled {
	background: #d6c3ae;
	cursor: not-allowed;
}

.sk-submit:focus-visible {
	outline: 2px solid var(--sk-accent);
	outline-offset: 2px;
}

.sk-notice {
	margin-bottom: 20px;
	padding: 14px 16px;
	border-radius: 6px;
	font-size: 14px;
	line-height: 1.5;
}

.sk-notice--ok {
	background: #e8f5ec;
	border: 1px solid #a9d8ba;
	color: #0a5c2e;
}

.sk-notice--warn {
	background: #fdeeee;
	border: 1px solid #f0b8b8;
	color: #93231f;
}

@media (max-width: 560px) {
	.sk-row--2 {
		grid-template-columns: 1fr;
	}

	.sk-price__amount {
		font-size: 26px;
	}
}
