/* ===========================================================
   Postpartum Menu — "Detox" editorial style
   Cream canvas · orange accent · DM Mono labels
   =========================================================== */

:root {
  --bg: #f5f4f2;
  --bg-soft: #efece6;
  --surface: #ffffff;
  --ink: #121212;
  --muted: #808080;
  --accent: #e84f2f;
  --accent-soft: #f7d9cf;
  --border: rgba(18, 18, 18, 0.12);
  --radius: 8px;
  --ease: cubic-bezier(0.12, 0.23, 0.5, 1);
  --display: "Inter", "Tajawal", sans-serif;
  --mono: "DM Mono", "Tajawal", monospace;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--display);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

[dir="rtl"] body { font-family: "Tajawal", sans-serif; }

a { color: inherit; text-decoration: none; }

/* ---------- full-bleed page hero ---------- */
.page-hero {
  position: relative;
  width: 100%;
  height: min(92vh, 900px);
  height: min(92svh, 900px); /* iOS Safari: exclude the address bar */
  overflow: hidden;
  background: var(--bg);
}
.page-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 32%;
}
/* fade the bottom of the photo into the page background */
.page-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 55%;
  background: linear-gradient(to bottom, rgba(245, 244, 242, 0) 0%, rgba(245, 244, 242, 0.7) 55%, var(--bg) 92%);
  pointer-events: none;
  z-index: 1;
}
.page-hero-inner {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 0 22px clamp(34px, 8vh, 80px);
  text-align: center;
}
.page-hero-inner .display {
  margin: 0;
  color: var(--accent);
  font-size: clamp(42px, 11vw, 104px);
  line-height: 0.92;
}
.page-hero-inner p {
  margin: 16px auto 0;
  max-width: 28ch;
  font-size: clamp(15px, 2.2vw, 19px);
  letter-spacing: -0.01em;
  color: var(--ink);
}
@media (max-width: 540px) {
  .page-hero {
    height: min(86svh, 720px);
  }
  .page-hero > img { object-position: center 28%; }
  .page-hero::after { height: 46%; }
  .page-hero-inner {
    padding: 0 20px clamp(26px, 6vh, 48px);
  }
  .page-hero-inner .display { font-size: clamp(40px, 15vw, 68px); }
  .page-hero-inner p { font-size: 15px; margin-top: 12px; }
}

/* ---------- top bar ---------- */
.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px clamp(18px, 5vw, 64px);
  background: rgba(245, 244, 242, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.brand { display: flex; flex-direction: column; gap: 2px; line-height: 1; }
.brand b {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--accent);
  text-transform: lowercase;
}
.brand span {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--muted);
}
.lang-switch {
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: #fff;
  background: var(--accent);
  border: none;
  border-radius: 999px;
  padding: 9px 18px;
  cursor: pointer;
  transition: opacity 0.25s var(--ease);
}
.lang-switch:hover { opacity: 0.85; }
.topbar-actions { display: flex; align-items: center; gap: 10px; }
.style-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--accent);
  background: transparent;
  border: 1px solid var(--accent);
  border-radius: 999px;
  padding: 8px 16px;
  transition: all 0.25s var(--ease);
}
.style-link:hover { background: var(--accent); color: #fff; }

/* ---------- hero ---------- */
.hero {
  max-width: 1160px;
  margin: 0 auto;
  padding: clamp(48px, 9vw, 120px) clamp(18px, 5vw, 64px) 30px;
  text-align: left;
}
.display {
  margin: 0;
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 0.92;
  text-transform: lowercase;
  color: var(--accent);
  font-size: clamp(48px, 11vw, 120px);
  text-wrap: balance;
}
.hero p {
  margin: 22px 0 0;
  max-width: 36ch;
  font-size: clamp(16px, 2.2vw, 20px);
  letter-spacing: -0.01em;
  color: var(--ink);
}
[dir="rtl"] .hero,
[dir="rtl"] .brand { text-align: right; }

/* ---------- category tabs ---------- */
.tabs {
  position: sticky;
  top: 72px;
  z-index: 30;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 1160px;
  margin: 0 auto;
  padding: 16px clamp(18px, 5vw, 64px);
  background: rgba(245, 244, 242, 0.9);
  backdrop-filter: blur(10px);
}
.tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--ink);
  font-family: var(--mono);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: all 0.25s var(--ease);
}
.tab .count { font-size: 11px; color: var(--muted); }
.tab:hover { border-color: var(--accent); color: var(--accent); }
.tab:hover .count { color: var(--accent); }
.tab.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.tab.active .count { color: rgba(255, 255, 255, 0.75); }

/* ---------- sections + grid ---------- */
main { padding-bottom: 120px; }
.section {
  max-width: 1160px;
  margin: 0 auto;
  padding: 40px clamp(18px, 5vw, 64px) 10px;
  scroll-margin-top: 130px;
}
.section-title {
  margin: 0 0 26px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--muted);
}
.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px 20px;
}

/* ---------- section divider banner ---------- */
.section-banner {
  position: relative;
  max-width: 1160px;
  margin: 34px auto 0;
  padding: 0 clamp(18px, 5vw, 64px);
}
.section-banner img {
  display: block;
  width: 100%;
  height: clamp(300px, 42vw, 460px);
  object-fit: cover;
  object-position: center 36%;
  border-radius: var(--radius);
}
/* fade the top and bottom of the photo into the page background */
.section-banner::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: clamp(18px, 5vw, 64px);
  right: clamp(18px, 5vw, 64px);
  border-radius: var(--radius);
  background: linear-gradient(
    to bottom,
    var(--bg) 0%,
    rgba(245, 244, 242, 0) 24%,
    rgba(245, 244, 242, 0) 56%,
    var(--bg) 100%
  );
  pointer-events: none;
}
.banner-label {
  position: absolute;
  top: 0;
  bottom: 0;
  left: clamp(18px, 5vw, 64px);
  right: clamp(18px, 5vw, 64px);
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: clamp(18px, 4vw, 44px);
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(40px, 8vw, 88px);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  pointer-events: none;
}
[dir="rtl"] .banner-label { letter-spacing: normal; }

/* ---------- menu card ---------- */
.card {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 16px;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}
.card .media {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius);
  background: linear-gradient(160deg, var(--bg-soft), #e7e2da);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: box-shadow 0.3s var(--ease), outline-color 0.2s var(--ease);
  outline: 2px solid transparent;
  outline-offset: -2px;
}
.card:hover .media { box-shadow: 0 16px 40px rgba(18, 18, 18, 0.1); }
.card .media .photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: transform 0.5s var(--ease);
}
.card:hover .media .photo { transform: scale(1.05); }
.card .emoji {
  font-size: clamp(52px, 7vw, 76px);
  filter: drop-shadow(0 10px 16px rgba(0, 0, 0, 0.12));
}

.card .tag {
  position: absolute;
  top: 12px;
  inset-inline-start: 13px;
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: var(--accent);
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--accent);
  border-radius: 5px;
  padding: 4px 8px;
}
.card .check {
  position: absolute;
  z-index: 2;
  top: 12px;
  inset-inline-end: 13px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 15px;
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.25s var(--ease);
}

.card-body { display: flex; flex-direction: column; gap: 8px; }
.card .cat {
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--muted);
}
.card h3 {
  margin: 0;
  font-family: var(--mono);
  font-weight: 500;
  font-size: 18px;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--accent);
}
.card .desc {
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
  letter-spacing: -0.01em;
  color: var(--ink);
}

/* selected state */
.card.selected .media {
  outline-color: var(--accent);
  background: linear-gradient(160deg, var(--accent-soft), #f0c9bd);
}
.card.selected .check { opacity: 1; transform: scale(1); }

/* ---------- floating cart bar ---------- */
.cartbar {
  position: fixed;
  inset-inline: 0;
  bottom: 22px;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 18px;
  width: max-content;
  max-width: calc(100% - 32px);
  margin: 0 auto;
  padding: 8px 8px 8px 22px;
  background: var(--ink);
  color: #fff;
  border-radius: 999px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
  opacity: 0;
  transform: translateY(120%);
  transition: all 0.4s var(--ease);
}
.cartbar.show { opacity: 1; transform: translateY(0); }
.count-info {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.7);
}
.count-info b { color: #fff; font-size: 15px; }
.cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
  padding: 11px 20px;
  font-family: var(--mono);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  transition: opacity 0.25s var(--ease);
}
.cta:hover { opacity: 0.88; }
.cta .arrow { transition: transform 0.25s var(--ease); }
.cta:hover .arrow { transform: translateX(3px); }
[dir="rtl"] .cta .arrow { transform: scaleX(-1); }
[dir="rtl"] .cta:hover .arrow { transform: scaleX(-1) translateX(3px); }

/* ---------- order / selection page ---------- */
.order-wrap {
  max-width: 880px;
  margin: 0 auto;
  padding: clamp(40px, 8vw, 90px) clamp(18px, 5vw, 64px) 120px;
}
.order-head { margin-bottom: 40px; }
.order-head .display { font-size: clamp(40px, 8vw, 88px); }
.order-head p {
  margin: 18px 0 0;
  font-size: 18px;
  color: var(--ink);
}
[dir="rtl"] .order-head { text-align: right; }

.order-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border);
}
.order-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 4px;
  border-bottom: 1px solid var(--border);
  animation: rise 0.5s var(--ease) both;
}
@keyframes rise {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: none; }
}
.oi-emoji {
  position: relative;
  flex: none;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  border-radius: var(--radius);
  background: var(--bg-soft);
  overflow: hidden;
}
.oi-emoji .thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.oi-text { display: flex; flex-direction: column; gap: 4px; flex: 1; min-width: 0; }
.oi-text b {
  font-family: var(--mono);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: -0.02em;
  color: var(--accent);
}
.oi-text span {
  font-size: 13px;
  line-height: 1.45;
  color: var(--muted);
}
.remove-btn {
  flex: none;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--muted);
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s var(--ease);
}
.remove-btn:hover { border-color: var(--accent); color: var(--accent); }

.recipe-btn {
  flex: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #fff;
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  text-decoration: none;
  transition: opacity 0.25s var(--ease);
}
.recipe-btn:hover { opacity: 0.85; }

.summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 28px;
}
.summary .label {
  font-family: var(--mono);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--muted);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--ink);
  font-family: var(--mono);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: all 0.25s var(--ease);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn-solid {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #fff;
  font-family: var(--mono);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: opacity 0.25s var(--ease);
}
.btn-solid:hover { opacity: 0.88; }
[dir="rtl"] .btn-ghost .arrow,
[dir="rtl"] .back-arrow { display: inline-block; transform: scaleX(-1); }

/* ---------- order scheduling modal ---------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  overflow-y: auto;
  background: rgba(18, 18, 18, 0.45);
  backdrop-filter: blur(4px);
}
.modal-overlay[hidden] { display: none; }
.modal {
  position: relative;
  width: 100%;
  max-width: 380px;
  padding: 34px 26px 26px;
  background: var(--surface);
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
  animation: rise 0.35s var(--ease) both;
}
.modal h3 {
  margin: 0 0 22px;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.modal-actions { display: flex; flex-direction: column; gap: 10px; }
.modal-actions .btn-solid,
.modal-actions .btn-ghost { width: 100%; justify-content: center; }
.modal-close {
  position: absolute;
  top: 12px;
  inset-inline-end: 14px;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--muted);
  font-size: 13px;
  cursor: pointer;
  transition: all 0.2s var(--ease);
}
.modal-close:hover { border-color: var(--accent); color: var(--accent); }
.day-toggle { display: flex; gap: 8px; margin-bottom: 16px; }
.day-btn {
  flex: 1;
  padding: 13px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--ink);
  font-family: var(--mono);
  font-size: 13px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s var(--ease);
}
.day-btn.active { background: var(--accent); border-color: var(--accent); color: #fff; }
.modal input[type="time"] {
  -webkit-appearance: none;
  appearance: none;
  display: block;
  box-sizing: border-box;
  width: 100%;
  min-height: 52px;
  padding: 14px 16px;
  margin-bottom: 20px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--mono);
  font-size: 20px;
  text-align: center;
}
.modal input[type="time"]:focus {
  outline: none;
  border-color: var(--accent);
}
/* center the HH:MM value on iOS/Safari/Chrome (native inputs left-align it) */
.modal input[type="time"]::-webkit-datetime-edit {
  width: 100%;
  text-align: center;
}
.modal input[type="time"]::-webkit-date-and-time-value {
  text-align: center;
}
.modal input[type="time"]::-webkit-calendar-picker-indicator {
  margin-inline-start: 0;
}

/* add-a-note block on the selection page */
.note-block {
  margin-top: 22px;
  text-align: start;
}
.note-label {
  display: block;
  margin-bottom: 8px;
  font-family: var(--mono);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--muted);
}
.note-input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--surface);
  color: var(--ink);
  font-family: var(--display);
  font-size: 15px;
  line-height: 1.5;
  resize: vertical;
}
.note-input:focus {
  outline: none;
  border-color: var(--accent);
}
[dir="rtl"] .note-block { text-align: right; }

/* note display on the exported page */
.note-display {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 16px;
  padding: 14px 18px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--surface);
  text-align: start;
}
.note-display b {
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--muted);
}
.note-display span {
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink);
  white-space: pre-wrap;
}
[dir="rtl"] .note-display { text-align: right; }

/* schedule note on the exported page */
.schedule-note {
  margin-top: 18px;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  text-align: center;
}

/* ---------- empty state ---------- */
.empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding: 70px 0;
  text-align: center;
}
.empty-state .big { font-size: 60px; }
.empty-state p { margin: 0; font-size: 18px; color: var(--muted); }

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .tabs { top: 66px; }
}
@media (max-width: 540px) {
  .grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 26px 14px; }
}

/* ---------- chef / kitchen dashboard ---------- */
body.chef { background: var(--bg-soft); }
.chef-bar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  padding: 16px clamp(16px, 4vw, 40px);
  background: var(--ink);
  color: #fff;
}
.chef-title { display: flex; flex-direction: column; gap: 2px; line-height: 1.1; }
.chef-title b { font-size: 20px; letter-spacing: -0.02em; }
.chef-title span {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.6);
}
.chef-actions { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.chef-status {
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
}
.chef-bar .btn-ghost { color: #fff; border-color: rgba(255, 255, 255, 0.4); }
.chef-bar .btn-ghost:hover { border-color: #fff; color: #fff; background: rgba(255, 255, 255, 0.1); }

.orders-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px clamp(16px, 4vw, 40px) 80px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 18px;
  align-items: start;
}
.co-empty {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--muted);
  font-size: 17px;
  padding: 60px 0;
}
.order-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 8px 24px rgba(18, 18, 18, 0.05);
}
.order-card.status-new { border-color: var(--accent); box-shadow: 0 10px 30px var(--accent-soft); }
.order-card.status-done { opacity: 0.6; }
.co-head { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.co-id { display: flex; flex-direction: column; gap: 2px; }
.co-id b { font-size: 16px; }
.co-id span { font-family: var(--mono); font-size: 11px; color: var(--muted); }
.co-badge {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--bg-soft);
  color: var(--muted);
}
.status-new .co-badge { background: var(--accent); color: #fff; }
.status-preparing .co-badge { background: var(--gold, #d6a23c); color: #fff; }
.status-done .co-badge { background: #cfe0c2; color: #2d7a4d; }
.co-sched {
  margin-top: 10px;
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
  color: var(--accent);
}
.co-items { list-style: none; margin: 12px 0 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.co-items li { display: flex; align-items: center; gap: 10px; font-size: 15px; }
.co-thumb { width: 40px; height: 40px; object-fit: cover; border-radius: 8px; flex: none; }
.co-note {
  margin-top: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  background: var(--bg-soft);
  font-size: 14px;
  line-height: 1.4;
}
.co-note b { color: var(--muted); font-size: 12px; text-transform: uppercase; font-family: var(--mono); }
.co-actions { display: flex; gap: 8px; margin-top: 16px; }
.co-actions button {
  flex: 1;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--ink);
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s var(--ease);
}
.co-actions button:hover { border-color: var(--accent); color: var(--accent); }

.co-thumb { cursor: pointer; transition: transform 0.2s var(--ease); }
.co-thumb:hover { transform: scale(1.08); }

/* ---------- chef photo lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);
}
.lb-inner {
  position: relative;
  width: 100%;
  max-width: 420px;
  padding: 16px;
  background: var(--surface);
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}
.lb-inner img { width: 100%; border-radius: 12px; display: block; }
.lb-title { margin: 14px 0 12px; font-size: 17px; font-weight: 700; color: var(--ink); }
.lb-recipe { display: inline-flex; }
.lb-norecipe {
  display: inline-block;
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
  color: var(--muted);
}
.lb-close {
  position: absolute;
  top: 10px;
  inset-inline-end: 12px;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: none;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-size: 14px;
  cursor: pointer;
}

/* ---------- customer live status toast ---------- */
.status-toast {
  position: fixed;
  inset-inline: 0;
  bottom: 22px;
  z-index: 60;
  width: max-content;
  max-width: calc(100% - 32px);
  margin: 0 auto;
  padding: 14px 24px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-family: var(--mono);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  text-align: center;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.25);
  animation: rise 0.4s var(--ease) both;
}
.status-toast.ready { background: #2d7a4d; }
.status-toast[hidden] { display: none; }

/* ---------- entrance ---------- */
.fade-in { animation: fade 0.7s var(--ease) both; }
@keyframes fade {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: none; }
}
