/* ============================================================================
   Ease Dine — custom stylesheet (no CSS framework used)
   Palette:  burgundy #6B1A1A · cream #FAF3E0 · gold #C9A84C
   Fonts:    Playfair Display (headings) · Lato (body)
   Layout:   CSS Grid + Flexbox, mobile-friendly
   ========================================================================== */

/* ── Design tokens ───────────────────────────────────────────────────────── */
:root {
  --burgundy: #6B1A1A;
  --burgundy-dark: #4d1212;
  --cream: #FAF3E0;
  --gold: #C9A84C;
  --gold-dark: #a8893a;
  --ink: #2a2320;
  --muted: #7a7068;
  --white: #ffffff;
  --shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  --radius: 12px;
  --transition: 0.25s ease;
  --max-width: 1180px;
}

/* ── Reset / base ────────────────────────────────────────────────────────── */
* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', system-ui, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

h1, h2, h3, h4, .brand-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--burgundy);
}

a { color: var(--burgundy); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-dark); }

img { max-width: 100%; display: block; }

.muted { color: var(--muted); }

/* ── Layout helpers ──────────────────────────────────────────────────────── */
.section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 3.5rem 1.25rem;
  width: 100%;
}
.section-title { font-size: 2rem; margin-bottom: 1.25rem; }
.section-title.center { text-align: center; }
.section-subtitle { text-align: center; color: var(--muted); margin-top: -0.5rem; margin-bottom: 1.5rem; }

/* ── Buttons ─────────────────────────────────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.7rem 1.4rem;
  border: 2px solid transparent;
  border-radius: 50px;
  cursor: pointer;
  transition: transform var(--transition), background var(--transition),
    color var(--transition), box-shadow var(--transition);
  text-align: center;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn:active { transform: translateY(0); }
.btn-sm { padding: 0.45rem 1rem; font-size: 0.85rem; }
.btn-block { display: block; width: 100%; }

.btn-burgundy { background: var(--burgundy); color: var(--cream); }
.btn-burgundy:hover { background: var(--burgundy-dark); color: var(--white); }

.btn-gold { background: var(--gold); color: var(--burgundy-dark); }
.btn-gold:hover { background: var(--gold-dark); color: var(--white); }

.btn-outline { background: transparent; border-color: var(--burgundy); color: var(--burgundy); }
.btn-outline:hover { background: var(--burgundy); color: var(--cream); }

.btn-outline-light { background: transparent; border-color: var(--cream); color: var(--cream); }
.btn-outline-light:hover { background: var(--cream); color: var(--burgundy); }

.link-btn {
  background: none; border: none; color: var(--burgundy);
  font: inherit; cursor: pointer; text-decoration: underline; padding: 0;
}
.link-btn:hover { color: var(--gold-dark); }

/* ── Header / navigation ─────────────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--burgundy);
  box-shadow: var(--shadow);
}
.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 1.25rem;
}
.brand { display: flex; align-items: center; gap: 0.5rem; }
.brand-mark { font-size: 1.6rem; }
.brand-name { color: var(--cream); font-size: 1.5rem; }

.nav-links { display: flex; align-items: center; gap: 1.2rem; }
.nav-links a {
  color: var(--cream); font-weight: 700; font-size: 0.95rem;
  padding: 0.3rem 0; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: -2px;
  width: 0; height: 2px; background: var(--gold); transition: width var(--transition);
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--gold); }

.nav-auth { display: flex; align-items: center; gap: 0.6rem; margin-left: 0.5rem; }
.nav-user { color: var(--gold); font-weight: 700; }

.nav-toggle {
  display: none; background: none; border: none;
  color: var(--cream); font-size: 1.6rem; cursor: pointer;
}

/* ── Hero ────────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 78vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  background: url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0?w=1600&q=80') center/cover no-repeat;
  color: var(--cream);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(rgba(45, 10, 10, 0.7), rgba(45, 10, 10, 0.55));
}
.hero-content { position: relative; z-index: 1; padding: 1.5rem; }
.hero-title { color: var(--cream); font-size: clamp(2.8rem, 7vw, 5rem); letter-spacing: 1px; }
.hero-tagline { color: var(--gold); font-size: clamp(1.1rem, 3vw, 1.6rem); margin: 0.5rem 0 2rem; font-style: italic; }
.hero-actions { display: flex; gap: 0.9rem; justify-content: center; flex-wrap: wrap; }

/* ── Carousel ────────────────────────────────────────────────────────────── */
.carousel { position: relative; overflow: hidden; max-width: var(--max-width); margin: 2.5rem auto 0; border-radius: var(--radius); }
.carousel-track { display: flex; transition: transform 0.5s ease; }
.carousel-slide {
  min-width: 100%;
  height: 420px;
  background-size: cover; background-position: center;
  position: relative; display: flex; align-items: flex-end;
}
.carousel-slide::before { content: ''; position: absolute; inset: 0; background: linear-gradient(transparent, rgba(45,10,10,0.85)); }
.slide-caption { position: relative; z-index: 1; color: var(--cream); padding: 2rem; max-width: 560px; }
.slide-caption h2 { color: var(--cream); font-size: 2rem; }
.slide-caption p { margin: 0.4rem 0 1rem; }
.slide-kicker { display: inline-block; background: var(--gold); color: var(--burgundy-dark); padding: 0.2rem 0.7rem; border-radius: 50px; font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }

.carousel-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(250, 243, 224, 0.85); border: none; color: var(--burgundy);
  font-size: 1.8rem; width: 44px; height: 44px; border-radius: 50%;
  cursor: pointer; transition: background var(--transition);
}
.carousel-btn:hover { background: var(--gold); }
.carousel-btn.prev { left: 12px; }
.carousel-btn.next { right: 12px; }
.carousel-dots { position: absolute; bottom: 12px; left: 50%; transform: translateX(-50%); display: flex; gap: 0.5rem; }
.carousel-dots button { width: 11px; height: 11px; border-radius: 50%; border: none; background: rgba(250,243,224,0.5); cursor: pointer; }
.carousel-dots button.active { background: var(--gold); }

/* ── Quick access cards ──────────────────────────────────────────────────── */
.quick-access { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.quick-card {
  background: var(--white); border-radius: var(--radius); padding: 2rem 1.5rem;
  text-align: center; box-shadow: var(--shadow); transition: transform var(--transition);
  border-top: 4px solid var(--gold);
}
.quick-card:hover { transform: translateY(-6px); }
.quick-icon { font-size: 2.4rem; display: block; margin-bottom: 0.5rem; }
.quick-card h3 { margin-bottom: 0.4rem; }
.quick-card p { color: var(--muted); margin-bottom: 1rem; }

/* ── Testimonials ────────────────────────────────────────────────────────── */
.testimonials { background: var(--white); border-radius: var(--radius); }
.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; }
.testimonial-card {
  background: var(--cream); border-radius: var(--radius); padding: 1.5rem;
  border-left: 4px solid var(--gold);
}
.testimonial-card .stars { color: var(--gold); font-size: 1.1rem; }
.testimonial-card .t-comment { font-style: italic; margin: 0.5rem 0; }
.testimonial-card .t-author { font-weight: 700; color: var(--burgundy); }
.testimonial-card .t-item { color: var(--muted); font-size: 0.85rem; }

/* ── Instagram feed ──────────────────────────────────────────────────────── */
.insta-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.6rem; }
.insta-tile { position: relative; overflow: hidden; border-radius: 8px; aspect-ratio: 1; }
.insta-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--transition); }
.insta-tile:hover img { transform: scale(1.08); }
.insta-overlay {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  background: rgba(107, 26, 26, 0.0); color: transparent; font-weight: 700;
  transition: background var(--transition), color var(--transition);
}
.insta-tile:hover .insta-overlay { background: rgba(107, 26, 26, 0.55); color: var(--cream); }

/* ── Page header banner ──────────────────────────────────────────────────── */
.page-header {
  background: var(--burgundy); color: var(--cream); text-align: center;
  padding: 3rem 1.25rem;
}
.page-header h1 { color: var(--cream); font-size: 2.6rem; }
.page-header p { color: var(--gold); }

/* ── Menu page ───────────────────────────────────────────────────────────── */
.menu-tabs { display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center; margin-bottom: 1rem; }
.menu-tab {
  background: var(--white); border: 2px solid var(--burgundy); color: var(--burgundy);
  padding: 0.45rem 1.2rem; border-radius: 50px; cursor: pointer; font-weight: 700;
  transition: all var(--transition);
}
.menu-tab:hover { background: var(--gold); border-color: var(--gold); color: var(--burgundy-dark); }
.menu-tab.active { background: var(--burgundy); color: var(--cream); }

.menu-filters { display: flex; gap: 1.5rem; justify-content: center; margin-bottom: 2rem; }
.menu-filters label { display: flex; align-items: center; gap: 0.4rem; font-weight: 700; cursor: pointer; }

.menu-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.5rem; }
.menu-card {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); display: flex; flex-direction: column;
  transition: transform var(--transition);
}
.menu-card:hover { transform: translateY(-6px); }
.menu-card .card-img { height: 180px; background-size: cover; background-position: center; position: relative; }
.menu-card .qr-icon {
  position: absolute; top: 10px; right: 10px;
  background: var(--cream); border: none; border-radius: 8px; cursor: pointer;
  width: 38px; height: 38px; font-size: 1.1rem; box-shadow: var(--shadow);
  transition: background var(--transition);
}
.menu-card .qr-icon:hover { background: var(--gold); }
.menu-card .card-body { padding: 1.1rem; display: flex; flex-direction: column; flex: 1; }
.menu-card h3 { font-size: 1.2rem; }
.menu-card h3 a { color: var(--burgundy); }
.menu-card .desc { color: var(--muted); font-size: 0.9rem; margin: 0.4rem 0; flex: 1; }
.menu-card .card-foot { display: flex; align-items: center; justify-content: space-between; margin-top: 0.6rem; }
.menu-card .price { font-weight: 700; color: var(--burgundy); font-size: 1.15rem; }

.diet-tags { display: flex; gap: 0.35rem; flex-wrap: wrap; margin-top: 0.5rem; }
.tag {
  font-size: 0.72rem; font-weight: 700; padding: 0.15rem 0.55rem; border-radius: 50px;
  text-transform: uppercase; letter-spacing: 0.5px;
}
.tag.veg { background: #e3f3dd; color: #2f6b1f; }
.tag.gf { background: #fff0d6; color: #8a6400; }
.tag.cat { background: #f0e2e2; color: var(--burgundy); }

/* ── Item detail page ────────────────────────────────────────────────────── */
.back-link { display: inline-block; margin-bottom: 1rem; font-weight: 700; }
.item-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: start; }
.item-detail img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; }
.item-detail .item-info h1 { font-size: 2.2rem; }
.item-detail .item-price { font-size: 1.5rem; font-weight: 700; color: var(--burgundy); margin: 0.5rem 0; }
.item-detail .item-desc { margin: 1rem 0; }

.reviews-section { margin-top: 3rem; }
.review-card {
  background: var(--white); border-radius: var(--radius); padding: 1.2rem;
  margin-bottom: 1rem; border-left: 4px solid var(--gold);
}
.review-card .stars { color: var(--gold); }
.review-card .r-author { font-weight: 700; }
.review-card .r-date { color: var(--muted); font-size: 0.8rem; }

.leave-review { background: var(--white); border-radius: var(--radius); padding: 1.5rem; margin-top: 1.5rem; box-shadow: var(--shadow); }
.review-form { margin-top: 1rem; }

/* ── Forms ───────────────────────────────────────────────────────────────── */
.card-form {
  background: var(--white); border-radius: var(--radius); padding: 2rem;
  box-shadow: var(--shadow); max-width: 560px; margin: 0 auto;
}
form label { display: block; font-weight: 700; margin-bottom: 1rem; color: var(--ink); }
form input, form select, form textarea {
  width: 100%; margin-top: 0.35rem; padding: 0.7rem 0.8rem;
  border: 1px solid #d8cdbb; border-radius: 8px; font: inherit; background: var(--cream);
  transition: border-color var(--transition), box-shadow var(--transition);
}
form input:focus, form select:focus, form textarea:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.25);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.captcha-label { background: var(--cream); padding: 0.8rem; border-radius: 8px; border: 1px dashed var(--gold); }

.form-message { margin-top: 1rem; padding: 0.7rem 1rem; border-radius: 8px; font-weight: 700; }
.form-message.success { background: #e3f3dd; color: #2f6b1f; }
.form-message.error { background: #f8dada; color: #9b1c1c; }
.notice { background: #fff0d6; border: 1px solid var(--gold); border-radius: 8px; padding: 1rem; max-width: 560px; margin: 0 auto 1.5rem; }

/* ── Confirmation block ──────────────────────────────────────────────────── */
.confirmation { text-align: center; background: var(--white); border-radius: var(--radius); padding: 2rem; box-shadow: var(--shadow); max-width: 560px; margin: 1.5rem auto 0; border-top: 4px solid var(--gold); }
.confirmation-code { font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--burgundy); letter-spacing: 2px; background: var(--cream); padding: 0.6rem 1rem; border-radius: 8px; display: inline-block; margin: 0.5rem 0; }

/* ── Branches / locations ────────────────────────────────────────────────── */
.branch-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2rem; }
.branch-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.branch-card .branch-body { padding: 1.3rem; }
.branch-card h3 { margin-bottom: 0.5rem; }
.branch-card p { margin-bottom: 0.3rem; color: var(--ink); }
.branch-card .branch-meta { color: var(--muted); font-size: 0.9rem; }
.branch-card iframe { width: 100%; height: 220px; border: 0; display: block; }

/* ── Chef + awards ───────────────────────────────────────────────────────── */
.about-intro { display: grid; grid-template-columns: 1.3fr 1fr; gap: 2.5rem; align-items: center; }
.about-image img { border-radius: var(--radius); box-shadow: var(--shadow); }
.about-intro .section-title { margin-top: 1.2rem; }
.mission { font-style: italic; font-size: 1.15rem; color: var(--burgundy); border-left: 4px solid var(--gold); padding-left: 1rem; }

.chef-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.chef-card { background: var(--white); border-radius: var(--radius); text-align: center; padding-bottom: 1.5rem; box-shadow: var(--shadow); overflow: hidden; transition: transform var(--transition); }
.chef-card:hover { transform: translateY(-6px); }
.chef-card img { width: 100%; height: 260px; object-fit: cover; }
.chef-card h3 { margin: 1rem 0 0.2rem; }
.chef-role { color: var(--gold-dark); font-weight: 700; margin-bottom: 0.5rem; }
.chef-card p { padding: 0 1.2rem; color: var(--muted); font-size: 0.92rem; }

.award-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.5rem; }
.award { background: var(--white); border-radius: var(--radius); padding: 1.5rem; text-align: center; box-shadow: var(--shadow); }
.award-icon { font-size: 2.2rem; display: block; margin-bottom: 0.5rem; }

/* ── Admin tables ────────────────────────────────────────────────────────── */
.admin-bar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.5rem; background: var(--white); padding: 1rem 1.25rem; border-radius: var(--radius); box-shadow: var(--shadow); }
.table-wrap { overflow-x: auto; background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); margin-bottom: 2.5rem; }
.data-table { width: 100%; border-collapse: collapse; min-width: 640px; }
.data-table th, .data-table td { padding: 0.75rem 1rem; text-align: left; border-bottom: 1px solid #eee; font-size: 0.9rem; }
.data-table th { background: var(--burgundy); color: var(--cream); font-family: 'Playfair Display', serif; }
.data-table tr:hover td { background: #faf6ec; }
.status-badge { padding: 0.2rem 0.7rem; border-radius: 50px; font-size: 0.78rem; font-weight: 700; text-transform: capitalize; }
.status-pending { background: #fff0d6; color: #8a6400; }
.status-confirmed { background: #e3f3dd; color: #2f6b1f; }
.status-cancelled { background: #f8dada; color: #9b1c1c; }

/* ── Modal (auth + QR) ───────────────────────────────────────────────────── */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(45, 10, 10, 0.6);
  display: flex; align-items: center; justify-content: center; z-index: 100; padding: 1rem;
}
.modal-overlay[hidden] { display: none; }
.modal {
  background: var(--cream); border-radius: var(--radius); padding: 2rem;
  width: 100%; max-width: 420px; position: relative; box-shadow: var(--shadow);
  animation: pop 0.2s ease;
}
@keyframes pop { from { transform: scale(0.95); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.modal-close { position: absolute; top: 0.6rem; right: 0.9rem; background: none; border: none; font-size: 1.8rem; cursor: pointer; color: var(--muted); line-height: 1; }
.modal-close:hover { color: var(--burgundy); }
.qr-modal { text-align: center; }
.qr-modal img { margin: 1rem auto; width: 240px; height: 240px; }
.qr-link { font-size: 0.85rem; word-break: break-all; }

.auth-tabs { display: flex; gap: 0.5rem; margin-bottom: 1rem; }
.auth-tab { flex: 1; background: none; border: none; border-bottom: 3px solid transparent; padding: 0.6rem; font-weight: 700; cursor: pointer; color: var(--muted); }
.auth-tab.active { color: var(--burgundy); border-bottom-color: var(--gold); }
.auth-message { padding: 0.6rem 0.9rem; border-radius: 8px; margin-bottom: 0.8rem; font-weight: 700; }
.auth-message.success { background: #e3f3dd; color: #2f6b1f; }
.auth-message.error { background: #f8dada; color: #9b1c1c; }
.auth-hint, .auth-note { font-size: 0.82rem; color: var(--muted); margin-top: 0.6rem; }

/* ── Footer ──────────────────────────────────────────────────────────────── */
.site-footer { background: var(--burgundy-dark); color: var(--cream); margin-top: auto; }
.footer-grid { max-width: var(--max-width); margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 2rem; padding: 3rem 1.25rem 2rem; }
.footer-brand { color: var(--gold); font-size: 1.6rem; }
.footer-col h4 { color: var(--gold); margin-bottom: 0.8rem; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.4rem; }
.footer-col a { color: var(--cream); }
.footer-col a:hover { color: var(--gold); }
.social-links { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-bottom { text-align: center; padding: 1rem; border-top: 1px solid rgba(250, 243, 224, 0.15); font-size: 0.85rem; color: rgba(250, 243, 224, 0.7); }

.error-page { text-align: center; }
.error-page h1 { font-size: 2.5rem; margin-bottom: 1rem; }
.error-page p { margin-bottom: 1.5rem; }

/* ── Responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--burgundy); flex-direction: column; align-items: flex-start;
    padding: 1rem 1.25rem; gap: 0.8rem; display: none;
  }
  .nav-links.open { display: flex; }
  .nav-auth { margin-left: 0; }

  .quick-access, .chef-grid { grid-template-columns: 1fr; }
  .item-detail, .about-intro { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .insta-grid { grid-template-columns: repeat(2, 1fr); }
  .carousel-slide { height: 320px; }
}

@media (max-width: 480px) {
  .section { padding: 2.5rem 1rem; }
  .hero { min-height: 70vh; }
}

/* ============================================================================
   Printable menu (/menu/print)
   On screen it renders as a clean white "sheet"; the @media print block below
   strips the chrome and lays it out for A4.
   ========================================================================== */
.print-menu { max-width: 900px; }
.no-print { /* visible on screen; hidden by @media print */ }
.print-actions { text-align: center; margin-bottom: 2rem; }

.print-sheet {
  background: var(--white);
  color: #1c1c1c;
  font-family: Georgia, 'Times New Roman', Times, serif;
  padding: 2.5rem 2.75rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  max-width: 800px;
  margin: 0 auto;
}

.print-header { text-align: center; border-bottom: 3px double var(--burgundy); padding-bottom: 1rem; margin-bottom: 1.5rem; }
.print-logo { font-family: Georgia, 'Times New Roman', Times, serif; font-size: 2.2rem; font-weight: 700; color: var(--burgundy); letter-spacing: 0.5px; }
.print-mark { font-family: 'Lato', sans-serif; }
.print-subtitle { font-style: italic; color: #555; margin-top: 0.4rem; }

.print-category { margin-top: 1.75rem; }
.print-category-title {
  font-family: Georgia, 'Times New Roman', Times, serif;
  color: var(--burgundy);
  font-size: 1.45rem;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 0.3rem;
  margin-bottom: 0.5rem;
}

.print-table { width: 100%; border-collapse: collapse; }
.print-row td { padding: 0.6rem 0.5rem; vertical-align: middle; border-bottom: 1px dotted #cfc6b3; }
.print-name { font-weight: 700; width: 22%; white-space: nowrap; }
.print-desc { color: #444; width: 52%; font-size: 0.95rem; }
.print-price { font-weight: 700; text-align: right; width: 10%; white-space: nowrap; color: var(--burgundy); }
.print-qr { text-align: right; width: 96px; }
.print-qr img { width: 80px; height: 80px; display: inline-block; }

.print-footer {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid #cfc6b3;
  text-align: center;
  font-style: italic;
  color: #555;
  letter-spacing: 0.5px;
}

/* ── Print rules ───────────────────────────────────────────────────────────
   When the page is printed, hide the site chrome and any buttons, force a
   clean serif sheet, and keep categories/rows from splitting across pages. */
@media print {
  /* Hide everything that is not the menu sheet itself. */
  .site-header,
  .site-footer,
  .nav-toggle,
  .no-print,
  .modal-overlay { display: none !important; }

  body { background: #fff !important; color: #000 !important; min-height: 0; display: block; }

  .print-menu { max-width: none; padding: 0; margin: 0; }

  /* The sheet should fill the printed page with no decorative chrome. */
  .print-sheet {
    box-shadow: none;
    border-radius: 0;
    max-width: none;
    width: 100%;
    margin: 0;
    padding: 0;
    font-family: Georgia, 'Times New Roman', Times, serif;
  }

  /* Keep a category (heading + its rows) together where it fits; never split a
     single dish row across a page break. */
  .print-category { page-break-inside: avoid; break-inside: avoid; }
  .print-category-title { page-break-after: avoid; break-after: avoid; }
  .print-row { page-break-inside: avoid; break-inside: avoid; }

  /* QR codes print at exactly 80×80px. */
  .print-qr img { width: 80px !important; height: 80px !important; }

  .print-footer { page-break-inside: avoid; }

  /* Pull the printed area to the top of the page. */
  @page { margin: 1.5cm; }
}
