/* ============================================================
   SOUTH ZONE MENU — components
   Everything the plugin renders: dish cards, menu rows, the menu's
   tab bar and search, the cart drawer, the toast and the mobile
   order bar. Page layout belongs to Elementor and the child theme.

   Elementor's kit styles every <button> on the page (padding,
   background, uppercase). Plugin markup sits inside .sz-ui, which
   resets that first, so each component starts from a clean slate.
   ============================================================ */

body .sz-ui button {
  font: inherit; text-transform: none; letter-spacing: normal; line-height: inherit;
  padding: 0; margin: 0; border: 0; border-radius: 0; min-height: 0;
  background: none; color: inherit; box-shadow: none; cursor: pointer;
}
/* The kit also recolours every button on hover and focus. Undo only the colour
   here: shape stays with the component. Component rules below are written as
   `body .sz-ui button.name` so they outrank both this and the kit. */
body .sz-ui button:hover,
body .sz-ui button:focus { background-color: transparent; color: inherit; }
.sz-ui { font-family: var(--font-body); color: var(--text-on-light); }
.sz-ui *, .sz-ui *::before, .sz-ui *::after { box-sizing: border-box; }
.sz-ui :focus-visible { outline: 3px solid var(--sz-saffron-600); outline-offset: 2px; }
.sz-ui .screen-reader-text {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

/* ---- Badge ---- */
.sz-badge { display: inline-block; vertical-align: middle; font-weight: 800; font-size: 11px; letter-spacing: 0.06em;
  text-transform: uppercase; padding: 4px 9px; border-radius: var(--radius-pill); line-height: 1.2; }
.sz-badge--saffron { background: var(--sz-saffron); color: var(--sz-espresso); }
.sz-badge--chilli { background: var(--sz-chilli); color: var(--sz-white); }

/* ---- Price, portion pills, Add ---- */
.sz-price { font-weight: 800; font-size: 17px; color: var(--sz-espresso); font-variant-numeric: tabular-nums; white-space: nowrap; }
.sz-variants { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 10px; }
body .sz-ui button.sz-variant {
  font-weight: 700; font-size: 12.5px; line-height: 1; min-height: 32px; padding: 8px 14px; border-radius: var(--radius-pill);
  border: 1.5px solid var(--sz-cream-200); background: var(--sz-white); color: var(--sz-espresso-500);
  transition: background var(--dur-fast), color var(--dur-fast), border-color var(--dur-fast);
}
body .sz-ui button.sz-variant:hover { border-color: var(--sz-espresso-500); background: var(--sz-white); color: var(--sz-espresso); }
body .sz-ui button.sz-variant.is-active { border-color: var(--sz-espresso); background: var(--sz-espresso); color: var(--sz-saffron); }

body .sz-ui button.sz-add {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  min-height: 38px; min-width: 76px; padding: 9px 18px; border-radius: var(--radius-pill);
  background: var(--sz-saffron); color: var(--sz-espresso);
  font-weight: 800; font-size: 13px; letter-spacing: 0.04em; text-transform: uppercase;
  transition: background var(--dur-fast), transform var(--dur-fast) var(--ease-out);
}
body .sz-ui button.sz-add::before { content: "+"; font-size: 16px; line-height: 1; margin-top: -1px; }
body .sz-ui button.sz-add:hover { background: var(--sz-saffron-600); color: var(--sz-espresso); }
body .sz-ui button.sz-add:active { transform: translateY(1px); }
.sz-add.is-added { animation: sz-pop var(--dur-slow) var(--ease-out); }
.sz-sold { font-size: 12px; font-weight: 800; letter-spacing: 0.04em; text-transform: uppercase; color: var(--text-muted); }
.is-sold .sz-price { color: var(--text-muted); text-decoration: line-through; }
@keyframes sz-pop { 0% { transform: scale(1); } 40% { transform: scale(1.12); } 100% { transform: scale(1); } }

/* ============================================================
   BESTSELLER CARDS
   ============================================================ */
.sz-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (max-width: 639px) {
  /* On a phone the bestsellers swipe sideways instead of stacking eight cards deep */
  .sz-grid { grid-template-columns: none; grid-auto-flow: column; grid-auto-columns: 78%; gap: 14px;
    overflow-x: auto; scroll-snap-type: x mandatory; scroll-padding: 0 20px; margin: 0 -20px; padding: 4px 20px 16px;
    scrollbar-width: none; -webkit-overflow-scrolling: touch; }
  .sz-grid::-webkit-scrollbar { display: none; }
  .sz-grid > .sz-card { scroll-snap-align: start; }
  .sz-grid .sz-card:hover { transform: none; }
}
@media (min-width: 640px) { .sz-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1025px) { .sz-grid { grid-template-columns: repeat(4, 1fr); } }

.sz-card { display: flex; flex-direction: column; background: var(--sz-white); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid rgba(33, 23, 14, 0.06);
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base); }
.sz-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.sz-card__media { position: relative; aspect-ratio: 4 / 3; background: var(--sz-cream); overflow: hidden; }
.sz-card__media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform var(--dur-slow) var(--ease-out); }
.sz-card:hover .sz-card__media img { transform: scale(1.05); }
.sz-card__ph { position: absolute; inset: 0; background: var(--sz-cream); }
.sz-card__media .sz-badge { position: absolute; top: 12px; left: 12px; }
.sz-card__body { display: flex; flex-direction: column; flex: 1; padding: 16px 18px 18px; }
.sz-ui .sz-card__name { margin: 0; font-family: var(--font-body); font-weight: 700; font-size: 18px; line-height: 1.25; color: var(--sz-espresso); }
.sz-ui .sz-card__desc { margin: 6px 0 0; font-size: 13.5px; line-height: 1.5; font-weight: 500; color: var(--text-muted); }
.sz-card__foot { margin-top: auto; padding-top: 16px; display: flex; align-items: center; justify-content: space-between; gap: 12px; }

/* ============================================================
   FULL MENU
   ============================================================ */
.sz-menu { --sz-sticky-top: var(--header-h); }
.admin-bar .sz-menu { --sz-sticky-top: calc(var(--header-h) + 32px); }
@media (max-width: 782px) { .admin-bar .sz-menu { --sz-sticky-top: var(--header-h); } }

.sz-menu__bar { position: sticky; top: var(--sz-sticky-top); z-index: 20; margin: 0 -20px; padding: 12px 20px;
  background: var(--sz-cream-50); border-bottom: 1px solid var(--sz-cream-200); }
.sz-menu__bar-in { display: flex; flex-direction: column; gap: 10px; }
@media (min-width: 900px) {
  .sz-menu__bar { margin: 0; padding: 14px 0; }
  .sz-menu__bar-in { flex-direction: row; align-items: center; justify-content: space-between; gap: 20px; }
}

body .sz-ui button.sz-search-toggle { display: none; }
@media (max-width: 899px) {
  .sz-menu__bar-in { flex-direction: row; flex-wrap: wrap; align-items: center; gap: 10px; }
  .sz-tabs { flex: 1 1 0; min-width: 0; }
  body .sz-ui button.sz-search-toggle { display: grid; place-items: center; flex: 0 0 44px; width: 44px; height: 44px; border-radius: 50%;
    background: var(--sz-white); color: var(--sz-espresso); box-shadow: inset 0 0 0 1.5px var(--sz-cream-200); }
  body .sz-ui button.sz-search-toggle[aria-expanded="true"] { background: var(--sz-espresso); color: var(--sz-saffron); box-shadow: none; }
  .sz-menu .sz-search { display: none; flex: 1 1 100%; }
  .sz-menu.is-search-open .sz-search { display: flex; }
}
.sz-tabs { display: flex; gap: 8px; overflow-x: auto; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
.sz-tabs::-webkit-scrollbar { display: none; }
body .sz-ui button.sz-tab {
  flex: 0 0 auto; padding: 10px 16px; border-radius: var(--radius-pill); border: 2px solid var(--sz-espresso);
  font-weight: 800; font-size: 13px; letter-spacing: 0.02em; text-transform: uppercase; white-space: nowrap;
  background: transparent; color: var(--sz-espresso); transition: background var(--dur-fast), color var(--dur-fast);
}
body .sz-ui button.sz-tab:hover { background: rgba(33, 23, 14, 0.06); color: var(--sz-espresso); }
body .sz-ui button.sz-tab.is-active { background: var(--sz-espresso); color: var(--sz-saffron); }

.sz-search { position: relative; display: flex; align-items: center; flex: none; min-width: 0; }
@media (min-width: 900px) { .sz-search { flex: 0 1 340px; } }
.sz-search > svg { position: absolute; left: 14px; color: var(--text-muted); pointer-events: none; }
.sz-ui .sz-search input {
  width: 100%; height: 44px; padding: 0 40px 0 42px; border-radius: var(--radius-pill);
  border: 1.5px solid var(--sz-cream-200); background: var(--sz-white); color: var(--sz-espresso);
  font-family: var(--font-body); font-size: 14px; font-weight: 500; -webkit-appearance: none; appearance: none;
}
.sz-ui .sz-search input::placeholder { color: #8A7361; }
.sz-ui .sz-search input:focus { outline: none; border-color: var(--sz-saffron-600); box-shadow: 0 0 0 3px rgba(254, 188, 17, 0.35); }
.sz-ui .sz-search input::-webkit-search-cancel-button { display: none; }
body .sz-ui button.sz-search__clear { position: absolute; right: 10px; width: 28px; height: 28px; border-radius: 50%;
  display: grid; place-items: center; color: var(--text-muted); }
body .sz-ui button.sz-search__clear[hidden] { display: none; }
body .sz-ui button.sz-search__clear:hover { background: var(--sz-cream); color: var(--sz-espresso); }

.sz-ui .sz-menu__empty { margin: 32px 0; padding: 24px; text-align: center; font-weight: 600; color: var(--text-muted);
  background: var(--sz-white); border-radius: var(--radius-lg); }

.sz-menu__panel { padding-top: 8px; }
.sz-ui .sz-menu__cuisine { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0, 0, 0, 0); }
.sz-ui.sz-menu.is-searching .sz-menu__cuisine { position: static; width: auto; height: auto; clip: auto;
  font-family: var(--font-display); font-size: 22px; font-weight: 400; color: var(--sz-espresso); margin: 28px 0 0; }
.sz-menu.is-searching .sz-chips { display: none; }

.sz-chips { display: flex; gap: 8px; overflow-x: auto; padding: 16px 0 4px; scrollbar-width: none; }
.sz-chips::-webkit-scrollbar { display: none; }
.sz-ui .sz-chip { flex: 0 0 auto; display: inline-flex; align-items: center; gap: 6px; padding: 7px 14px;
  border-radius: var(--radius-pill); background: var(--sz-white); border: 1px solid var(--sz-cream-200);
  font-size: 13px; font-weight: 700; color: var(--sz-espresso); text-decoration: none; white-space: nowrap;
  transition: border-color var(--dur-fast), background var(--dur-fast); }
.sz-ui .sz-chip span { font-size: 11px; font-weight: 700; color: var(--text-muted); }
.sz-ui .sz-chip:hover { border-color: var(--sz-espresso-500); color: var(--sz-espresso); }

.sz-menu__section { margin-top: 20px; padding: 6px 20px 4px; background: var(--sz-white); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm); scroll-margin-top: calc(var(--sz-sticky-top) + 140px); }
@media (min-width: 900px) { .sz-menu__section { padding: 10px 32px 8px; margin-top: 24px; } }
.sz-ui .sz-menu__section-title { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; margin: 0;
  padding: 16px 0 12px; border-bottom: 2px solid var(--sz-espresso);
  font-family: var(--font-display); font-weight: 400; font-size: 22px; line-height: 1.1; color: var(--sz-espresso); }
.sz-ui .sz-menu__section-title span { font-family: var(--font-body); font-size: 12px; font-weight: 700; letter-spacing: 0.04em;
  text-transform: uppercase; color: var(--text-muted); }
.sz-menu__rows { display: grid; grid-template-columns: 1fr; }
@media (min-width: 1025px) { .sz-menu__rows { grid-template-columns: 1fr 1fr; column-gap: 48px; } }

.sz-row { display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: center; gap: 10px 14px;
  padding: 16px 0; border-bottom: 1px solid var(--sz-cream-200); }
.sz-row.has-photo { grid-template-columns: 64px minmax(0, 1fr) auto; }
.sz-row[hidden] { display: none; }
.sz-row__img { width: 64px; height: 64px; border-radius: 14px; object-fit: cover; display: block; grid-row: span 2; align-self: start; }
.sz-ui .sz-row__name { margin: 0; font-family: var(--font-body); font-weight: 700; font-size: 16px; line-height: 1.3; color: var(--sz-espresso); }
.sz-row__name .sz-badge { margin-left: 6px; position: relative; top: -1px; }
.sz-ui .sz-row__desc { margin: 3px 0 0; font-size: 13.5px; line-height: 1.5; font-weight: 500; color: var(--text-muted); }
/* Name and price share the first line; portion pills, when a dish has them, take the second */
.sz-row__foot { display: contents; }
.sz-row__buy { grid-row: 1; grid-column: -2; display: inline-flex; align-items: center; gap: 12px; }
.sz-row .sz-variants { grid-row: 2; grid-column: 1 / -1; margin: 0; }
.sz-row.has-photo .sz-variants { grid-column: 2 / -1; }
@media (max-width: 480px) {
  .sz-row { gap: 8px 12px; }
  .sz-row.has-photo { grid-template-columns: 56px minmax(0, 1fr) auto; }
  .sz-row__img { width: 56px; height: 56px; }
  .sz-row__buy { flex-direction: column; align-items: flex-end; gap: 6px; }
}
body .sz-ui .sz-row .sz-add { min-height: 38px; min-width: 72px; padding: 8px 15px; }
@media (min-width: 1025px) {
  .sz-menu__rows > .sz-row:nth-last-child(1),
  .sz-menu__rows > .sz-row:nth-last-child(2):nth-child(odd) { border-bottom: 0; }
}
@media (max-width: 1024px) { .sz-menu__rows > .sz-row:last-child { border-bottom: 0; } }

/* ============================================================
   CART DRAWER
   ============================================================ */
body.cart-open { overflow: hidden; }
.sz-cart__overlay { position: fixed; inset: 0; z-index: 9990; background: rgba(22, 15, 8, 0.55);
  opacity: 0; pointer-events: none; transition: opacity var(--dur-base); }
.sz-cart__drawer { position: fixed; z-index: 9991; top: 0; right: 0; height: 100%; height: 100dvh; width: min(440px, 100vw);
  display: flex; flex-direction: column; background: var(--sz-white); box-shadow: var(--shadow-lg);
  transform: translateX(100%); visibility: hidden; transition: transform var(--dur-base) var(--ease-out), visibility 0s linear var(--dur-base); }
.sz-cart__drawer:focus { outline: none; }
body.cart-open .sz-cart__overlay { opacity: 1; pointer-events: auto; }
body.cart-open .sz-cart__drawer { transform: translateX(0); visibility: visible; transition: transform var(--dur-base) var(--ease-out); }

.sz-cart__head { display: flex; align-items: center; justify-content: space-between; padding: 18px 20px; background: var(--sz-espresso); }
.sz-ui .sz-cart__head h2 { margin: 0; font-family: var(--font-display); font-weight: 400; font-size: 22px; color: var(--sz-cream); }
body .sz-ui button.sz-cart__close { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; color: var(--sz-saffron); }
body .sz-ui button.sz-cart__close:hover { background: rgba(255, 255, 255, 0.08); color: var(--sz-saffron); }

.sz-otype { display: flex; gap: 8px; padding: 16px 20px 6px; }
body .sz-ui .sz-otype button { flex: 1; padding: 10px; border-radius: var(--radius-pill); border: 2px solid var(--sz-espresso);
  font-weight: 800; font-size: 13px; text-align: center; color: var(--sz-espresso); }
body .sz-ui .sz-otype button:hover { background: rgba(33, 23, 14, 0.06); color: var(--sz-espresso); }
body .sz-ui .sz-otype button.is-active { background: var(--sz-espresso); color: var(--sz-saffron); }

.sz-cart__body { flex: 1; overflow-y: auto; padding: 6px 20px 12px; overscroll-behavior: contain; }
.sz-cart__empty { text-align: center; padding: 48px 12px; }
.sz-ui .sz-cart__empty strong { display: block; font-family: var(--font-display); font-weight: 400; font-size: 20px; color: var(--sz-espresso); }
.sz-ui .sz-cart__empty p { margin: 8px auto 20px; max-width: 280px; font-size: 14px; color: var(--text-muted); }
body .sz-ui button.sz-cart__browse, .sz-ui a.sz-cart__browse { display: inline-flex; align-items: center; justify-content: center; min-height: 44px;
  padding: 12px 22px; border-radius: var(--radius-pill); background: var(--sz-espresso); color: var(--sz-saffron);
  font-weight: 800; font-size: 13px; letter-spacing: 0.04em; text-transform: uppercase; text-decoration: none; }
body .sz-ui button.sz-cart__browse:hover, .sz-ui a.sz-cart__browse:hover { background: var(--sz-espresso-700); color: var(--sz-saffron); }

.sz-line { display: flex; align-items: center; gap: 12px; padding: 14px 0; border-bottom: 1px solid var(--sz-cream-200); }
.sz-line__info { flex: 1; min-width: 0; }
.sz-line__name { font-weight: 700; font-size: 15px; color: var(--sz-espresso); }
.sz-line__var { display: inline-block; margin-left: 4px; padding: 2px 8px; border-radius: var(--radius-pill);
  background: var(--sz-cream); color: var(--sz-espresso-700); font-size: 11px; font-weight: 800; vertical-align: 1px; }
.sz-line__price { margin-top: 2px; font-size: 13px; font-weight: 600; color: var(--text-muted); }
.sz-stepper { display: flex; align-items: center; gap: 4px; padding: 3px; border-radius: var(--radius-pill); background: var(--sz-cream); }
body .sz-ui .sz-stepper button { width: 32px; height: 32px; border-radius: 50%; display: grid; place-items: center;
  font-size: 18px; font-weight: 800; line-height: 1; color: var(--sz-espresso); }
body .sz-ui .sz-stepper button:hover { background: var(--sz-white); color: var(--sz-espresso); }
.sz-stepper span { min-width: 20px; text-align: center; font-weight: 800; font-variant-numeric: tabular-nums; }

.sz-cart__details { display: flex; flex-direction: column; gap: 8px; padding: 16px 0 4px; }
.sz-ui .sz-cart__details-title { margin: 0 0 2px; font-family: var(--font-display); font-size: 16px; color: var(--sz-espresso); }
.sz-ui .sz-cart__details-title span { display: block; margin-top: 2px; font-family: var(--font-body); font-size: 12px; font-weight: 600; color: var(--text-muted); }
.sz-ui .sz-cart__details input, .sz-ui .sz-cart__details textarea {
  width: 100%; padding: 12px 14px; border-radius: var(--radius-sm); border: 1.5px solid transparent; background: var(--sz-cream-50);
  font-family: var(--font-body); font-size: 15px; font-weight: 500; color: var(--sz-espresso); resize: vertical; box-shadow: inset 0 0 0 1px var(--sz-cream-200);
}
.sz-ui .sz-cart__details input:focus, .sz-ui .sz-cart__details textarea:focus { outline: none; border-color: var(--sz-saffron-600); background: var(--sz-white); box-shadow: 0 0 0 3px rgba(254, 188, 17, 0.3); }
.sz-ui .sz-cart__details [hidden] { display: none; }

.sz-cart__foot { padding: 16px 20px calc(16px + env(safe-area-inset-bottom)); border-top: 1px solid var(--sz-cream-200); background: var(--sz-white); }
.sz-free { margin-bottom: 14px; padding: 10px 12px; border-radius: var(--radius-sm); background: var(--sz-saffron-100); color: var(--sz-espresso); }
.sz-free.is-free { background: #E7F3E9; color: var(--sz-veg-green); }
.sz-ui .sz-free__label { margin-bottom: 6px; font-size: 12.5px; font-weight: 700; }
.sz-free__track { height: 6px; border-radius: 999px; background: rgba(33, 23, 14, 0.12); overflow: hidden; }
.sz-free__track span { display: block; height: 100%; border-radius: 999px; background: var(--sz-espresso); transition: width var(--dur-base); }
.sz-free.is-free .sz-free__track span { background: var(--sz-veg-green); }
.sz-cart__total { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 12px; font-weight: 700; }
.sz-cart__total strong { font-family: var(--font-display); font-weight: 400; font-size: 24px; color: var(--sz-espresso); }
body .sz-ui button.sz-send { display: flex; width: 100%; align-items: center; justify-content: center; gap: 10px; min-height: 52px;
  padding: 14px 20px; border-radius: var(--radius-pill); background: var(--sz-wa); color: var(--sz-wa-ink);
  font-weight: 800; font-size: 15px; letter-spacing: 0.02em; }
body .sz-ui button.sz-send:hover { background: #1FBE5A; color: var(--sz-wa-ink); box-shadow: 0 8px 20px rgba(37, 211, 102, 0.35); }
.sz-ui .sz-cart__note { margin: 10px 0 0; font-size: 12px; line-height: 1.5; text-align: center; color: var(--text-muted); }

/* ============================================================
   CATERING ENQUIRY
   ============================================================ */
.sz-enquiry__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
@media (max-width: 600px) { .sz-enquiry__grid { grid-template-columns: 1fr; } }
.sz-field { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.sz-field--full { grid-column: 1 / -1; }
.sz-field label { font-size: 12px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; color: var(--sz-espresso); }
.sz-field label span { font-weight: 600; letter-spacing: 0; text-transform: none; color: var(--text-muted); }
body .sz-ui.sz-enquiry .sz-field input, body .sz-ui.sz-enquiry .sz-field select, body .sz-ui.sz-enquiry .sz-field textarea {
  width: 100%; min-height: 50px; padding: 12px 14px; border-radius: 12px; border: 1.5px solid var(--sz-cream-200);
  background: var(--sz-cream-50); color: var(--sz-espresso); font-family: var(--font-body); font-size: 16px; font-weight: 500;
  box-shadow: none; -webkit-appearance: none; appearance: none; transition: border-color var(--dur-fast), background var(--dur-fast), box-shadow var(--dur-fast); }
body .sz-ui.sz-enquiry .sz-field select { padding-right: 40px; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%2321170E' stroke-width='2'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; }
.sz-ui .sz-field textarea { min-height: 96px; resize: vertical; }
body .sz-ui.sz-enquiry .sz-field input:focus, body .sz-ui.sz-enquiry .sz-field select:focus, body .sz-ui.sz-enquiry .sz-field textarea:focus {
  outline: none; border-color: var(--sz-saffron-600); background-color: #fff; box-shadow: 0 0 0 3px rgba(254, 188, 17, 0.3); }
.sz-ui .sz-field input::placeholder, .sz-ui .sz-field textarea::placeholder { color: #8A7361; }
.sz-enquiry__error { margin: 16px 0 0; padding: 10px 14px; border-radius: 12px; background: #FCE8EA; color: #A61B2E; font-size: 14px; font-weight: 600; }
.sz-enquiry .sz-send { margin-top: 20px; }
.sz-ui .sz-enquiry__note { margin: 10px 0 0; font-size: 12.5px; text-align: center; color: var(--text-muted); }

/* ---- Toast ---- */
.sz-toast { position: fixed; z-index: 9980; left: 50%; bottom: calc(var(--bottombar-h) + 14px + env(safe-area-inset-bottom));
  display: flex; align-items: center; gap: 10px; max-width: calc(100vw - 32px); padding: 8px 8px 8px 14px;
  border-radius: var(--radius-pill); background: var(--sz-espresso); color: var(--sz-cream); box-shadow: var(--shadow-lg);
  transform: translate(-50%, 16px); opacity: 0; transition: transform var(--dur-base) var(--ease-out), opacity var(--dur-base); }
.sz-toast.is-on { transform: translate(-50%, 0); opacity: 1; }
.sz-toast[hidden] { display: none; }
.sz-toast__ico { width: 22px; height: 22px; border-radius: 50%; display: grid; place-items: center; flex: 0 0 auto;
  background: var(--sz-saffron); color: var(--sz-espresso); }
.sz-toast__text { font-size: 13.5px; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
body .sz-ui button.sz-toast__btn { flex: 0 0 auto; padding: 8px 14px; border-radius: var(--radius-pill); background: var(--sz-saffron);
  color: var(--sz-espresso); font-size: 12px; font-weight: 800; letter-spacing: 0.04em; text-transform: uppercase; }
body .sz-ui button.sz-toast__btn:hover { background: var(--sz-saffron-600); color: var(--sz-espresso); }

/* ---- Cart count bubble (header button and mobile bar) ---- */
.cart-count { position: absolute; top: -6px; right: -6px; min-width: 20px; height: 20px; padding: 0 5px; border-radius: 10px;
  display: inline-flex; align-items: center; justify-content: center; background: var(--sz-chilli); color: var(--sz-white);
  font-family: var(--font-body); font-size: 11px; font-weight: 800; line-height: 1; }
.cart-count[hidden] { display: none; }
.cart-count.pulse { animation: sz-pop var(--dur-slow) var(--ease-out); }

/* ============================================================
   FLOATING WHATSAPP (desktop) + ORDER BAR (mobile)
   ============================================================ */
.sz-ui .sz-wa-float { position: fixed; right: 24px; bottom: 24px; z-index: 9970; width: 56px; height: 56px; border-radius: 50%;
  display: none; place-items: center; background: var(--sz-wa); color: var(--sz-white);
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.45); transition: transform var(--dur-base) var(--ease-out); }
.sz-ui .sz-wa-float:hover { transform: scale(1.06); color: var(--sz-white); }

.sz-bar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 9970; display: flex; align-items: stretch;
  height: calc(var(--bottombar-h) + env(safe-area-inset-bottom)); padding: 0 6px env(safe-area-inset-bottom);
  background: var(--sz-white); border-top: 1px solid var(--sz-cream-200); box-shadow: 0 -6px 18px rgba(33, 23, 14, 0.08); }
body .sz-ui .sz-bar > a, body .sz-ui .sz-bar > button {
  flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.01em; color: var(--sz-espresso-500); text-decoration: none; }
body .sz-ui .sz-bar > a:hover { color: var(--sz-espresso); }
.sz-bar > a:nth-child(3) svg { color: #1DA851; }
body .sz-ui .sz-bar .sz-bar__order { position: relative; flex: 1.3; flex-direction: row; gap: 8px; margin: 8px 2px;
  border-radius: var(--radius-pill); background: var(--sz-espresso); color: var(--sz-saffron); font-size: 13px; font-weight: 800; }
body .sz-ui .sz-bar .sz-bar__order:hover { background: var(--sz-espresso-700); color: var(--sz-saffron); }
.sz-bar__order .cart-count { top: -4px; right: 4px; }

@media (min-width: 900px) {
  .sz-bar { display: none; }
  .sz-ui .sz-wa-float { display: grid; }
  .sz-toast { bottom: 28px; }
}
@media (max-width: 899px) {
  body { padding-bottom: calc(var(--bottombar-h) + env(safe-area-inset-bottom)); }
}

@media (prefers-reduced-motion: reduce) {
  .sz-ui *, .sz-cart__drawer, .sz-toast { transition: none !important; animation: none !important; }
}
@media (max-width: 480px) { body .sz-ui .sz-row .sz-add { min-height: 36px; min-width: 68px; padding: 7px 13px; } }
