/* ── Avenir LT Pro · self-hosted ── */
@font-face { font-family: 'Avenir LT Pro'; src: url('fonts/AvenirLTProLight.otf') format('opentype'); font-weight: 300; font-style: normal; font-display: swap; }
@font-face { font-family: 'Avenir LT Pro'; src: url('fonts/AvenirLTProLightOblique.otf') format('opentype'); font-weight: 300; font-style: italic; font-display: swap; }
@font-face { font-family: 'Avenir LT Pro'; src: url('fonts/AvenirLTProBook.otf') format('opentype'); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: 'Avenir LT Pro'; src: url('fonts/AvenirLTProBookOblique.otf') format('opentype'); font-weight: 400; font-style: italic; font-display: swap; }
@font-face { font-family: 'Avenir LT Pro'; src: url('fonts/AvenirLTProRoman.otf') format('opentype'); font-weight: 500; font-style: normal; font-display: swap; }
@font-face { font-family: 'Avenir LT Pro'; src: url('fonts/AvenirLTProOblique.otf') format('opentype'); font-weight: 500; font-style: italic; font-display: swap; }
@font-face { font-family: 'Avenir LT Pro'; src: url('fonts/AvenirLTProMedium.otf') format('opentype'); font-weight: 600; font-style: normal; font-display: swap; }
@font-face { font-family: 'Avenir LT Pro'; src: url('fonts/AvenirLTProMediumOblique.otf') format('opentype'); font-weight: 600; font-style: italic; font-display: swap; }
@font-face { font-family: 'Avenir LT Pro'; src: url('fonts/AvenirLTProHeavy.otf') format('opentype'); font-weight: 700; font-style: normal; font-display: swap; }
@font-face { font-family: 'Avenir LT Pro'; src: url('fonts/AvenirLTProHeavyOblique.otf') format('opentype'); font-weight: 700; font-style: italic; font-display: swap; }
@font-face { font-family: 'Avenir LT Pro'; src: url('fonts/AvenirLTProBlack.otf') format('opentype'); font-weight: 800; font-style: normal; font-display: swap; }
@font-face { font-family: 'Avenir LT Pro'; src: url('fonts/AvenirLTProBlackOblique.otf') format('opentype'); font-weight: 800; font-style: italic; font-display: swap; }

:root {
  /* Plum & Peach palette */
  --peach-cream: #FFF4EC;      /* page bg, warm and soft */
  --peach-cream-2: #F8E6D6;    /* deeper peach for panels */
  --aubergine: #2D1B3D;        /* header + dark surfaces */
  --aubergine-lt: #4A2E5E;     /* slightly lighter aubergine */
  --coral: #FF9063;            /* primary accent — CTAs, selected */
  --coral-dk: #E87549;         /* coral hover */
  --plum: #8B3A62;             /* secondary accent — eyebrows, bullets */
  --plum-dk: #6E2C4D;
  --ink: #2D1B3D;              /* body text = aubergine */
  --ink-muted: #5B4A6B;

  /* Legacy var names kept so existing rules keep working */
  --qi-navy: var(--aubergine);
  --qi-navy-80: #5a466a;
  --qi-navy-60: #8577a0;
  --qi-navy-40: #b3aac1;
  --qi-navy-20: #d9d3e0;
  --qi-orange: var(--coral);
  --qi-orange-hover: var(--coral-dk);
  --qi-orange-20: #FFDECB;

  --bg: var(--peach-cream);
  --bg-subtle: #FFFFFF;
  --bg-muted: var(--peach-cream-2);
  --text: var(--ink);
  --text-muted: var(--ink-muted);
  --border: rgba(45, 27, 61, 0.12);

  --font: 'Avenir LT Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);

  --tap: 44px;
  --bar-height: 80px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.55;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  padding-bottom: calc(var(--bar-height) + env(safe-area-inset-bottom));
}

a { color: var(--qi-orange); text-decoration: none; }
a:hover { text-decoration: underline; }

.tabular { font-variant-numeric: tabular-nums; font-feature-settings: "tnum" 1, "lnum" 1; }

/* ── Header ── */
.header {
  padding: 28px 20px 20px;
  background: var(--aubergine);
  color: #fff;
  border-bottom: 3px solid var(--coral);
}
.header .eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 10px;
  display: flex; align-items: center; gap: 10px;
}
.header .eyebrow::before {
  content: ''; width: 24px; height: 2px; background: var(--coral);
}
.header h1 {
  font-size: clamp(34px, 8vw, 48px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-bottom: 8px;
  color: #fff;
}
.header h1 em {
  font-style: italic; color: var(--coral);
}
.header .sub {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 14px;
}
.header .meta {
  display: flex; gap: 16px; flex-wrap: wrap;
  font-size: 13px;
  color: rgba(255,255,255,0.85);
}
.header .meta .count { font-weight: 700; color: var(--coral); }
.header .meta a { color: #fff; font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.header .meta a:hover { color: var(--coral); }

/* ── Filter bar ── */
.filter-bar {
  position: sticky;
  top: 0;
  z-index: 10;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  padding: 12px 20px;
  display: flex; gap: 8px; align-items: center; flex-wrap: wrap;
  margin-top: 16px;
}
.filter-help {
  padding: 10px 20px 0;
  font-size: 12.5px;
  color: var(--text-muted);
  font-style: italic;
}
.filter-bar .label {
  font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-muted); margin-right: 4px;
}
.filter-pill {
  font-family: var(--font);
  font-size: 12px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--text-muted);
  cursor: pointer;
  min-height: var(--tap);
  transition: all 0.2s ease;
}
.filter-pill[aria-pressed="true"] {
  background: rgba(255, 144, 99, 0.18);
  border-color: var(--coral);
  color: var(--coral-dk);
}

/* ── Pick 5 call-to-action ── */
.cta {
  margin: 16px 20px 4px;
  padding: 20px 22px 18px;
  background: #fff;
  border: 2px solid var(--aubergine);
  border-radius: 14px;
  box-shadow: 0 6px 20px rgba(45, 27, 61, 0.10);
  position: relative;
  z-index: 2;
}
.cta-line {
  font-size: clamp(24px, 5.5vw, 30px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--aubergine);
  margin-bottom: 8px;
}
.cta-num {
  display: inline-block;
  color: var(--coral);
  font-size: 1.25em;
  font-style: italic;
  padding: 0 2px;
}
.cta-how {
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-muted);
}
.cta-plus {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
  background: var(--coral);
  color: var(--aubergine);
  font-weight: 800;
  border-radius: 50%;
  vertical-align: -6px;
  margin: 0 2px;
  box-shadow: 0 2px 6px rgba(255, 144, 99, 0.4);
}

/* ── Weekend info strip ── */
.info {
  margin: 16px 20px 0;
  padding: 16px 18px;
  background: #fff;
  border: 1px solid var(--border);
  border-left: 4px solid var(--pink);
  border-radius: 0 10px 10px 0;
}
.info-row {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 12px;
  padding: 6px 0;
  font-size: 14px;
  line-height: 1.5;
}
.info-row + .info-row { border-top: 1px dashed var(--border); }
.info-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--qi-orange);
  align-self: center;
}
.info-value { color: var(--text); }
.info-value a { font-weight: 600; }
.info-note {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px dashed var(--border);
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--text-muted);
}
.cal-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  padding: 11px 18px;
  background: var(--coral);
  color: var(--aubergine);
  font-family: var(--font);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 8px;
  min-height: var(--tap);
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(255, 144, 99, 0.3);
  transition: all 0.2s ease;
}
.cal-btn::before {
  content: '';
  display: inline-block;
  width: 14px; height: 14px;
  background: var(--aubergine);
  -webkit-mask: linear-gradient(var(--aubergine), var(--aubergine)) center / 14px 2px no-repeat,
                linear-gradient(var(--aubergine), var(--aubergine)) center / 2px 14px no-repeat;
          mask: linear-gradient(var(--aubergine), var(--aubergine)) center / 14px 2px no-repeat,
                linear-gradient(var(--aubergine), var(--aubergine)) center / 2px 14px no-repeat;
}
.cal-btn:hover {
  background: var(--coral-dk);
  transform: translateY(-1px);
  text-decoration: none;
}

/* ── Banner (returning voter / multi-ballot prompt) ── */
.banner {
  margin: 16px 20px 0;
  padding: 14px 16px;
  background: rgba(255, 144, 99, 0.12);
  border-left: 4px solid var(--coral);
  border-radius: 0 8px 8px 0;
  font-size: 14px;
  color: var(--text);
}
.banner strong { color: var(--qi-navy); }
.banner .name-buttons {
  display: flex; gap: 8px; flex-wrap: wrap; margin-top: 10px;
}
.banner button {
  font-family: var(--font); font-size: 13px; font-weight: 600;
  padding: 8px 14px; border-radius: 8px;
  border: 1px solid var(--qi-orange); background: #fff; color: var(--qi-orange);
  cursor: pointer; min-height: var(--tap);
}

/* ── Grid ── */
.grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  padding: 18px 20px 28px;
}
@media (min-width: 640px) {
  .grid { grid-template-columns: repeat(2, 1fr); gap: 18px; padding: 24px; }
}
@media (min-width: 1024px) {
  .grid { grid-template-columns: repeat(3, 1fr); max-width: 1200px; margin: 0 auto; }
}

/* ── Winery card (flip container) ── */
.card {
  position: relative;
  perspective: 1200px;
  min-height: 560px;
  border-radius: 12px;
  cursor: pointer;
  transition: box-shadow 0.2s ease;
}
.card.selected {
  box-shadow: 0 0 0 3px rgba(255, 144, 99, 0.40);
  border-radius: 12px;
}
.card.blacklisted { order: 999; opacity: 0.7; }

.card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 560px;
  transition: transform 0.6s var(--ease);
  transform-style: preserve-3d;
}
.card.flipped .card-inner { transform: rotateY(180deg); }

.card-face {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  display: flex;
  flex-direction: column;
}
.card.selected .card-face { border-color: var(--qi-orange); }
.card.blacklisted .card-face { border-color: #C0392B; }
.card.blacklisted .card-name { text-decoration: line-through; }

.card-face.back {
  transform: rotateY(180deg);
  background: var(--qi-navy);
  color: #fff;
  padding: 20px;
  overflow-y: auto;
}
.card-face.back .card-name { color: #fff; }
.card-face.back .card-desc { color: rgba(255,255,255,0.8); font-size: 14px; line-height: 1.6; margin-bottom: 16px; }
.card-face.back .card-amenities { margin-bottom: 16px; }
.card-face.back .amenity {
  color: rgba(255,255,255,0.7);
  border-color: rgba(255,255,255,0.15);
}
.card-face.back .card-link {
  display: inline-block;
  margin-top: 6px;
  padding: 10px 16px;
  background: var(--qi-orange);
  color: var(--qi-navy);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 12px;
  border-radius: 6px;
  min-height: var(--tap);
  display: inline-flex;
  align-items: center;
}
.card-face.back .card-link:hover { background: var(--qi-orange-hover); text-decoration: none; }

.flip-back {
  position: relative;
  align-self: flex-start;
  font-family: var(--font);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 8px 14px;
  min-height: 36px;
  margin-bottom: 14px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.06);
  color: #fff;
  border-radius: 6px;
  cursor: pointer;
}
.flip-back:hover { background: rgba(255,255,255,0.12); }

.back-body { flex: 1; }
.back-name { font-size: 20px; margin-bottom: 14px; }

.card-event {
  background: var(--coral);
  color: var(--aubergine);
  padding: 10px 14px 11px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
  border-bottom: 2px solid var(--aubergine);
}
.card-event-label {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.72;
}
.card-event-title {
  font-size: 13.5px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.005em;
}
.card-event-meta {
  font-size: 11px;
  font-weight: 600;
  line-height: 1.35;
  opacity: 0.88;
}

.card-photo {
  aspect-ratio: 16/9;
  background: var(--aubergine);
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  flex-shrink: 0;
}
.card-photo.placeholder::before {
  content: attr(data-name);
  font-size: 15px; font-weight: 700;
  color: var(--qi-orange);
  padding: 0 20px; text-align: center;
  letter-spacing: -0.01em;
}
.card-photo .toggle {
  position: absolute;
  top: 10px; right: 10px;
  width: var(--tap); height: var(--tap);
  min-width: var(--tap); min-height: var(--tap);
  border-radius: 50%;
  border: none;
  background: #fff;
  color: var(--qi-navy);
  font-size: 24px;
  font-weight: 600;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  transition: all 0.2s ease;
}
.card.selected .card-photo .toggle {
  background: var(--qi-orange);
  color: #fff;
}

.card-body {
  padding: 14px 16px 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.card-tagstrip {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin-bottom: 10px;
}
.tagchip {
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 4px;
  background: var(--bg-muted);
  color: var(--text-muted);
}
.tagchip.food { background: rgba(46,139,87,0.12); color: #226B43; }

.card-name {
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 2px;
}
.card-vibe {
  font-size: 10px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--plum);
  margin-bottom: 4px;
}
.card-desc {
  font-size: 13.5px; line-height: 1.55;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.card-amenities {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin-bottom: 10px;
}
.amenity {
  font-size: 10px; letter-spacing: 0.04em;
  padding: 3px 8px;
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--text-muted);
}
.card-highlights {
  list-style: none;
  margin: 6px 0 10px;
  padding: 0;
}
.card-highlights li {
  position: relative;
  padding: 3px 0 3px 16px;
  font-size: 13px;
  line-height: 1.4;
  color: var(--text);
  border-bottom: 1px dashed rgba(45, 27, 61, 0.08);
}
.card-highlights li:last-child { border-bottom: none; }
.card-highlights li::before {
  content: '';
  position: absolute;
  left: 0; top: 10px;
  width: 7px; height: 7px;
  background: var(--plum);
  border-radius: 50%;
}

.card-footer {
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
  gap: 10px;
}
.card-votes {
  font-size: 13px; font-weight: 700;
  color: var(--qi-navy);
}
.card-votes .zero { color: var(--text-muted); font-weight: 500; }
.flip-hint {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--qi-orange);
}

.blacklist-note {
  margin-top: 6px;
  padding: 10px 12px;
  font-size: 12.5px;
  line-height: 1.5;
  background: rgba(192, 57, 43, 0.08);
  border-radius: 6px;
  color: #8B2E2E;
}

/* ── Voting bar (bottom-fixed on mobile) ── */
.voting-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--qi-navy);
  color: #fff;
  padding: 14px 20px calc(14px + env(safe-area-inset-bottom));
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  z-index: 50;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
}
.voting-bar .progress {
  display: flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600; letter-spacing: 0.04em;
}
.voting-bar .dots { display: flex; gap: 4px; }
.voting-bar .dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,0.25);
}
.voting-bar .dot.filled { background: var(--qi-orange); }
.voting-bar .cast {
  font-family: var(--font); font-size: 14px; font-weight: 700;
  letter-spacing: 0.04em; text-transform: uppercase;
  padding: 12px 20px;
  min-height: var(--tap);
  background: var(--qi-orange);
  color: var(--qi-navy);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.voting-bar .cast:disabled {
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.5);
  cursor: not-allowed;
}

/* ── Modal ── */
.modal-backdrop {
  position: fixed; inset: 0;
  background: rgba(32, 57, 70, 0.6);
  display: none;
  align-items: center; justify-content: center;
  z-index: 100;
  padding: 20px;
}
.modal-backdrop.open { display: flex; }
.modal {
  background: #fff;
  border-radius: 14px;
  padding: 24px;
  max-width: 440px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
}
.modal h2 {
  font-size: 22px; font-weight: 800; letter-spacing: -0.01em;
  margin-bottom: 6px;
}
.modal .modal-sub { font-size: 14px; color: var(--text-muted); margin-bottom: 16px; }
.modal ul { list-style: none; margin-bottom: 18px; }
.modal li {
  padding: 10px 12px;
  background: var(--bg-subtle);
  border-radius: 8px;
  margin-bottom: 6px;
  font-size: 14px; font-weight: 600;
}
.modal label { display: block; font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); margin-bottom: 6px; }
.modal input[type="text"] {
  font-family: var(--font); font-size: 16px;
  width: 100%;
  padding: 12px 14px;
  border: 2px solid var(--border);
  border-radius: 8px;
  min-height: var(--tap);
  margin-bottom: 14px;
}
.modal input[type="text"]:focus {
  outline: none; border-color: var(--qi-orange);
}
.modal .error {
  font-size: 13px; color: #C0392B;
  margin-bottom: 10px;
  display: none;
}
.modal .error.show { display: block; }
.modal .actions { display: flex; gap: 10px; }
.modal .actions button {
  flex: 1;
  font-family: var(--font); font-size: 14px; font-weight: 700;
  letter-spacing: 0.04em; text-transform: uppercase;
  padding: 12px 16px;
  min-height: var(--tap);
  border: none; border-radius: 8px;
  cursor: pointer;
}
.modal .actions .primary { background: var(--qi-orange); color: var(--qi-navy); }
.modal .actions .secondary { background: var(--bg-muted); color: var(--text); }

/* ── Toast ── */
.toast {
  position: fixed;
  bottom: calc(var(--bar-height) + 20px + env(safe-area-inset-bottom));
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--qi-navy);
  color: #fff;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 14px; font-weight: 600;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s var(--ease);
  z-index: 200;
  max-width: 90vw;
}
.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* ── Itinerary page ── */
.itin-status {
  margin: 16px 20px;
  padding: 14px 16px;
  background: var(--bg-subtle);
  border-left: 3px solid var(--qi-navy);
  border-radius: 0 8px 8px 0;
  font-size: 14px;
}
.timeline { padding: 10px 20px 24px; }
.stop {
  position: relative;
  padding: 18px;
  margin-bottom: 12px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
}
.stop-num {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--qi-orange);
  color: var(--qi-navy);
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
}
.stop-body h3 {
  font-size: 18px; font-weight: 800; letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.stop-body .meta {
  font-size: 11px; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--qi-orange);
  margin-bottom: 8px;
}
.stop-body p {
  font-size: 13.5px; line-height: 1.5;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.stop-body .votes {
  font-size: 12px; font-weight: 700; color: var(--qi-navy);
}
.stop-lunch {
  border: 2px solid var(--qi-orange);
  background: linear-gradient(180deg, #FFF4EC 0%, #FFFFFF 60%);
}
.stop-lunch .stop-num {
  background: var(--qi-navy);
  color: var(--qi-orange);
}
.lunch-tag {
  display: inline-block;
  background: var(--qi-orange);
  color: #fff;
  font-size: 12px; font-weight: 800; letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 8px;
}
.food-summary {
  margin: 20px 20px;
  padding: 18px 20px;
  background: var(--qi-navy);
  color: #fff;
  border-radius: 12px;
}
.food-summary h3 {
  font-size: 13px; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--qi-orange);
  margin-bottom: 12px;
}
.food-summary .item {
  font-size: 14px; margin-bottom: 8px; color: rgba(255,255,255,0.9);
}
.food-summary .warn { color: #FFD199; font-weight: 600; }

.also-rans {
  margin: 12px 20px 40px;
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}
.also-rans summary {
  padding: 12px 16px;
  font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.05em;
  color: var(--text-muted);
  cursor: pointer;
  background: var(--bg-subtle);
}
.also-rans ul { list-style: none; padding: 8px 0; }
.also-rans li {
  padding: 10px 16px;
  display: flex; justify-content: space-between;
  font-size: 14px;
  border-bottom: 1px solid var(--border);
}
.also-rans li:last-child { border-bottom: none; }

.updated {
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
  padding: 20px;
}
