/* ============================================================
   Blenheim Souvlaki — Global Stylesheet
   Theme: White · Navy Blue · Orange accent (Greek/Mediterranean)
   ============================================================ */

:root {
  /* Brand palette */
  --navy: #0b1f3a;
  --navy-700: #13294f;
  --navy-500: #1d3a66;
  --navy-100: #e8edf5;
  --orange: #ff7a18;
  --orange-600: #e9690c;
  --orange-100: #fff1e3;
  --aegean: #1f7a8c;
  --white: #ffffff;
  --cream: #faf7f2;
  --ink: #1a2233;
  --muted: #5b6678;
  --line: #e7e9ee;
  --gold: #f5b301;

  /* Typography */
  --font-head: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body: "Poppins", "Segoe UI", system-ui, -apple-system, sans-serif;

  /* Shape & depth */
  --radius: 16px;
  --radius-sm: 10px;
  --shadow-sm: 0 2px 10px rgba(11, 31, 58, .06);
  --shadow: 0 12px 30px rgba(11, 31, 58, .10);
  --shadow-lg: 0 24px 60px rgba(11, 31, 58, .16);
  --container: 1180px;
  --header-h: 76px;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ----------------------------- Reset ----------------------------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
  padding-top: var(--header-h); /* offset for the fixed header */
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button, input, textarea, select { font-family: inherit; font-size: inherit; }
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.15; color: var(--navy); font-weight: 700; }

/* --------------------------- Layout ------------------------------ */
.container { width: min(100% - 40px, var(--container)); margin-inline: auto; }
.section { padding: 86px 0; }
.section--tint { background: var(--cream); }
.section--navy { background: var(--navy); color: #cfd8e8; }
.section--navy h2, .section--navy h3 { color: #fff; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; font-size: .74rem; color: var(--orange-600);
  background: var(--orange-100); padding: 7px 14px; border-radius: 999px;
}
.section-head { max-width: 680px; margin: 0 auto 52px; text-align: center; }
.section-head h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); margin: 16px 0 12px; }
.section-head p { color: var(--muted); font-size: 1.04rem; }

/* --------------------------- Buttons ----------------------------- */
.btn {
  --bg: var(--orange); --fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--bg); color: var(--fg);
  padding: 14px 26px; border-radius: 999px; border: 2px solid transparent;
  font-weight: 600; cursor: pointer; transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s;
  box-shadow: 0 10px 24px rgba(255, 122, 24, .28); white-space: nowrap;
}
.btn:hover { transform: translateY(-3px); box-shadow: 0 16px 34px rgba(255, 122, 24, .36); background: var(--orange-600); }
.btn:active { transform: translateY(-1px); }
.btn--ghost { --bg: transparent; --fg: #fff; border-color: rgba(255,255,255,.55); box-shadow: none; }
.btn--ghost:hover { background: rgba(255,255,255,.12); border-color: #fff; }
.btn--navy { --bg: var(--navy); box-shadow: 0 10px 24px rgba(11,31,58,.25); }
.btn--navy:hover { background: var(--navy-700); box-shadow: 0 16px 34px rgba(11,31,58,.3); }
.btn--outline { --bg: #fff; --fg: var(--navy); border-color: var(--line); box-shadow: var(--shadow-sm); }
.btn--outline:hover { background: var(--navy); --fg:#fff; }
.btn--sm { padding: 10px 18px; font-size: .9rem; }
.btn--block { width: 100%; }

/* --------------------------- Header ------------------------------ */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 60;
  background: rgba(255,255,255,.92); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line); transition: box-shadow .3s, background .3s;
}
.header.scrolled { box-shadow: var(--shadow-sm); background: rgba(255,255,255,.96); }
.nav { display: flex; align-items: center; justify-content: space-between; height: var(--header-h); gap: 18px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand__mark {
  width: 44px; height: 44px; border-radius: 12px; flex: none;
  background: linear-gradient(135deg, var(--navy), var(--navy-500));
  display: grid; place-items: center; color: var(--orange); box-shadow: var(--shadow-sm);
}
.brand__mark svg { width: 26px; height: 26px; }
.brand__name { font-family: var(--font-head); font-weight: 800; font-size: 1.18rem; color: var(--navy); letter-spacing: .2px; line-height: 1; }
.brand__name span { display: block; font-family: var(--font-body); font-weight: 500; font-size: .66rem; letter-spacing: .28em; text-transform: uppercase; color: var(--orange-600); margin-top: 4px; }

.nav__links { display: flex; align-items: center; gap: 6px; }
.nav__links a {
  padding: 9px 15px; border-radius: 999px; font-weight: 500; color: var(--navy);
  position: relative; transition: color .2s, background .2s;
}
.nav__links a:hover { background: var(--navy-100); }
.nav__links a.active { color: var(--orange-600); }
.nav__links a.active::after {
  content: ""; position: absolute; left: 15px; right: 15px; bottom: 3px; height: 2px;
  background: var(--orange); border-radius: 2px;
}
.nav__actions { display: flex; align-items: center; gap: 12px; }

.cart-btn {
  position: relative; width: 46px; height: 46px; border-radius: 12px;
  background: var(--navy-100); border: none; cursor: pointer; color: var(--navy);
  display: grid; place-items: center; transition: background .2s, transform .2s;
}
.cart-btn:hover { background: #d9e2f0; transform: translateY(-2px); }
.cart-btn svg { width: 22px; height: 22px; }
.cart-badge {
  position: absolute; top: -6px; right: -6px; min-width: 21px; height: 21px; padding: 0 5px;
  background: var(--orange); color: #fff; border-radius: 999px; font-size: .72rem; font-weight: 700;
  display: grid; place-items: center; box-shadow: 0 2px 8px rgba(255,122,24,.5);
  transform: scale(0); transition: transform .3s var(--ease);
}
.cart-badge.show { transform: scale(1); }

.nav__toggle { display: none; width: 46px; height: 46px; border: none; background: var(--navy-100); border-radius: 12px; cursor: pointer; }
.nav__toggle span, .nav__toggle span::before, .nav__toggle span::after {
  content: ""; display: block; width: 20px; height: 2px; background: var(--navy); border-radius: 2px;
  position: relative; margin: 0 auto; transition: .3s;
}
.nav__toggle span::before { position: absolute; top: -6px; }
.nav__toggle span::after { position: absolute; top: 6px; }
.nav__toggle.open span { background: transparent; }
.nav__toggle.open span::before { top: 0; transform: rotate(45deg); }
.nav__toggle.open span::after { top: 0; transform: rotate(-45deg); }

/* --------------------------- Hero -------------------------------- */
.hero { position: relative; color: #fff; isolation: isolate; }
.hero__bg { position: absolute; inset: 0; z-index: -2; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(110deg, rgba(11,31,58,.92) 0%, rgba(11,31,58,.74) 45%, rgba(11,31,58,.35) 100%);
}
.hero__inner { padding: clamp(70px, 12vw, 130px) 0; max-width: 660px; }
.hero h1 { color: #fff; font-size: clamp(2.4rem, 6vw, 4.2rem); margin: 18px 0 18px; }
.hero h1 em { color: var(--orange); font-style: normal; }
.hero p.lead { font-size: clamp(1.02rem, 2vw, 1.22rem); color: #dbe3f0; max-width: 540px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.hero__meta { display: flex; flex-wrap: wrap; gap: 26px; margin-top: 38px; }
.hero__meta div { display: flex; align-items: center; gap: 10px; font-size: .95rem; color: #e7edf6; }
.hero__meta strong { color: #fff; }
.stars { color: var(--gold); letter-spacing: 2px; }

.hero__badge {
  display: inline-flex; align-items: center; gap: 9px; background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25); padding: 8px 16px; border-radius: 999px;
  font-size: .82rem; font-weight: 500; backdrop-filter: blur(6px);
}
.hero__badge .dot { width: 9px; height: 9px; border-radius: 50%; background: #43d17a; box-shadow: 0 0 0 4px rgba(67,209,122,.25); }

/* ------------------------- Info strip ---------------------------- */
.infostrip { background: var(--navy); color: #cdd7e8; }
.infostrip .container { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.infostrip__item { display: flex; align-items: center; gap: 14px; padding: 22px 18px; }
.infostrip__item + .infostrip__item { border-left: 1px solid rgba(255,255,255,.08); }
.infostrip__icon { width: 44px; height: 44px; border-radius: 12px; background: rgba(255,122,24,.16); color: var(--orange); display: grid; place-items: center; flex: none; }
.infostrip__icon svg { width: 22px; height: 22px; }
.infostrip__item h4 { color: #fff; font-family: var(--font-body); font-size: .95rem; font-weight: 600; }
.infostrip__item p { font-size: .85rem; margin: 0; }

/* ------------------------- Featured cards ------------------------ */
.grid { display: grid; gap: 26px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }

.dish {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column; box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.dish:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.dish__media { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.dish__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.dish:hover .dish__media img { transform: scale(1.07); }
.dish__tag {
  position: absolute; top: 12px; left: 12px; background: #fff; color: var(--navy);
  font-size: .72rem; font-weight: 700; padding: 5px 11px; border-radius: 999px; box-shadow: var(--shadow-sm);
  text-transform: uppercase; letter-spacing: .04em;
}
.dish__tag--hot { background: var(--orange); color: #fff; }
.dish__tag--veg { background: #2e9e5b; color: #fff; }
.dish__body { padding: 18px 18px 20px; display: flex; flex-direction: column; flex: 1; }
.dish__title { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.dish__title h3 { font-size: 1.12rem; }
.dish__price { font-family: var(--font-head); font-weight: 800; color: var(--orange-600); font-size: 1.18rem; white-space: nowrap; }
.dish__desc { color: var(--muted); font-size: .9rem; margin: 8px 0 16px; flex: 1; }
.dish__foot { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.dish__meta { font-size: .8rem; color: var(--muted); display: flex; align-items: center; gap: 6px; }
.add-btn {
  display: inline-flex; align-items: center; gap: 8px; background: var(--navy); color: #fff;
  border: none; padding: 10px 16px; border-radius: 999px; font-weight: 600; cursor: pointer;
  transition: background .2s, transform .2s; font-size: .88rem;
}
.add-btn:hover { background: var(--orange); transform: translateY(-2px); }
.add-btn svg { width: 16px; height: 16px; }
.add-btn.added { background: #2e9e5b; }

/* --------------------------- Menu page --------------------------- */
.menu-layout { display: grid; grid-template-columns: 240px 1fr; gap: 40px; align-items: start; }
.menu-nav { position: sticky; top: calc(var(--header-h) + 20px); }
.menu-nav h3 { font-size: 1rem; margin-bottom: 14px; font-family: var(--font-body); text-transform: uppercase; letter-spacing: .1em; color: var(--muted); }
.menu-nav a {
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
  padding: 11px 14px; border-radius: 10px; color: var(--navy); font-weight: 500; transition: .2s; cursor: pointer;
}
.menu-nav a:hover { background: var(--navy-100); }
.menu-nav a.active { background: var(--navy); color: #fff; }
.menu-nav a .count { font-size: .78rem; opacity: .6; }
.menu-cat { margin-bottom: 56px; scroll-margin-top: calc(var(--header-h) + 24px); }
.menu-cat__head { display: flex; align-items: center; gap: 14px; margin-bottom: 24px; padding-bottom: 14px; border-bottom: 2px solid var(--line); }
.menu-cat__head h2 { font-size: 1.7rem; }
.menu-cat__head .pill { margin-left: auto; font-size: .78rem; background: var(--orange-100); color: var(--orange-600); padding: 5px 12px; border-radius: 999px; font-weight: 600; }

/* Floating mobile category bar */
.menu-chips { display: none; gap: 8px; overflow-x: auto; padding: 12px 0; position: sticky; top: var(--header-h); background: #fff; z-index: 40; border-bottom: 1px solid var(--line); scrollbar-width: none; }
.menu-chips::-webkit-scrollbar { display: none; }
.menu-chips a { flex: none; padding: 8px 16px; border-radius: 999px; background: var(--navy-100); color: var(--navy); font-weight: 500; font-size: .88rem; }
.menu-chips a.active { background: var(--navy); color: #fff; }

/* --------------------------- Reviews ----------------------------- */
.reviews { position: relative; }
.review-track { display: flex; gap: 24px; transition: transform .6s var(--ease); }
.review-card {
  flex: 0 0 calc(33.333% - 16px); background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
}
.review-card .stars { font-size: 1.05rem; margin-bottom: 14px; }
.review-card p { color: var(--ink); font-size: .98rem; margin-bottom: 20px; flex: 1; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar { width: 46px; height: 46px; border-radius: 50%; background: var(--navy); color: #fff; display: grid; place-items: center; font-weight: 700; font-family: var(--font-head); }
.review-author strong { display: block; color: var(--navy); }
.review-author span { font-size: .82rem; color: var(--muted); }
.review-nav { display: flex; justify-content: center; gap: 12px; margin-top: 34px; }
.review-nav button { width: 48px; height: 48px; border-radius: 50%; border: 1px solid var(--line); background: #fff; cursor: pointer; color: var(--navy); transition: .2s; display: grid; place-items: center; }
.review-nav button:hover { background: var(--navy); color: #fff; border-color: var(--navy); }
.reviews__viewport { overflow: hidden; }

/* --------------------------- About ------------------------------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split__media { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4/3.4; }
.split__media img { width: 100%; height: 100%; object-fit: cover; }
.split__media--stack { aspect-ratio: auto; box-shadow: none; }
.media-stack { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.media-stack img { border-radius: var(--radius); box-shadow: var(--shadow); object-fit: cover; aspect-ratio: 3/4; height: 100%; }
.media-stack img:first-child { margin-top: 32px; }
.feature-list { display: grid; gap: 18px; margin-top: 26px; }
.feature-list li { display: flex; gap: 14px; align-items: flex-start; }
.feature-list .ic { width: 42px; height: 42px; border-radius: 12px; background: var(--orange-100); color: var(--orange-600); display: grid; place-items: center; flex: none; }
.feature-list .ic svg { width: 22px; height: 22px; }
.feature-list h4 { font-family: var(--font-body); font-size: 1.02rem; color: var(--navy); margin-bottom: 2px; }
.feature-list p { color: var(--muted); font-size: .92rem; }

.stat-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; text-align: center; }
.stat b { display: block; font-family: var(--font-head); font-size: clamp(2rem,4vw,2.8rem); color: var(--orange); }
.stat span { color: #b9c4d8; font-size: .9rem; }

/* --------------------------- FAQ --------------------------------- */
.faq { max-width: 820px; margin-inline: auto; }
.faq-item { border: 1px solid var(--line); border-radius: var(--radius-sm); margin-bottom: 14px; overflow: hidden; background: #fff; }
.faq-q { width: 100%; text-align: left; background: none; border: none; padding: 20px 22px; font-weight: 600; color: var(--navy); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; font-size: 1.02rem; }
.faq-q .chev { width: 26px; height: 26px; flex: none; display: grid; place-items: center; color: var(--orange-600); transition: transform .3s; }
.faq-item.open .faq-q .chev { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.faq-a p { padding: 0 22px 22px; color: var(--muted); }

/* --------------------------- Forms ------------------------------- */
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 34px; box-shadow: var(--shadow); }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 600; font-size: .88rem; color: var(--navy); margin-bottom: 7px; }
.field input, .field textarea, .field select {
  width: 100%; padding: 13px 15px; border: 1.5px solid var(--line); border-radius: 10px;
  background: var(--cream); color: var(--ink); transition: border .2s, box-shadow .2s; outline: none;
}
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--orange); box-shadow: 0 0 0 4px rgba(255,122,24,.14); background: #fff; }
.field textarea { resize: vertical; min-height: 120px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-note { font-size: .82rem; color: var(--muted); margin-top: 6px; }
.form-success { display: none; background: #e8f7ee; border: 1px solid #b6e4c8; color: #1c7a43; padding: 14px 18px; border-radius: 10px; margin-bottom: 18px; font-weight: 500; }
.form-success.show { display: block; }

/* --------------------------- Contact ----------------------------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.contact-list { display: grid; gap: 16px; margin: 26px 0; }
.contact-list li { display: flex; gap: 16px; align-items: flex-start; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 18px; box-shadow: var(--shadow-sm); }
.contact-list .ic { width: 46px; height: 46px; border-radius: 12px; background: var(--navy); color: var(--orange); display: grid; place-items: center; flex: none; }
.contact-list .ic svg { width: 22px; height: 22px; }
.contact-list h4 { font-family: var(--font-body); font-size: .98rem; margin-bottom: 2px; }
.contact-list a, .contact-list p { color: var(--muted); }
.contact-list a:hover { color: var(--orange-600); }
.map-frame { border: 0; width: 100%; height: 100%; min-height: 320px; border-radius: var(--radius); }
.map-wrap { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); height: 100%; min-height: 360px; }

/* --------------------------- Hours table ------------------------- */
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table td { padding: 12px 4px; border-bottom: 1px solid var(--line); }
.hours-table tr:last-child td { border-bottom: none; }
.hours-table td:last-child { text-align: right; font-weight: 600; color: var(--navy); }
.hours-table tr.today td { color: var(--orange-600); }
.hours-table tr.today td:first-child::before { content: "● "; color: #43d17a; }
.open-pill { display: inline-flex; align-items: center; gap: 8px; background: #e8f7ee; color: #1c7a43; padding: 7px 14px; border-radius: 999px; font-weight: 600; font-size: .85rem; }
.open-pill.closed { background: #fdeaea; color: #c0392b; }

/* --------------------------- Cart drawer ------------------------- */
.drawer-overlay { position: fixed; inset: 0; background: rgba(11,31,58,.5); opacity: 0; visibility: hidden; transition: .3s; z-index: 90; backdrop-filter: blur(2px); }
.drawer-overlay.open { opacity: 1; visibility: visible; }
.drawer {
  position: fixed; top: 0; right: 0; height: 100%; width: min(420px, 92vw); background: #fff; z-index: 95;
  transform: translateX(100%); transition: transform .35s var(--ease); display: flex; flex-direction: column; box-shadow: var(--shadow-lg);
}
.drawer.open { transform: translateX(0); }
.drawer__head { display: flex; align-items: center; justify-content: space-between; padding: 22px 24px; border-bottom: 1px solid var(--line); }
.drawer__head h3 { font-size: 1.3rem; }
.drawer__close { width: 40px; height: 40px; border-radius: 10px; border: none; background: var(--navy-100); cursor: pointer; color: var(--navy); display: grid; place-items: center; }
.drawer__close:hover { background: #d9e2f0; }
.drawer__body { flex: 1; overflow-y: auto; padding: 16px 24px; }
.drawer__foot { border-top: 1px solid var(--line); padding: 20px 24px; }

.cart-line { display: flex; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.cart-line img { width: 64px; height: 64px; border-radius: 10px; object-fit: cover; flex: none; }
.cart-line__info { flex: 1; min-width: 0; }
.cart-line__info h4 { font-family: var(--font-body); font-size: .95rem; color: var(--navy); }
.cart-line__info .price { color: var(--orange-600); font-weight: 600; font-size: .9rem; }
.qty { display: inline-flex; align-items: center; gap: 0; border: 1px solid var(--line); border-radius: 999px; overflow: hidden; margin-top: 6px; }
.qty button { width: 28px; height: 28px; border: none; background: var(--cream); cursor: pointer; color: var(--navy); font-weight: 700; }
.qty button:hover { background: var(--navy); color: #fff; }
.qty span { width: 30px; text-align: center; font-weight: 600; font-size: .9rem; }
.cart-line__remove { background: none; border: none; color: var(--muted); cursor: pointer; align-self: flex-start; padding: 2px; }
.cart-line__remove:hover { color: #c0392b; }
.cart-empty { text-align: center; padding: 50px 20px; color: var(--muted); }
.cart-empty svg { width: 64px; height: 64px; color: var(--line); margin: 0 auto 16px; }
.summary-row { display: flex; justify-content: space-between; margin-bottom: 8px; color: var(--muted); }
.summary-row.total { color: var(--navy); font-weight: 700; font-size: 1.2rem; font-family: var(--font-head); border-top: 1px solid var(--line); padding-top: 12px; margin-top: 12px; }

/* --------------------------- Cart / checkout page ---------------- */
.cart-page { display: grid; grid-template-columns: 1fr 380px; gap: 36px; align-items: start; }
.cart-table { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.cart-row { display: grid; grid-template-columns: 90px 1fr auto auto auto; gap: 18px; align-items: center; padding: 18px; border-bottom: 1px solid var(--line); }
.cart-row:last-child { border-bottom: none; }
.cart-row img { width: 90px; height: 90px; border-radius: 12px; object-fit: cover; }
.cart-row h4 { font-family: var(--font-body); color: var(--navy); }
.cart-row .lp { color: var(--muted); font-size: .85rem; }
.summary-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow); position: sticky; top: calc(var(--header-h) + 20px); }
.summary-card h3 { margin-bottom: 18px; }
.order-type { display: flex; gap: 10px; margin-bottom: 20px; }
.order-type label { flex: 1; }
.order-type input { position: absolute; opacity: 0; }
.order-type span { display: block; text-align: center; padding: 12px; border: 1.5px solid var(--line); border-radius: 10px; cursor: pointer; font-weight: 600; color: var(--navy); transition: .2s; font-size: .9rem; }
.order-type input:checked + span { border-color: var(--orange); background: var(--orange-100); color: var(--orange-600); }

/* steps */
.steps { display: flex; gap: 8px; margin-bottom: 30px; }
.step { flex: 1; text-align: center; font-size: .82rem; color: var(--muted); position: relative; }
.step b { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 50%; background: var(--navy-100); color: var(--navy); margin: 0 auto 8px; font-family: var(--font-body); }
.step.active b { background: var(--orange); color: #fff; }
.step.done b { background: #2e9e5b; color: #fff; }

/* --------------------------- Footer ------------------------------ */
.footer { background: var(--navy); color: #aebccf; padding-top: 64px; }
.footer a:hover { color: var(--orange); }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 40px; padding-bottom: 44px; }
.footer__grid h4 { color: #fff; font-family: var(--font-body); font-size: 1rem; margin-bottom: 18px; }
.footer__links li { margin-bottom: 10px; }
.footer p { font-size: .92rem; margin-bottom: 14px; }
.footer .brand__name { color: #fff; }
.socials { display: flex; gap: 10px; margin-top: 18px; }
.socials a { width: 42px; height: 42px; border-radius: 11px; background: rgba(255,255,255,.08); display: grid; place-items: center; transition: .2s; }
.socials a:hover { background: var(--orange); transform: translateY(-3px); }
.socials svg { width: 19px; height: 19px; }
.footer__bar { border-top: 1px solid rgba(255,255,255,.1); padding: 22px 0; display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; font-size: .85rem; }

/* --------------------------- Toast ------------------------------- */
.toast-wrap { position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%); z-index: 120; display: flex; flex-direction: column; gap: 10px; align-items: center; pointer-events: none; }
.toast {
  background: var(--navy); color: #fff; padding: 13px 22px; border-radius: 999px; box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 10px; font-weight: 500; font-size: .92rem;
  transform: translateY(20px); opacity: 0; transition: .35s var(--ease);
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast svg { width: 20px; height: 20px; color: #43d17a; }

/* --------------------------- Page hero (sub pages) --------------- */
.page-hero { background: var(--navy); color: #fff; text-align: center; padding: 64px 0; position: relative; overflow: hidden; }
.page-hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 80% 20%, rgba(255,122,24,.22), transparent 45%); }
.page-hero h1 { color: #fff; font-size: clamp(2rem, 5vw, 3.4rem); position: relative; }
.page-hero p { color: #c5d0e2; max-width: 560px; margin: 14px auto 0; position: relative; }
.crumbs { font-size: .85rem; color: #9fb0c9; margin-bottom: 8px; position: relative; }
.crumbs a:hover { color: var(--orange); }

/* --------------------------- Reveal animation -------------------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal[data-delay="4"] { transition-delay: .32s; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}

/* --------------------------- Responsive -------------------------- */
@media (max-width: 980px) {
  .grid--4 { grid-template-columns: repeat(2,1fr); }
  .grid--3 { grid-template-columns: repeat(2,1fr); }
  .split { grid-template-columns: 1fr; gap: 36px; }
  .contact-grid { grid-template-columns: 1fr; }
  .cart-page { grid-template-columns: 1fr; }
  .infostrip .container { grid-template-columns: repeat(2,1fr); }
  .infostrip__item:nth-child(3) { border-left: none; }
  .review-card { flex-basis: calc(50% - 12px); }
  .menu-layout { grid-template-columns: 1fr; }
  .menu-nav { display: none; }
  .menu-chips { display: flex; }
}
@media (max-width: 760px) {
  .section { padding: 60px 0; }
  .nav__links { position: fixed; inset: var(--header-h) 0 auto 0; background: #fff; flex-direction: column; align-items: stretch; padding: 14px; gap: 4px; border-bottom: 1px solid var(--line); box-shadow: var(--shadow); transform: translateY(-130%); transition: transform .35s var(--ease); z-index: 50; }
  .nav__links.open { transform: translateY(0); }
  .nav__links a { padding: 14px; border-radius: 10px; }
  .nav__links a.active::after { display: none; }
  .nav__links a.active { background: var(--navy-100); }
  .nav__toggle { display: grid; place-items: center; }
  .hide-mobile { display: none; }
  .field-row { grid-template-columns: 1fr; }
  .stat-row { grid-template-columns: repeat(2,1fr); gap: 30px; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .cart-row { grid-template-columns: 70px 1fr auto; grid-template-areas: "img info price" "img qty remove"; gap: 10px 14px; }
  .cart-row img { width: 70px; height: 70px; grid-area: img; }
  .review-card { flex-basis: 100%; }
  .media-stack img:first-child { margin-top: 0; }
}
@media (max-width: 460px) {
  .grid--4, .grid--3, .grid--2 { grid-template-columns: 1fr; }
  .infostrip .container { grid-template-columns: 1fr; }
  .infostrip__item + .infostrip__item { border-left: none; border-top: 1px solid rgba(255,255,255,.08); }
  .footer__grid { grid-template-columns: 1fr; }
  .hero__cta .btn { flex: 1; }
}

/* ============================================================
   SIPO API integration components (added)
   ============================================================ */

/* --- Floating "Order Now" button (bottom-right) --- */
.floating-order-btn {
  position: fixed; right: 22px; bottom: 22px; z-index: 80;
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--orange); color: #fff; font-weight: 700;
  padding: 14px 22px; border-radius: 999px; text-decoration: none;
  box-shadow: 0 14px 30px rgba(255,122,24,.45);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s;
  animation: floatPulse 2.6s ease-in-out infinite;
}
.floating-order-btn svg { width: 20px; height: 20px; }
.floating-order-btn:hover { background: var(--orange-600); transform: translateY(-3px) scale(1.03); box-shadow: 0 20px 40px rgba(255,122,24,.5); }
@keyframes floatPulse { 0%,100% { box-shadow: 0 14px 30px rgba(255,122,24,.45); } 50% { box-shadow: 0 14px 38px rgba(255,122,24,.7); } }
@media (max-width: 760px) {
  .floating-order-btn { right: 14px; bottom: 14px; padding: 12px 18px; font-size: .92rem; }
}
@media (prefers-reduced-motion: reduce) { .floating-order-btn { animation: none; } }

/* --- Opening hours list (footer + homepage) --- */
.hours-list { display: grid; gap: 2px; }
.hours-list li { display: flex; justify-content: space-between; gap: 14px; padding: 7px 0; border-bottom: 1px solid rgba(255,255,255,.08); }
.hours-list li:last-child { border-bottom: none; }
.hours-list .day { font-weight: 600; color: #fff; }
.hours-list .time { text-align: right; }
.hours-list li.today .day, .hours-list li.today .time { color: var(--orange); }
.hours-list li.today .day::before { content: "● "; color: #43d17a; font-size: .8em; }
.hours-list .closed-day { opacity: .7; }

/* Light variant (when placed on white/cream sections) */
.hours-list--light li { border-bottom-color: var(--line); }
.hours-list--light .day { color: var(--navy); }
.hours-list--light .time { color: var(--muted); }
.hours-list--light li.today .day, .hours-list--light li.today .time { color: var(--orange-600); }

/* --- Opening hours table (contact / reservation cards) --- */
.hours-table-api { display: grid; gap: 0; }
.hours-row { display: flex; justify-content: space-between; gap: 16px; padding: 12px 4px; border-bottom: 1px solid var(--line); }
.hours-row:last-child { border-bottom: none; }
.hours-row .day { color: var(--ink); }
.hours-row .time { text-align: right; font-weight: 600; color: var(--navy); }
.hours-row.today .day, .hours-row.today .time { color: var(--orange-600); }
.hours-row.today .day::before { content: "● "; color: #43d17a; }

/* --- Menu page: tabs + loading + grid --- */
#menu-loading { text-align: center; color: var(--muted); padding: 40px 0; font-weight: 500; }
#menu-loading::after { content: ""; display: inline-block; width: 18px; height: 18px; margin-left: 10px; vertical-align: -3px; border: 2px solid var(--line); border-top-color: var(--orange); border-radius: 50%; animation: spin .8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.menu-tabs { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 36px; }
.menu-tab {
  border: 1.5px solid var(--line); background: #fff; color: var(--navy);
  padding: 10px 20px; border-radius: 999px; font-weight: 600; cursor: pointer;
  font-family: var(--font-body); font-size: .92rem; transition: .2s;
}
.menu-tab:hover { border-color: var(--orange); color: var(--orange-600); }
.menu-tab.active { background: var(--navy); border-color: var(--navy); color: #fff; }
.menu-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
@media (max-width: 980px) { .menu-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .menu-grid { grid-template-columns: 1fr; } .menu-tabs { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 6px; } .menu-tab { flex: none; } }

/* --- Placeholder media when a menu item has no photo --- */
.dish__media--placeholder {
  background:
    radial-gradient(circle at 30% 30%, rgba(255,122,24,.18), transparent 50%),
    linear-gradient(135deg, var(--navy), var(--navy-500));
  display: grid; place-items: center;
}
.dish__media--placeholder::after {
  content: "ΣΟΥΒΛΑΚΙ"; font-family: var(--font-head); font-weight: 700;
  color: rgba(255,255,255,.14); letter-spacing: .12em; font-size: .9rem;
}
.dish__media--placeholder img { display: none; }

/* Order link styled as a button (reuses .add-btn) */
a.add-btn.order-link { text-decoration: none; }

/* Items grid on homepage featured section */
.popular-items .items-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
@media (max-width: 980px) { .popular-items .items-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .popular-items .items-grid { grid-template-columns: 1fr; } }
