/* ═══════════════════════════════════════════════════════════════
   FOUR COUNTIES SPICE — SMART MENU STYLES
   Spice-grouped mains slider + compact starters grid
   All responsive: desktop (5-col), tablet (3-col), mobile (1-col)
═══════════════════════════════════════════════════════════════ */

/* ─── Shared panel container ─────────────────────────────────── */
.smt-panel {
	display: none;
	animation: smtFadeIn .3s ease;
}
.smt-panel.is-active { display: block; }

@keyframes smtFadeIn {
	from { opacity: 0; transform: translateY(8px); }
	to   { opacity: 1; transform: translateY(0); }
}

/* ─── Section heading ────────────────────────────────────────── */
.smt-section-head {
	text-align: center;
	margin: 1.2rem 0 1.6rem;
}

.smt-cat-title {
	font-family: 'Playfair Display', serif;
	font-size: clamp(22px, 2.5vw, 30px);
	font-weight: 600;
	color: #2a1810;
	margin: 0;
}

/* ─── STARTERS: compact grid ─────────────────────────────────── */
.smt-starters-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
	gap: 8px;
	margin-bottom: 1.6rem;
}

.smt-starter-card {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	background: rgba(255,255,255,0.55);
	border: 1px solid transparent;
	border-radius: 4px 14px 4px 14px;
	padding: 11px 12px;
	text-decoration: none;
	transition: background .3s ease, border-color .3s ease, transform .3s ease, box-shadow .3s ease;
}

.smt-starter-card:hover {
	background: rgba(255,255,255,0.95);
	border-color: #e3bb4a;
	transform: translateY(-3px);
	box-shadow: 0 8px 18px rgba(74,15,18,.09);
}

.smt-starter-name {
	font-family: 'Playfair Display', serif;
	font-size: 13px;
	font-weight: 600;
	color: #2a1810;
	line-height: 1.3;
	margin-bottom: 7px;
}

.smt-order-link {
	font-size: 9.5px;
	font-weight: 600;
	letter-spacing: .4px;
	text-transform: uppercase;
	color: #a8821f;
}

.smt-starter-card:hover .smt-order-link { color: #4a0f12; }

/* ─── MAINS: spice sections ──────────────────────────────────── */
.smt-spice-section {
	margin-bottom: 2.4rem;
}

.smt-spice-header {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 1rem;
	padding: 8px 14px;
	border-radius: 6px 2px 6px 2px;
	background: rgba(255,255,255,0.7);
}

.smt-spice-icon {
	font-size: 18px;
	line-height: 1;
	flex-shrink: 0;
}

.smt-spice-title {
	font-family: 'Playfair Display', serif;
	font-size: 20px;
	font-weight: 700;
	margin: 0;
	flex-shrink: 0;
	letter-spacing: .3px;
}

.smt-spice-rule {
	flex: 1;
	height: 1px;
}

/* ─── Slider wrapper ─────────────────────────────────────────── */
.smt-slider-wrap {
	position: relative;
	display: flex;
	align-items: flex-start;
	gap: 6px;
}

.smt-slider {
	flex: 1;
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 10px;
	min-height: 140px;
}

/* ─── Dish cards ─────────────────────────────────────────────── */
.smt-dish-card {
	display: none;
	flex-direction: column;
	background: rgba(255,255,255,0.55);
	border: 1px solid transparent;
	border-radius: 4px 14px 4px 14px;
	padding: 14px 13px;
	transition: background .3s ease, border-color .3s ease, transform .3s ease, box-shadow .3s ease;
}

.smt-dish-card.is-visible {
	display: flex;
	animation: smtFadeIn .3s ease;
}

.smt-dish-card:hover {
	background: rgba(255,255,255,0.95);
	border-color: #e3bb4a;
	transform: translateY(-3px);
	box-shadow: 0 10px 22px rgba(74,15,18,.10);
}

.smt-dish-top {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 6px;
	margin-bottom: 6px;
}

.smt-dish-name {
	font-family: 'Playfair Display', serif;
	font-size: 13.5px;
	font-weight: 600;
	color: #2a1810;
	line-height: 1.3;
}

.smt-dish-price {
	font-size: 12px;
	font-weight: 600;
	color: #a8821f;
	white-space: nowrap;
	flex-shrink: 0;
}

.smt-dish-desc {
	font-size: 11px;
	color: #6b5847;
	line-height: 1.5;
	margin: 0 0 10px;
	flex: 1;
}

.smt-order-btn {
	font-size: 9.5px;
	font-weight: 600;
	letter-spacing: .4px;
	text-transform: uppercase;
	color: #a8821f;
	text-decoration: none;
	transition: color .25s ease;
}

.smt-dish-card:hover .smt-order-btn { color: #4a0f12; }

/* ─── Arrow buttons ──────────────────────────────────────────── */
.smt-arrow {
	flex-shrink: 0;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	border: 1px solid rgba(168,130,31,0.3);
	background: rgba(255,255,255,0.7);
	color: #4a0f12;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: background .25s ease, border-color .25s ease, transform .25s ease;
	margin-top: 50px;
	align-self: flex-start;
}

.smt-arrow:hover {
	background: #4a0f12;
	color: #f7f1e4;
	border-color: #4a0f12;
	transform: scale(1.08);
}

/* ─── Dot pagination ─────────────────────────────────────────── */
.smt-dots {
	display: flex;
	justify-content: center;
	gap: 6px;
	margin-top: 12px;
}

.smt-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	border: none;
	background: #d8c9a8;
	cursor: pointer;
	transition: background .25s ease, transform .25s ease;
}

.smt-dot.is-active {
	background: #4a0f12;
	transform: scale(1.3);
}

.smt-dot:hover { background: #a8821f; }

/* ─── Tablet: 3 columns ──────────────────────────────────────── */
@media (max-width: 1024px) {
	.smt-slider {
		grid-template-columns: repeat(3, 1fr);
	}
}

/* ─── Swipe hint (mobile only) ──────────────────────────────── */
.smt-swipe-hint {
	display: none;
	text-align: center;
	font-size: 11px;
	color: #a8821f;
	letter-spacing: .4px;
	margin-top: 10px;
	font-style: italic;
}

/* ─── Mobile: 1 column, keep small arrows, show swipe hint ──── */
@media (max-width: 640px) {
	.smt-slider {
		grid-template-columns: 1fr;
		gap: 8px;
	}

	.smt-arrow {
		display: flex;
		width: 28px;
		height: 28px;
		margin-top: 36px;
	}

	.smt-swipe-hint {
		display: block;
	}

	.smt-starters-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.smt-spice-title { font-size: 16px; }
	.smt-dish-name   { font-size: 13px; }
}

@media (max-width: 360px) {
	.smt-starters-grid { grid-template-columns: 1fr; }
}

/* ─── Reduced motion ─────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
	.smt-panel,
	.smt-dish-card,
	.smt-starter-card,
	.smt-arrow { animation: none !important; transition: none !important; }
}
