/* Andromeda cuisine landing pages — supplementary styles
 * Sits on top of ../css/andromeda.css. Adds cuisine-specific visual
 * mockups, comparison tables and page-accent tweaks.
 */

/* ===== Page ribbon variants per cuisine =====
 * Main andromeda.css already defines: ribbon-sky, ribbon-green,
 * ribbon-yellow, ribbon-purple, ribbon-coral. Cuisine pages pick one
 * of those. We add a warm amber variant used by the chicken shop page. */
.ribbon-amber { background: linear-gradient(90deg, #f6a552 0%, rgba(246, 165, 82, 0.3) 100%); }
.accent-amber::before { background: #f6a552; }

/* ===== FAQ — bridge JS ↔ CSS class mismatch ===== */
.faq-item.is-open .faq-question::after { transform: rotate(45deg); }
.faq-item.is-open .faq-answer { max-height: 600px; padding-top: 14px; }
.faq-item .faq-answer p { margin: 0; }

/* ===== Accent band — sits above hero on cuisine pages ===== */
.cuisine-eyebrow-band {
  background: var(--cream);
  padding: 12px 0;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  border-bottom: 1px solid var(--border);
}
.cuisine-eyebrow-band strong { color: var(--coral); }

/* ===== Shared mockup frame ===== */
.mockup-frame {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 28px;
  max-width: 520px;
  margin: 0 auto;
}
.mockup-caption {
  text-align: center;
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.92rem;
}

/* ===== Split layout for mockup beside copy ===== */
.split-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.split-row .split-copy h2 { margin-bottom: 18px; }
.split-row .split-copy p { color: var(--muted); line-height: 1.8; }
@media (max-width: 860px) {
  .split-row { grid-template-columns: 1fr; gap: 32px; }
  .mockup-frame { padding: 20px; }
}

/* ===== INDIAN — Spice ladder mockup ===== */
.spice-ladder {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.spice-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border-radius: var(--radius);
  background: var(--light);
  border: 2px solid transparent;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  color: var(--navy);
  transition: all 0.2s;
}
.spice-row.selected {
  background: #fff4e6;
  border-color: var(--coral);
  box-shadow: 0 4px 12px rgba(237, 114, 114, 0.15);
}
.spice-chillies { letter-spacing: 2px; font-size: 1.1rem; }
.spice-label { flex: 1; padding: 0 16px; }
.spice-price { font-weight: 600; color: var(--muted); font-size: 0.9rem; }
.spice-row.selected .spice-price { color: var(--coral); }

.dish-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--border);
}
.dish-header h3 { font-family: 'Poppins'; font-size: 1.25rem; color: var(--navy); margin: 0 0 4px; }
.dish-header small { color: var(--muted); }
.dish-price { font-family: 'Poppins'; font-weight: 700; color: var(--navy); font-size: 1.35rem; }

/* ===== PIZZA — Half-and-half mockup ===== */
.pizza-mockup {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.pizza-circle {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: linear-gradient(90deg, #ffd98a 0%, #ffd98a 50%, #ffb5b5 50%, #ffb5b5 100%);
  position: relative;
  box-shadow: inset 0 0 0 8px #c88b3a, 0 12px 30px rgba(0,0,0,0.12);
}
.pizza-topping {
  position: absolute;
  width: 22px;
  height: 22px;
  border-radius: 50%;
}
.pizza-topping.green { background: #3a9a5c; }
.pizza-topping.red { background: #c9452d; }
.pizza-topping.white { background: #fef8e8; border: 2px solid #d4b87e; }
.pizza-split-labels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  width: 100%;
}
.pizza-half {
  text-align: center;
  padding: 14px;
  border-radius: var(--radius);
  background: var(--light);
}
.pizza-half strong { display: block; font-family: 'Poppins'; color: var(--navy); margin-bottom: 4px; }
.pizza-half span { color: var(--muted); font-size: 0.88rem; }
.pizza-half.left { background: #fff7e0; }
.pizza-half.right { background: #ffe4e4; }

/* ===== FISH & CHIPS — Fryer peak mockup ===== */
.fryer-peak-chart {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px 16px;
  align-items: center;
}
.time-label { font-family: 'Poppins'; font-size: 0.85rem; color: var(--muted); white-space: nowrap; }
.peak-bar {
  height: 26px;
  background: linear-gradient(90deg, var(--sky), #4ac2e6);
  border-radius: 6px;
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 10px;
  color: var(--navy);
  font-family: 'Poppins';
  font-size: 0.82rem;
  font-weight: 600;
}
.peak-bar.peak { background: linear-gradient(90deg, #ffcb3c, #ff9c3a); color: var(--navy); }
.peak-bar.peak::after {
  content: 'PEAK';
  position: absolute;
  right: 10px;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: var(--navy);
}
.peak-summary {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  text-align: center;
}
.peak-summary div strong {
  display: block;
  font-family: 'Poppins';
  font-size: 1.5rem;
  color: var(--navy);
}
.peak-summary div span { color: var(--muted); font-size: 0.82rem; }

/* ===== LATE-NIGHT — 2am mockup ===== */
.night-clock {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.night-clock::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 140px; height: 140px;
  background: radial-gradient(circle, var(--yellow) 0%, transparent 65%);
  opacity: 0.3;
  border-radius: 50%;
}
.night-clock-time {
  font-family: 'Poppins';
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1;
  margin: 0 0 6px;
  color: var(--yellow);
  position: relative;
}
.night-clock-label {
  font-family: 'Poppins';
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 24px;
  position: relative;
}
.night-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  position: relative;
}
.night-stat {
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 16px 12px;
}
.night-stat strong {
  display: block;
  font-family: 'Poppins';
  font-size: 1.4rem;
  color: var(--yellow-bright);
}
.night-stat span {
  color: rgba(255,255,255,0.75);
  font-size: 0.78rem;
  display: block;
  margin-top: 4px;
}
.night-pulse {
  display: inline-block;
  width: 10px; height: 10px;
  background: var(--green);
  border-radius: 50%;
  margin-right: 8px;
  box-shadow: 0 0 0 0 rgba(0,204,102,0.6);
  animation: nightPulse 2s infinite;
}
@keyframes nightPulse {
  0% { box-shadow: 0 0 0 0 rgba(0,204,102,0.6); }
  70% { box-shadow: 0 0 0 12px rgba(0,204,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(0,204,102,0); }
}

/* ===== CHICKEN SHOP — Combo builder mockup ===== */
.combo-builder {
  background: var(--light);
  border-radius: var(--radius);
  padding: 22px;
}
.combo-step {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.combo-step.done { border-color: var(--green); background: #ecfdf3; }
.combo-step-label { font-family: 'Poppins'; color: var(--navy); font-weight: 500; }
.combo-step-label small { display: block; color: var(--muted); font-weight: 400; font-size: 0.82rem; margin-top: 2px; }
.combo-step-check {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
}
.combo-step-next {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--light);
  border: 2px solid var(--border);
}
.combo-total {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 8px;
}
.combo-total strong { font-family: 'Poppins'; font-size: 1.3rem; color: var(--yellow); }
.combo-saving {
  text-align: center;
  margin-top: 12px;
  color: var(--green);
  font-family: 'Poppins';
  font-size: 0.85rem;
  font-weight: 600;
}

/* ===== Comparison tables ===== */
.compare-wrap { overflow-x: auto; }
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-family: 'Raleway', sans-serif;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.compare-table thead th {
  background: var(--navy);
  color: var(--white);
  padding: 16px;
  text-align: left;
  font-family: 'Poppins';
  font-weight: 600;
  font-size: 0.92rem;
}
.compare-table thead th.highlight {
  background: var(--yellow);
  color: var(--navy);
}
.compare-table tbody td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  font-size: 0.95rem;
}
.compare-table tbody tr:last-child td { border-bottom: none; }
.compare-table .check { color: var(--green); font-weight: 700; }
.compare-table .cross { color: var(--coral); font-weight: 700; }
.compare-table .partial { color: #d69c2a; font-weight: 600; }
.compare-table tbody td.highlight {
  background: #fffbe6;
  font-weight: 600;
  color: var(--navy);
}
.compare-table tbody tr:first-child td:first-child { font-weight: 600; color: var(--navy); }

/* ===== Schema/JSON-LD script helper — invisible ===== */
/* (no style needed) */

/* ===== Cuisine CTA card ===== */
.cuisine-quote {
  background: var(--cream);
  border-left: 4px solid var(--yellow);
  padding: 28px 32px;
  border-radius: var(--radius);
  max-width: 780px;
  margin: 0 auto;
}
.cuisine-quote blockquote {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 1.2rem;
  color: var(--navy);
  line-height: 1.6;
  margin: 0 0 16px;
}
.cuisine-quote .attribution {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 0.92rem;
}
.cuisine-quote .avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins';
  font-weight: 700;
}

/* ===== Coral accent variant (Indian page) ===== */
.cuisine-quote.accent-coral { border-left-color: var(--coral); }
.cuisine-quote.accent-sky { border-left-color: var(--sky); }
.cuisine-quote.accent-purple { border-left-color: var(--purple); }
.cuisine-quote.accent-green { border-left-color: var(--green); }

/* ===== Regional stat strip (regional landing pages) ===== */
.region-stat-strip {
  background: var(--navy);
  color: #fff;
  padding: 2.5rem 1.5rem;
}
.region-stat-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  text-align: center;
}
.region-stat {
  padding: 0.5rem;
}
.region-stat .stat-value {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 2.4rem;
  color: var(--yellow);
  line-height: 1.1;
  margin-bottom: 0.35rem;
}
.region-stat .stat-label {
  display: block;
  font-size: 0.95rem;
  opacity: 0.9;
  line-height: 1.35;
}
@media (max-width: 720px) {
  .region-stat-inner { grid-template-columns: 1fr; gap: 1rem; }
  .region-stat .stat-value { font-size: 2rem; }
}

/* ===== Regional trivia panel ===== */
.regional-trivia {
  background: #fff;
  border: 1px solid #e5e8ee;
  border-left: 4px solid var(--navy);
  border-radius: 10px;
  padding: 1.5rem 1.75rem;
  max-width: 1100px;
  margin: 2.5rem auto;
  box-shadow: 0 4px 14px rgba(13, 30, 59, 0.05);
}
.regional-trivia h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--navy);
  margin: 0 0 0.6rem;
}
.regional-trivia p {
  color: #3c4864;
  line-height: 1.65;
  margin: 0 0 0.6rem;
}
.regional-trivia p:last-child { margin-bottom: 0; }
.regional-trivia.accent-green { border-left-color: var(--green); }
.regional-trivia.accent-coral { border-left-color: var(--coral); }
.regional-trivia.accent-sky { border-left-color: var(--sky); }
.regional-trivia.accent-purple { border-left-color: var(--purple); }
.regional-trivia.accent-amber { border-left-color: var(--amber); }

/* ===== Regional hub (two-column list on /cuisines.html) ===== */
.regional-hub {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  max-width: 1100px;
  margin: 0 auto;
}
.regional-col {
  background: #fff;
  border: 1px solid #e5e8ee;
  border-radius: 12px;
  padding: 1.75rem 1.75rem 1.25rem;
  box-shadow: 0 4px 14px rgba(13, 30, 59, 0.05);
}
.regional-col-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--navy);
  margin: 0 0 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.regional-col-dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
.regional-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.regional-list li {
  border-bottom: 1px solid #eef0f4;
}
.regional-list li:last-child { border-bottom: none; }
.regional-list a {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 0.7rem 0;
  color: var(--navy);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.15s;
}
.regional-list a:hover { color: var(--coral); }
.regional-list a span {
  color: #6b7a93;
  font-size: 0.85rem;
  font-weight: 400;
  text-align: right;
}
@media (max-width: 720px) {
  .regional-hub { grid-template-columns: 1fr; gap: 1.5rem; }
  .regional-col { padding: 1.25rem 1.25rem 1rem; }
}

/* Small mobile tweaks */
@media (max-width: 640px) {
  .pizza-circle { width: 200px; height: 200px; }
  .night-clock-time { font-size: 2.5rem; }
  .peak-summary { grid-template-columns: 1fr; }
}

/* ===================================================================
 * CUISINE SPLIT-HERO — photography + copy side by side.
 * Reuses .hero-split and .hero-visual from andromeda.css; adds
 * per-cuisine accent colour for badge and stat tiles, plus padding
 * tweaks so the image panel sits well beside the copy.
 * =================================================================== */

.hero-cuisine .hero-split {
  align-items: center;
}
.hero-cuisine .hero-copy {
  max-width: 560px;
}
.hero-cuisine .hero-visual {
  position: relative;
  padding: 18px;
}
.hero-cuisine .hero-visual img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 14px;
}
.hero-cuisine .hero-visual .image-badge {
  position: absolute;
  top: -14px;
  left: 32px;
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  padding: 7px 14px;
  border-radius: 999px;
  box-shadow: var(--shadow-md);
  text-transform: uppercase;
}
.hero-cuisine .hero-visual .image-stats {
  margin-top: 14px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
  padding: 4px 2px;
}
.hero-cuisine .hero-visual .stat {
  text-align: center;
  padding: 12px 6px;
  border-radius: 10px;
}
.hero-cuisine .hero-visual .stat strong {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--navy);
  line-height: 1.1;
}
.hero-cuisine .hero-visual .stat span {
  display: block;
  margin-top: 4px;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

/* Per-cuisine accent — badge colour + stat tint */
.hero-indian .hero-visual .image-badge { background: var(--coral); }
.hero-indian .hero-visual .stat { background: #fef1f1; }

.hero-pizza .hero-visual .image-badge { background: var(--green); }
.hero-pizza .hero-visual .stat { background: #e8fbef; }

.hero-fishchips .hero-visual .image-badge { background: var(--sky); color: var(--navy); }
.hero-fishchips .hero-visual .stat { background: #e7f8fe; }

.hero-latenight .hero-visual .image-badge { background: var(--purple); }
.hero-latenight .hero-visual .stat { background: #f3ecfa; }

.hero-chickenshop .hero-visual .image-badge { background: #f6a552; }
.hero-chickenshop .hero-visual .stat { background: #fef3e3; }

/* Mobile — collapse split, trim padding */
@media (max-width: 860px) {
  .hero-cuisine .hero-copy { max-width: 100%; }
  .hero-cuisine .hero-visual { padding: 14px; }
  .hero-cuisine .hero-visual .image-badge { left: 20px; }
}
