/**
 * Turma Restaurant Manager — front-end styles.
 * Self-contained so the plugin looks right on any theme, including Twenty
 * Twenty-Four. The theme may override --turma-* tokens to match its palette.
 */

:root {
	--turma-saffron: #e87722;
	--turma-terracotta: #c05621;
	--turma-olive: #1f7a3d;
	--turma-olive-deep: #145c2c;
	--turma-charcoal: #24201b;
	--turma-ink: #2c2620;
	--turma-cream: #fbf7ef;
	--turma-sand: #f1e9db;
	--turma-line: #e4d9c6;
	--turma-muted: #7a6f60;
	--turma-veg: #1f8a3b;
	--turma-nonveg: #c0392b;
	--turma-wa: #25d366;
	--turma-radius: 14px;
	--turma-shadow: 0 12px 40px rgba(36, 32, 27, 0.16);
	--turma-serif: "Playfair Display", Georgia, "Times New Roman", serif;
	--turma-sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.turma-menu,
.turma-featured,
.turma-locations,
.turma-booking,
.turma-cart,
.turma-citymodal {
	font-family: var(--turma-sans);
	color: var(--turma-ink);
	box-sizing: border-box;
}
.turma-menu *,
.turma-featured *,
.turma-locations *,
.turma-booking *,
.turma-cart *,
.turma-citymodal * { box-sizing: border-box; }

.turma-noscroll { overflow: hidden; }

.screen-reader-text {
	position: absolute !important;
	width: 1px; height: 1px;
	overflow: hidden; clip: rect(1px,1px,1px,1px);
	white-space: nowrap;
}

/* ---------------- Dietary marker (pure CSS) ---------------- */
.turma-diet {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 15px; height: 15px;
	border: 1.5px solid var(--turma-nonveg);
	border-radius: 2px;
	flex: 0 0 auto;
}
.turma-diet--veg { border-color: var(--turma-veg); }
.turma-diet__dot {
	width: 7px; height: 7px; border-radius: 50%;
	background: var(--turma-nonveg);
}
.turma-diet--veg .turma-diet__dot { background: var(--turma-veg); }

/* ---------------- Badges ---------------- */
.turma-badges { display: inline-flex; flex-wrap: wrap; gap: 6px; margin-top: 6px; }
.turma-badge {
	display: inline-block;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: .02em;
	padding: 2px 8px;
	border-radius: 999px;
	background: var(--turma-sand);
	color: var(--turma-ink);
	text-transform: uppercase;
}
.turma-badge--vegan { background: #e5f4e8; color: var(--turma-olive-deep); }
.turma-badge--veg { background: #eaf5ec; color: var(--turma-olive-deep); }
.turma-badge--egg { background: #fdf3e2; color: #9a6a00; }
.turma-badge--halal { background: #e3f0ff; color: #14487a; }
.turma-badge--nut-free { background: #f3ead9; color: #8a5a12; }
.turma-badge--spicy { background: #fde8e2; color: var(--turma-terracotta); }
.turma-badge--bestseller { background: #fbe7c6; color: #8a5a00; }
.turma-badge--chefs-special { background: #efe4ff; color: #5a3ba0; }
.turma-badge--new { background: var(--turma-olive); color: #fff; }

/* ---------------- Menu page ---------------- */
.turma-menu { max-width: 900px; margin: 0 auto; padding: 8px 16px 80px; }

.turma-menu__controls {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 8px;
}
.turma-search { flex: 1 1 240px; }
.turma-search__input {
	width: 100%;
	padding: 12px 16px;
	border: 1px solid var(--turma-line);
	border-radius: 999px;
	font-size: 15px;
	background: #fff;
}
.turma-search__input:focus { outline: 2px solid var(--turma-saffron); outline-offset: 1px; }

.turma-diet-filter { display: inline-flex; gap: 6px; background: var(--turma-sand); padding: 4px; border-radius: 999px; }
.turma-diet-filter__btn {
	display: inline-flex; align-items: center; gap: 6px;
	border: 0; background: transparent; cursor: pointer;
	padding: 7px 14px; border-radius: 999px; font-size: 14px; font-weight: 600;
	color: var(--turma-ink);
}
.turma-diet-filter__btn.is-active { background: #fff; box-shadow: 0 1px 4px rgba(0,0,0,.1); }

.turma-catjump {
	position: sticky; top: 0; z-index: 20;
	display: flex; align-items: center; gap: 12px;
	margin: 6px 0 18px;
	padding: 10px 0;
	background: var(--turma-cream);
}
.turma-catjump__label { font-weight: 700; font-size: 12px; text-transform: uppercase; letter-spacing: .1em; color: var(--turma-muted); white-space: nowrap; }
.turma-catjump__field { position: relative; flex: 1 1 auto; max-width: 440px; }
.turma-catjump__field::after {
	content: ""; position: absolute; right: 18px; top: 50%; width: 8px; height: 8px;
	border-right: 2px solid var(--turma-olive); border-bottom: 2px solid var(--turma-olive);
	transform: translateY(-70%) rotate(45deg); pointer-events: none;
}
.turma-catjump__select {
	appearance: none; -webkit-appearance: none; -moz-appearance: none;
	width: 100%; padding: 12px 40px 12px 18px;
	border: 1px solid var(--turma-line); border-radius: 999px;
	background: #fff; color: var(--turma-ink);
	font-size: 15px; font-weight: 600; font-family: inherit; cursor: pointer;
	box-shadow: 0 2px 8px rgba(36,32,27,.06);
}
.turma-catjump__select:focus { outline: 2px solid var(--turma-saffron); outline-offset: 1px; }

.turma-cat { padding-top: 22px; }
.turma-cat__head { margin-bottom: 12px; }
.turma-cat__title {
	font-family: var(--turma-serif);
	font-size: clamp(24px, 4vw, 32px);
	margin: 0;
	color: var(--turma-charcoal);
	position: relative;
	display: inline-block;
}
.turma-cat__title::after {
	content: ""; display: block; height: 3px; width: 46px;
	margin-top: 6px;
	background: linear-gradient(90deg, var(--turma-saffron), var(--turma-olive));
	border-radius: 3px;
}
.turma-cat__desc { color: var(--turma-muted); margin: 6px 0 0; font-size: 14px; }

.turma-items {
	list-style: none; margin: 0; padding: 0;
	display: grid; grid-template-columns: 1fr 1fr; column-gap: 44px;
}
@media (max-width: 640px) { .turma-items { grid-template-columns: 1fr; } }
.turma-item {
	display: flex; gap: 14px; align-items: flex-start;
	padding: 16px 0;
	border-bottom: 1px dashed var(--turma-line);
}
.turma-item__body { flex: 1 1 auto; min-width: 0; }
.turma-item__head { display: flex; align-items: baseline; gap: 8px; }
.turma-item__name { font-size: 17px; font-weight: 700; margin: 0; color: var(--turma-charcoal); }
.turma-item__dots { flex: 1 1 auto; border-bottom: 1px dotted var(--turma-line); transform: translateY(-4px); min-width: 12px; }
.turma-item__price { font-weight: 700; color: var(--turma-terracotta); white-space: nowrap; }
.turma-item__desc { margin: 5px 0 0; color: var(--turma-muted); font-size: 14px; line-height: 1.5; }
.turma-item__action { flex: 0 0 auto; padding-top: 2px; }

.turma-item.is-soldout { opacity: .55; }
.turma-item.is-soldout .turma-item__price { color: var(--turma-muted); font-weight: 600; font-size: 13px; }

.turma-add {
	width: 38px; height: 38px; border-radius: 50%;
	border: 0; cursor: pointer;
	background: var(--turma-olive); color: #fff;
	font-size: 22px; line-height: 1; font-weight: 400;
	display: inline-flex; align-items: center; justify-content: center;
	transition: transform .12s ease, background .2s ease;
	box-shadow: 0 3px 10px rgba(31,122,61,.3);
}
.turma-add:hover { background: var(--turma-olive-deep); transform: scale(1.08); }
.turma-add:active { transform: scale(.94); }
.turma-add:focus-visible { outline: 2px solid var(--turma-saffron); outline-offset: 2px; }
.turma-add--disabled { background: var(--turma-line); color: var(--turma-muted); cursor: not-allowed; box-shadow: none; }

/* ---------------- Category band (widescreen image) ---------------- */
.turma-band {
	position: relative;
	margin: 28px -16px;
	height: 190px;
	overflow: hidden;
}
.turma-band__img {
	position: absolute; inset: 0;
	width: 100%; height: 100%;
	object-fit: cover;
}
.turma-band::after {
	content: ""; position: absolute; inset: 0;
	background: linear-gradient(180deg, rgba(36,32,27,.12), rgba(36,32,27,.32));
}
@media (min-width: 700px) { .turma-band { margin: 36px 0; height: 240px; border-radius: var(--turma-radius); } }

/* Offset anchored category scrolling for the sticky site header */
.turma-cat { scroll-margin-top: 90px; }

/* ---------------- Category showcase (home) ---------------- */
.turma-showcase {
	display: grid; gap: 18px;
	grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
}
.turma-scard {
	display: block; text-decoration: none; color: inherit;
	border-radius: var(--turma-radius); overflow: hidden;
	background: #fff; border: 1px solid var(--turma-line);
	box-shadow: 0 6px 18px rgba(36,32,27,.06);
	transition: transform .18s ease, box-shadow .18s ease;
}
.turma-scard:hover { transform: translateY(-4px); box-shadow: 0 16px 34px rgba(36,32,27,.16); }
.turma-scard__media { display: block; position: relative; aspect-ratio: 16 / 10; overflow: hidden; }
.turma-scard__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.turma-scard:hover .turma-scard__media img { transform: scale(1.06); }
.turma-scard__body { display: block; padding: 16px 18px; }
.turma-scard__name { display: block; font-family: var(--turma-serif); font-size: 20px; color: var(--turma-charcoal); }
.turma-scard__count { display: block; font-size: 13px; color: var(--turma-muted); margin-top: 2px; }
.turma-scard__go { display: inline-block; margin-top: 10px; font-weight: 700; font-size: 14px; color: var(--turma-terracotta); }

/* ---------------- Restaurant photo slider ---------------- */
.turma-slider { position: relative; width: 100%; overflow: hidden; background: var(--turma-charcoal); border-radius: 16px; }
.turma-slider__viewport { overflow: hidden; border-radius: 16px; }
.turma-slider__track { display: flex; transition: transform .6s cubic-bezier(.4,0,.2,1); will-change: transform; }
.turma-slider__slide { flex: 0 0 100%; margin: 0; }
.turma-slider__slide img { width: 100%; aspect-ratio: 16 / 9; height: auto; object-fit: cover; display: block; }
/* thin orange stroke set slightly inside the image */
.turma-slider::after {
	content: ""; position: absolute; inset: 12px; z-index: 3; pointer-events: none;
	border: 1px solid var(--turma-saffron); border-radius: 9px;
}
.turma-slider__nav {
	position: absolute; top: 50%; transform: translateY(-50%);
	width: 46px; height: 46px; border-radius: 50%; border: 0; cursor: pointer;
	background: rgba(255,255,255,.85); color: var(--turma-charcoal);
	font-size: 26px; line-height: 1; display: flex; align-items: center; justify-content: center;
	box-shadow: 0 4px 14px rgba(0,0,0,.25);
}
.turma-slider__nav--prev { left: 16px; }
.turma-slider__nav--next { right: 16px; }
.turma-slider__nav:hover { background: #fff; }
.turma-slider__nav:focus-visible { outline: 2px solid var(--turma-saffron); outline-offset: 2px; }
.turma-slider__dots { position: absolute; left: 0; right: 0; bottom: 16px; display: flex; gap: 8px; justify-content: center; }
.turma-slider__dot { width: 10px; height: 10px; border-radius: 50%; border: 0; cursor: pointer; background: rgba(255,255,255,.5); transition: width .2s ease, background .2s ease; }
.turma-slider__dot.is-active { background: #fff; width: 26px; border-radius: 999px; }
@media (max-width: 600px) { .turma-slider__nav { width: 38px; height: 38px; font-size: 22px; } }
@media (prefers-reduced-motion: reduce) { .turma-slider__track { transition: none; } }

.turma-totop {
	position: fixed; right: 18px; bottom: 90px; z-index: 30;
	width: 42px; height: 42px; border-radius: 50%; border: 0;
	background: var(--turma-charcoal); color: #fff; font-size: 18px; cursor: pointer;
	opacity: 0; pointer-events: none; transition: opacity .2s ease;
	box-shadow: var(--turma-shadow);
}
.turma-totop.is-visible { opacity: 1; pointer-events: auto; }

/* ---------------- Featured cards ---------------- */
.turma-featured__grid {
	display: grid; gap: 18px;
	grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}
.turma-fcard {
	background: #fff; border: 1px solid var(--turma-line);
	border-radius: var(--turma-radius); padding: 18px;
	display: flex; flex-direction: column; gap: 8px;
	box-shadow: 0 6px 18px rgba(36,32,27,.06);
}
.turma-fcard__top { display: flex; align-items: center; gap: 8px; }
.turma-fcard__name { font-family: var(--turma-serif); font-size: 19px; margin: 0; color: var(--turma-charcoal); }
.turma-fcard__desc { color: var(--turma-muted); font-size: 14px; margin: 0; flex: 1 1 auto; }
.turma-fcard__foot { display: flex; align-items: center; justify-content: space-between; margin-top: 4px; }
.turma-fcard__price { font-weight: 700; color: var(--turma-terracotta); font-size: 17px; }

/* ---------------- Locations ---------------- */
.turma-locations--grid { display: grid; gap: 20px; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.turma-loc-card {
	background: #fff; border: 1px solid var(--turma-line);
	border-radius: var(--turma-radius); padding: 22px;
	box-shadow: 0 6px 18px rgba(36,32,27,.06);
}
.turma-locations--single .turma-loc-card { max-width: 520px; margin: 0 auto; text-align: center; }
.turma-loc-card__city { font-family: var(--turma-serif); font-size: 24px; margin: 0 0 2px; color: var(--turma-charcoal); }
.turma-loc-card__cityline { margin: 0 0 10px; font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: var(--turma-saffron); }
.turma-loc-card__addr { display: flex; gap: 8px; align-items: flex-start; color: var(--turma-ink); margin: 0 0 10px; }
.turma-locations--single .turma-loc-card__addr { justify-content: center; }
.turma-loc-card__addr svg { color: var(--turma-saffron); flex: 0 0 auto; margin-top: 2px; }
.turma-loc-card__hours { list-style: none; margin: 0 0 12px; padding: 0; color: var(--turma-muted); font-size: 14px; }
.turma-loc-card__hours li { padding: 1px 0; }
.turma-loc-card__phone { margin: 0 0 14px; }
.turma-loc-card__phone a { color: var(--turma-olive-deep); text-decoration: none; font-weight: 600; }
.turma-loc-card__actions { display: flex; flex-wrap: wrap; gap: 10px; }
.turma-locations--single .turma-loc-card__actions { justify-content: center; }

.turma-btn {
	display: inline-flex; align-items: center; gap: 6px;
	padding: 10px 16px; border-radius: 999px; text-decoration: none;
	font-weight: 600; font-size: 14px; border: 1px solid transparent; cursor: pointer;
}
.turma-btn--primary { background: var(--turma-saffron); color: #fff; }
.turma-btn--primary:hover { background: var(--turma-terracotta); }
.turma-btn--ghost { background: transparent; border-color: var(--turma-line); color: var(--turma-ink); }
.turma-btn--wa { background: var(--turma-wa); color: #093; color: #04381d; }

/* ---------------- Cart FAB + drawer ---------------- */
.turma-cart__fab {
	position: fixed; right: 18px; bottom: 18px; z-index: 40;
	display: inline-flex; align-items: center; gap: 8px;
	padding: 12px 16px; border: 0; cursor: pointer;
	background: var(--turma-saffron); color: #fff;
	border-radius: 999px; box-shadow: var(--turma-shadow);
	font-weight: 700;
}
.turma-cart__fab:hover { background: var(--turma-terracotta); }
.turma-cart__fab[hidden] { display: none; } /* keep hidden when the cart is empty */
.turma-cart__count {
	background: #fff; color: var(--turma-terracotta);
	border-radius: 999px; min-width: 22px; height: 22px;
	display: inline-flex; align-items: center; justify-content: center;
	font-size: 13px; font-weight: 800; padding: 0 6px;
}
.turma-cart__fab.is-bump { animation: turma-bump .3s ease; }
@keyframes turma-bump { 0%,100%{transform:scale(1);} 40%{transform:scale(1.12);} }

.turma-drawer { position: fixed; inset: 0; z-index: 50; }
.turma-drawer__overlay { position: absolute; inset: 0; background: rgba(24,20,16,.5); }
.turma-drawer__panel {
	position: absolute; top: 0; right: 0; height: 100%;
	width: min(420px, 100%);
	background: var(--turma-cream);
	display: flex; flex-direction: column;
	box-shadow: var(--turma-shadow);
	animation: turma-slide .25s ease;
}
@keyframes turma-slide { from { transform: translateX(100%); } to { transform: translateX(0); } }
.turma-drawer__head {
	display: flex; align-items: center; justify-content: space-between;
	padding: 18px 20px; border-bottom: 1px solid var(--turma-line);
}
.turma-drawer__title { font-family: var(--turma-serif); font-size: 22px; margin: 0; color: var(--turma-charcoal); }
.turma-drawer__close { border: 0; background: transparent; font-size: 28px; line-height: 1; cursor: pointer; color: var(--turma-ink); }
.turma-drawer__branch { margin: 0; padding: 12px 20px; background: var(--turma-sand); font-size: 14px; color: var(--turma-muted); }
.turma-drawer__branch strong { color: var(--turma-ink); }
.turma-drawer__items { padding: 8px 20px; overflow-y: auto; flex: 1 1 auto; }
.turma-drawer__empty { color: var(--turma-muted); text-align: center; padding: 30px 0; }

.turma-litem { padding: 12px 0; border-bottom: 1px solid var(--turma-line); }
.turma-litem__info { display: flex; justify-content: space-between; gap: 10px; }
.turma-litem__name { font-weight: 600; }
.turma-litem__variant { color: var(--turma-muted); font-weight: 400; font-size: 13px; }
.turma-litem__price { font-weight: 700; color: var(--turma-terracotta); white-space: nowrap; }
.turma-litem__ctrl { display: flex; align-items: center; gap: 8px; margin-top: 8px; }
.turma-step {
	width: 30px; height: 30px; border-radius: 8px; cursor: pointer;
	border: 1px solid var(--turma-line); background: #fff; font-size: 17px; line-height: 1;
}
.turma-litem__qty { min-width: 22px; text-align: center; font-weight: 700; }
.turma-litem__remove { margin-left: auto; border: 0; background: transparent; cursor: pointer; color: var(--turma-muted); font-size: 20px; }

.turma-drawer__summary { border-top: 1px solid var(--turma-line); padding: 16px 20px; background: var(--turma-cream); }
/* In the details step the form takes over the panel and scrolls on its own. */
.turma-drawer.is-details .turma-drawer__summary { flex: 1 1 auto; overflow-y: auto; min-height: 0; border-top: 0; }
.turma-drawer.is-details .turma-drawer__branch { border-bottom: 1px solid var(--turma-line); }
.turma-drawer__subtotal { display: flex; justify-content: space-between; font-size: 17px; margin-bottom: 12px; }
.turma-drawer__subtotal strong { color: var(--turma-terracotta); }

.turma-field { margin-bottom: 12px; }
.turma-field label, .turma-field__label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 5px; color: var(--turma-ink); }
.turma-field input, .turma-field textarea, .turma-field select {
	width: 100%; padding: 10px 12px; border: 1px solid var(--turma-line);
	border-radius: 10px; font-size: 15px; background: #fff; font-family: inherit;
}
.turma-field input:focus, .turma-field textarea:focus, .turma-field select:focus { outline: 2px solid var(--turma-saffron); outline-offset: 1px; }
.turma-field input.is-invalid, .turma-field textarea.is-invalid { border-color: var(--turma-nonveg); }
.turma-field__error { display: block; color: var(--turma-nonveg); font-size: 13px; margin-top: 4px; min-height: 1em; }
.turma-field__error--form { text-align: center; margin: 6px 0; }
/* Nicely styled dropdown (custom arrow) */
.turma-select-wrap { position: relative; max-width: 280px; }
.turma-select-wrap::after {
	content: ""; position: absolute; right: 16px; top: 50%; width: 8px; height: 8px;
	border-right: 2px solid var(--turma-olive); border-bottom: 2px solid var(--turma-olive);
	transform: translateY(-70%) rotate(45deg); pointer-events: none;
}
.turma-select-wrap .turma-select {
	appearance: none; -webkit-appearance: none; -moz-appearance: none;
	padding-right: 40px; font-weight: 600; cursor: pointer; background: #fff;
}
.turma-field--city { margin-bottom: 4px; }

.turma-typeopts { display: flex; gap: 16px; }
.turma-typeopts label { display: inline-flex; align-items: center; gap: 6px; font-weight: 500; font-size: 15px; margin: 0; }
.turma-typeopts input { width: auto; }

.turma-checkout__submit {
	width: 100%; border: 0; cursor: pointer; margin-top: 4px;
	display: inline-flex; align-items: center; justify-content: center; gap: 8px;
	background: var(--turma-wa); color: #063; color: #04321a;
	padding: 14px; border-radius: 12px; font-weight: 800; font-size: 16px;
}
.turma-checkout__submit:hover { filter: brightness(.96); }
.turma-checkout__submit:disabled { opacity: .6; cursor: default; }
.turma-checkout__disclaimer { font-size: 12px; color: var(--turma-muted); text-align: center; margin: 8px 0 0; }

/* Two-step order flow */
.turma-order-btn {
	width: 100%; border: 0; cursor: pointer;
	background: var(--turma-saffron); color: #fff;
	padding: 15px; border-radius: 12px; font-weight: 800; font-size: 17px;
	transition: background .2s ease;
}
.turma-order-btn:hover { background: var(--turma-terracotta); }
.turma-checkout__back {
	background: none; border: 0; cursor: pointer; padding: 0;
	color: var(--turma-muted); font-weight: 600; font-size: 14px; margin-bottom: 10px;
}
.turma-checkout__back:hover { color: var(--turma-ink); }
.turma-checkout__intro { font-family: var(--turma-serif); font-size: 18px; color: var(--turma-charcoal); margin: 0 0 12px; }

/* ---------------- Variant popover ---------------- */
.turma-variantpop {
	position: absolute; z-index: 60; min-width: 200px;
	background: #fff; border: 1px solid var(--turma-line);
	border-radius: 12px; box-shadow: var(--turma-shadow); padding: 8px;
}
.turma-variantpop__title { margin: 4px 8px 8px; font-size: 13px; font-weight: 700; color: var(--turma-muted); }
.turma-variantpop__opt {
	display: flex; justify-content: space-between; gap: 16px; width: 100%;
	border: 0; background: transparent; cursor: pointer; padding: 10px 8px;
	border-radius: 8px; font-size: 15px; text-align: left;
}
.turma-variantpop__opt:hover { background: var(--turma-sand); }
.turma-variantpop__opt span:last-child { font-weight: 700; color: var(--turma-terracotta); }

/* ---------------- Toast ---------------- */
.turma-toast {
	position: fixed; left: 50%; bottom: 84px; transform: translate(-50%, 20px);
	background: var(--turma-charcoal); color: #fff;
	padding: 10px 18px; border-radius: 999px; font-size: 14px; font-weight: 600;
	opacity: 0; pointer-events: none; z-index: 70; transition: opacity .2s ease, transform .2s ease;
}
.turma-toast.is-visible { opacity: 1; transform: translate(-50%, 0); }

/* ---------------- Booking ---------------- */
.turma-booking { max-width: 720px; margin: 0 auto; }
.turma-booking__form {
	background: #fff; border: 1px solid var(--turma-line);
	border-radius: var(--turma-radius); padding: 26px;
	box-shadow: 0 10px 30px rgba(36,32,27,.08);
	border-top: 4px solid var(--turma-olive);
}
.turma-booking__at { margin: 0 0 16px; font-size: 16px; }
.turma-booking__at strong, .turma-booking__branch strong { color: var(--turma-olive-deep); }
.turma-booking__grid { display: grid; gap: 14px; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); }
.turma-booking__submit {
	margin-top: 8px; border: 0; cursor: pointer;
	background: var(--turma-olive); color: #fff;
	padding: 14px 22px; border-radius: 12px; font-weight: 700; font-size: 16px;
}
.turma-booking__submit:hover { background: var(--turma-olive-deep); }
.turma-booking__note { font-size: 13px; color: var(--turma-muted); margin: 10px 0 0; }
.turma-booking__success { background: #e5f4e8; color: var(--turma-olive-deep); padding: 12px 14px; border-radius: 10px; margin: 12px 0 0; font-weight: 600; }

/* ---------------- City switcher + modal ---------------- */
.turma-cityswitch { position: relative; display: inline-block; }
.turma-cityswitch__btn {
	display: inline-flex; align-items: center; gap: 6px; cursor: pointer;
	background: transparent; border: 1px solid var(--turma-line); border-radius: 999px;
	padding: 7px 12px; font-weight: 600; font-size: 14px; color: inherit;
}
.turma-cityswitch__menu {
	position: absolute; right: 0; top: calc(100% + 6px); z-index: 45;
	background: #fff; border: 1px solid var(--turma-line); border-radius: 12px;
	box-shadow: var(--turma-shadow); list-style: none; margin: 0; padding: 6px; min-width: 180px;
}
.turma-cityswitch__opt { width: 100%; text-align: left; border: 0; background: transparent; padding: 10px 12px; border-radius: 8px; cursor: pointer; font-size: 15px; }
.turma-cityswitch__opt:hover { background: var(--turma-sand); }

.turma-citymodal { position: fixed; inset: 0; z-index: 80; display: flex; align-items: center; justify-content: center; padding: 20px; }
.turma-citymodal[hidden] { display: none; } /* respect the hidden attribute (CSS display would otherwise override it) */
.turma-citymodal__overlay { position: absolute; inset: 0; background: rgba(24,20,16,.6); }
.turma-citymodal__box {
	position: relative; z-index: 2; background: var(--turma-cream);
	border-radius: var(--turma-radius); padding: 30px; max-width: 460px; width: 100%;
	box-shadow: var(--turma-shadow); text-align: center;
}
.turma-citymodal__title { font-family: var(--turma-serif); font-size: 26px; margin: 0 0 8px; color: var(--turma-charcoal); }
.turma-citymodal__intro { color: var(--turma-muted); margin: 0 0 20px; }
.turma-citymodal__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.turma-citymodal__opt {
	width: 100%; text-align: left; cursor: pointer;
	background: #fff; border: 1px solid var(--turma-line); border-radius: 12px;
	padding: 16px 18px; display: flex; flex-direction: column; gap: 3px;
}
.turma-citymodal__opt:hover { border-color: var(--turma-saffron); box-shadow: 0 6px 18px rgba(232,119,34,.15); }
.turma-citymodal__city { font-weight: 700; font-size: 17px; color: var(--turma-charcoal); }
.turma-citymodal__addr { font-size: 13px; color: var(--turma-muted); }

/* ---------------- Motion & responsive ---------------- */
@media (max-width: 600px) {
	.turma-drawer__panel {
		top: auto; bottom: 0; height: auto; max-height: 88vh; width: 100%;
		border-radius: 18px 18px 0 0;
		animation: turma-sheet .25s ease;
	}
	@keyframes turma-sheet { from { transform: translateY(100%); } to { transform: translateY(0); } }
	.turma-menu__controls { flex-direction: column; align-items: stretch; }
	.turma-diet-filter { justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
	.turma-drawer__panel, .turma-cart__fab.is-bump, .turma-toast { animation: none !important; transition: none !important; }
	.turma-add { transition: none; }
}
