/* =========================================================================
   Auberge Le Valais — static site stylesheet
   Alpine chalet palette: cream paper, pine green, warm wood, Swiss red.
   All colours live in the tokens below — edit here to re-theme the site.
   ========================================================================= */

:root {
  --background: #fbf7ee;
  --foreground: #33291f;
  --card: #fffdf7;
  --muted: #eee7d9;
  --muted-foreground: #6f6355;
  --border: #e0d6c2;
  --primary: #1f4b34;
  --primary-foreground: #fbf7ee;
  --accent: #a72a1e;
  --accent-foreground: #fbf7ee;
  --wood: #4a3a2c;
  --cream: #fbf7ee;
  --radius: 4px;
  --shadow-soft: 0 18px 40px -28px rgba(50, 38, 26, 0.4);
  --font-display: "Cormorant Garamond", "Noto Kufi Arabic", Georgia, serif;
  --font-sans: "Karla", "Noto Kufi Arabic", system-ui, -apple-system, sans-serif;
  --wrap: 1120px;
}


*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 64px; /* room for mobile action bar */
}

[dir="rtl"] body {
  font-family: "Noto Kufi Arabic", var(--font-sans);
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0;
}

h1 {
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  line-height: 1.1;
}
h2 {
  font-size: clamp(1.7rem, 3.4vw, 2.4rem);
}
h3 {
  font-size: 1.3rem;
}

p {
  margin: 0;
}

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

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

ul,
dl,
dd {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* ---------- helpers ---------- */

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: 20px;
}

.section {
  padding-block: clamp(48px, 8vw, 88px);
}

.eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
}

.muted {
  color: var(--muted-foreground);
}
.accent {
  color: var(--accent);
}
.small {
  font-size: 0.875rem;
}
.body-text {
  margin-top: 18px;
  color: var(--muted-foreground);
  font-size: 0.97rem;
  line-height: 1.75;
}
.link-accent {
  color: var(--accent);
  font-weight: 600;
  font-size: 0.9rem;
}
.link-accent:hover {
  text-decoration: underline;
}
.cream-dim {
  color: rgba(251, 247, 238, 0.8);
}
.stack > * + * {
  margin-top: 32px;
}

/* ---------- buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: var(--radius);
  padding: 13px 22px;
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  transition: opacity 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}
.btn-sm {
  padding: 9px 15px;
  font-size: 0.82rem;
}
.btn-accent {
  background: var(--accent);
  color: var(--accent-foreground);
}
.btn-primary {
  background: var(--primary);
  color: var(--primary-foreground);
}
.btn-accent:hover,
.btn-primary:hover {
  opacity: 0.9;
}
.btn-outline {
  border-color: var(--primary);
  color: var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: var(--primary-foreground);
}
.btn-ghost-cream {
  border-color: rgba(251, 247, 238, 0.45);
  color: var(--cream);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.btn-ghost-cream:hover {
  background: rgba(251, 247, 238, 0.12);
}

/* ---------- header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(251, 247, 238, 0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding-block: 12px;
}

.brand {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  margin-inline-end: auto;
}
.brand-name {
  font-family: var(--font-display);
  font-size: 1.32rem;
  font-weight: 600;
}
.brand-sub {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted-foreground);
}

.nav {
  display: flex;
  gap: 22px;
  order: 3;
  width: 100%;
  overflow-x: auto;
  padding-block: 4px;
  border-top: 1px solid var(--border);
  padding-top: 10px;
}
.navlink {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--muted-foreground);
  white-space: nowrap;
}
.navlink:hover {
  color: var(--accent);
}
.navlink.current {
  color: var(--foreground);
  border-bottom: 2px solid var(--accent);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.langs {
  display: flex;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}


@media (min-width: 860px) {
  .nav {
    order: 0;
    width: auto;
    border-top: 0;
    padding-top: 0;
    margin-inline-end: 20px;
  }
}

/* ---------- hero ---------- */

.hero {
  position: relative;
}
.hero > img {
  width: 100%;
  height: clamp(420px, 68vh, 720px);
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(32, 24, 16, 0.78), rgba(32, 24, 16, 0.28));
}
.hero-content {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  padding-bottom: clamp(32px, 6vw, 64px);
  color: var(--cream);
}
.hero-content h1 {
  margin-top: 10px;
  color: var(--cream);
}
.hero-tagline {
  margin-top: 12px;
  max-width: 34rem;
  font-size: 1.05rem;
  color: rgba(251, 247, 238, 0.88);
}
.hero-actions {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

/* ---------- intro ---------- */

.intro-grid {
  display: grid;
  gap: 40px;
}
.intro-grid h3 {
  margin-top: 34px;
}
.intro-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  align-self: start;
}
.intro-images img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  box-shadow: var(--shadow-soft);
}
.intro-images .span-2 {
  grid-column: span 2;
  height: 260px;
}

@media (min-width: 860px) {
  .intro-grid {
    grid-template-columns: 1fr 1fr;
    gap: 56px;
  }
}

/* ---------- signature cards ---------- */

.band {
  background: var(--muted);
  border-block: 1px solid var(--border);
}
.card-grid {
  margin-top: 30px;
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}
.card {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 20px;
  box-shadow: var(--shadow-soft);
}
.card-row {
  margin-top: 8px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}
.price {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.band .btn-outline {
  margin-top: 30px;
}

/* ---------- visit ---------- */

.visit-grid {
  margin-top: 30px;
  display: grid;
  gap: 26px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.visit-grid dd {
  margin-top: 6px;
}
.visit-grid a:hover {
  color: var(--accent);
}

/* ---------- page head ---------- */

.page-head {
  max-width: 44rem;
}
.page-head h1 {
  margin-top: 10px;
}

/* ---------- menu ---------- */

/* ===== CHIPS HORIZONTAL SCROLL - FINAL ===== */
#chips-root {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  gap: 10px;
  overflow-x: auto !important;
  overflow-y: hidden !important;
  padding: 10px 0 16px 2px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Firefox */
  scroll-snap-type: x proximity;
  width: 100%;
  max-width: 100%;
}

#chips-root::-webkit-scrollbar { display: none; } /* Chrome */

#chips-root .chip {
  flex: 0 0 auto !important;
  scroll-snap-align: start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 38px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid #e9e0d2;
  background: #fffdf8;
  font-family: 'Karla', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.2px;
  color: #2b2117;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
  transition: all .2s;
}

/* ===== CHIPS - 2 ROWS HORIZONTAL SCROLL ===== */
#chips-root {
  display: grid !important;
  grid-template-rows: repeat(2, auto);
  grid-auto-flow: column;
  grid-auto-columns: max-content;
  gap: 10px;
  overflow-x: auto !important;
  overflow-y: hidden !important;
  padding: 10px 0 16px 2px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  width: 100%;
  max-width: 100%;
}

#chips-root::-webkit-scrollbar { display: none; }

#chips-root .chip {
  flex: none !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 38px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid #e9e0d2;
  background: #fffdf8;
  font-size: 13px;
  font-weight: 500;
  color: #2b2117;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
}
#chips-root .chip.active {
  background: #1a3d2e;
  color: #fff;
  border-color: #1a3d2e;
}.menu-columns {
  margin-top: 42px;
  display: grid;
  gap: 46px;
}
@media (min-width: 900px) {
  .menu-columns {
    grid-template-columns: 1fr 1fr;
    column-gap: 64px;
  }
}

.menu-heading {
  font-size: 1.6rem;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--primary);
}
.menu-list {
  margin-top: 18px;
  display: grid;
  gap: 18px;
}
.menu-item-top {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.menu-item-name {
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 600;
}
.rule {
  flex: 1 1 0;
  min-width: 18px;
  border-bottom: 1px dotted var(--border);
}
.menu-prices {
  display: flex;
  gap: 14px;
  align-items: baseline;
  white-space: nowrap;
}
.price-pair {
  display: inline-flex;
  gap: 6px;
  align-items: baseline;
}
.price-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted-foreground);
}
.menu-desc {
  margin-top: 4px;
  font-size: 0.88rem;
  color: var(--muted-foreground);
}
.menu-note {
  margin-top: 3px;
  font-size: 0.8rem;
  font-style: italic;
  color: var(--muted-foreground);
}
.menu-footnote {
  margin-top: 14px;
  font-size: 0.8rem;
  color: var(--muted-foreground);
}
.tag {
  display: inline-block;
  margin-inline-start: 6px;
  padding: 2px 7px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--accent-foreground);
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  vertical-align: middle;
}

/* ---------- gallery + CSS-only lightbox ---------- */

.gallery-grid {
  margin-top: 34px;
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}
.gallery-thumb {
  display: block;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.gallery-thumb img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-thumb:hover img {
  transform: scale(1.04);
}

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 60;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.lightbox:target {
  display: flex;
}
.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(28, 21, 14, 0.92);
}
.lightbox > img {
  position: relative;
  max-height: 86vh;
  max-width: 100%;
  width: auto;
  object-fit: contain;
}
.lightbox-close {
  position: absolute;
  top: 18px;
  inset-inline-end: 18px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(251, 247, 238, 0.35);
  border-radius: 999px;
  color: var(--cream);
  font-size: 1.5rem;
  line-height: 1;
}

/* ---------- contact ---------- */

.contact-grid {
  margin-top: 40px;
  display: grid;
  gap: 40px;
}
@media (min-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr 1.2fr;
  }
}
.phone-list {
  margin-top: 12px;
  display: grid;
  gap: 10px;
}
.phone-card {
  display: block;
  border: 1px solid var(--border);
  background: var(--card);
  padding: 14px 18px;
  font-family: var(--font-display);
  font-size: 1.3rem;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.phone-card:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.map-frame {
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
.map-frame iframe {
  width: 100%;
  height: min(70vh, 460px);
  border: 0;
  display: block;
}

/* ---------- footer ---------- */

.site-footer {
  margin-top: 20px;
  background: var(--wood);
  color: var(--cream);
  padding-block: 44px 22px;
}
.site-footer .muted {
  color: rgba(251, 247, 238, 0.7);
}
.footer-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.footer-link {
  display: block;
  margin-top: 8px;
  font-size: 0.92rem;
  color: rgba(251, 247, 238, 0.9);
}
.footer-link:hover {
  color: var(--cream);
  text-decoration: underline;
}
.copyright {
  margin-top: 34px;
  padding-top: 16px;
  border-top: 1px solid rgba(251, 247, 238, 0.18);
}

/* ---------- mobile quick action bar ---------- */

.mobile-bar {
  position: fixed;
  inset-inline: 0;
  bottom: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--primary);
  color: var(--primary-foreground);
  border-top: 1px solid rgba(0, 0, 0, 0.15);
}
.mobile-bar a {
  padding: 15px 6px;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--primary-foreground);
}
.mobile-bar a + a {
  border-inline-start: 1px solid rgba(251, 247, 238, 0.2);
}

@media (min-width: 860px) {
  .mobile-bar {
    display: none;
  }
  body {
    padding-bottom: 0;
  }
}

/* ---------- print (menu) ---------- */

@media print {
  .site-header,
  .site-footer,
  .mobile-bar,
  .no-print {
    display: none !important;
  }
  body {
    padding: 0;
    background: #fff;
  }
  .menu-columns {
    grid-template-columns: 1fr 1fr;
  }
}



/* --- Hotel page additions - Auberge de Suisse cozy --- */
.hero-hotel > img { height: clamp(520px, 72vh, 760px); }
.hotel-intro { max-width: 42rem; }
.hotel-intro h2 { margin-top: 10px; }

.hotel-types {
  display: grid;
  grid-template-columns: 1fr 1fr; /* this makes 2 columns */
  gap: 24px;
}

@media (max-width: 768px) {
  .hotel-types {
    grid-template-columns: 1fr; /* on phone, 1 column */
  }
}

.hotel-type-card {
  background: var(--card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
.hotel-type-media {
  position: relative;
  background: var(--muted);
}
.hotel-type-media img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}
.replace-badge {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: rgba(31,75,52,0.9);
  color: #fbf7ee;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 2px;
}
.hotel-type-body { padding: 22px; }
.hotel-type-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}
.count-badge {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: var(--muted);
  border: 1px solid var(--border);
  padding: 4px 10px;
  color: var(--muted-foreground);
}
.capacity-list { margin-top: 14px; display: grid; gap: 6px; }
.capacity-list li {
  display: flex;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--muted-foreground);
}
.cap-icon { color: var(--primary); font-weight: 700; }

.breakfast-note {
  margin-top: 38px;
  background: var(--card);
  border: 1px solid var(--border);
  padding: 22px;
  max-width: 52rem;
}
.reserve-grid {
  margin-top: 22px;
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.phone-card.large { padding: 18px 20px; font-size: 1.05rem; }
.phone-card.whatsapp {
  background: #1f4b34;
  color: #fbf7ee;
  border-color: #1f4b34;
}
.trust-row {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--muted-foreground);
}
/* --- FIX: never overflow, always fit screen --- */
html, body {
  max-width: 100%;
  overflow-x: hidden;
}
*, *::before, *::after { box-sizing: border-box; }
.wrap {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
}

/* --- HEADER FIX --- */
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: nowrap;
}
.nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

/* hamburger button - hidden on desktop */
.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}
.nav-toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: #2b2117;
  transition: all .2s;
}

/* --- MOBILE --- */
@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; }

  .nav {
    display: none; /* hidden by default on mobile */
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #F9F5EB;
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 16px 22px;
    gap: 16px;
    border-top: 1px solid #e9e0d2;
    box-shadow: 0 12px 24px rgba(0,0,0,.08);
    z-index: 99;
  }
  .nav.open { display: flex; }
  
  .site-header { position: sticky; top: 0; z-index: 100; }
  
  /* fix hotel page buttons - stack on mobile, row on desktop */
  .cta-group, .actions-row, .btn-row {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
    width: 100%;
  }
}

@media (min-width: 901px) {
  .cta-group, .actions-row, .btn-row {
    display: flex !important;
    flex-direction: row !important;
    gap: 14px !important;
  }
}

/* --- MENU PAGE: stop touching right edge when zoomed out --- */
.menu-list, .entrees-list, [class*="menu"] {
  max-width: 100%;
  overflow-wrap: anywhere;
}
/* ===== MENU PAGE FIX - always fit screen ===== */
html, body {
  max-width: 100%;
  overflow-x: hidden;
}
* { box-sizing: border-box; }

/* your main container */
.wrap {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
}

/* each category like Entrées */
.menu-section {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 16px;
}

/* each line: Salade verte du maraîcher .... $15 */
.menu-item,
.entree-item,
[class*="menu"] li,
[class*="entree"] li {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px;
  width: 100%;
  max-width: 100%;
  padding: 12px 0;
  overflow-wrap: anywhere; /* fixes long french words */
  border-bottom: 1px dotted transparent; /* remove if you have default border */
}

/* name */
.menu-item .name,
.entree-item .name {
  white-space: normal;
  max-width: 100%;
}

/* dotted leader */
.menu-item .dots {
  flex: 1 1 20px;
  min-width: 20px;
  height: 1px;
  border-bottom: 1px dotted #c9c0b0;
  transform: translateY(-4px);
}

/* price - 1/2 PORTION */
.menu-item .price,
.entree-item .price,
.menu-item .portion {
  white-space: nowrap;
  margin-left: auto;
  font-size: 0.85em;
  opacity: .7;
  flex-shrink: 0;
}

/* description: Laitue, carotte... */
.menu-item .desc,
.entree-item .desc,
.menu-item p {
  flex-basis: 100%;
  margin: 4px 0 0;
  font-size: 0.9em;
  opacity: .7;
  max-width: 100%;
}

/* mobile */
@media (max-width: 768px) {
  .menu-item {
    padding-left: 0;
    padding-right: 0;
  }
  .menu-item .dots {
    display: none; /* hide dots on mobile - cleaner, no overflow */
  }
  .menu-item .price {
    margin-left: 0;
  }
}
/* ===== FINAL MENU FIX - replace old fix ===== */
.menu-list { list-style: none; padding: 0; margin: 0; width: 100%; }
.menu-item { 
  width: 100%; 
  max-width: 100%;
  padding: 14px 0; 
  border-bottom: 1px dotted #e5ddd0;
  overflow: hidden;
}

.menu-item-top {
  display: flex;
  align-items: baseline;
  gap: 10px;
  width: 100%;
  max-width: 100%;
}

.menu-item-name { 
  flex: 0 1 auto; 
  min-width: 0; 
  overflow-wrap: anywhere;
  font-weight: 500;
}

/* the dotted line - fixed width now, not infinite */
.rule {
  flex: 1 1 auto;
  border-bottom: 1px dotted #c9c0b0;
  min-width: 10px;
  max-width: 100%;
  align-self: center;
  height: 0;
}

.menu-prices {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-left: auto;
  flex-shrink: 0;
  max-width: 45%;
  justify-content: flex-end;
}

.price-pair { display: inline-flex; gap: 4px; white-space: nowrap; align-items: baseline; }
.price-label { opacity: .6; font-size: .8em; margin-right: 2px; }
.price { font-weight: 600; }

/* SIGNATURE - RED again */
.tag-signature, .tag {
  background: #B91C1C !important; /* your original red */
  color: #fff !important;
  font-size: 10px;
  padding: 3px 8px;
  border-radius: 10px;
  margin-left: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  vertical-align: middle;
  white-space: nowrap;
}

.menu-desc, .muted.small { 
  margin-top: 6px; 
  opacity: .7; 
  font-size: .9em; 
  width: 100%;
  overflow-wrap: anywhere;
}

/* MOBILE - this stops the glitch */
@media (max-width: 768px) {
  .menu-item-top { flex-wrap: wrap; }
  .rule { display: none !important; }
  .menu-prices { 
    margin-left: 0; 
    max-width: 100%; 
    width: 100%; 
    justify-content: flex-start;
    margin-top: 4px;
  }
  .menu-item { padding: 12px 0; }
}

/* ===== LOGO - EXTRA BIG ===== */
.site-header .header-inner, 
#header-root .header-inner {
  padding-top: 10px !important;
  padding-bottom: 10px !important;
  align-items: center;
}

.brand-logo {
  height: 88px !important; /* BIG */
  width: auto !important;
  max-width: none !important;
  max-height: none !important;
  display: block;
  object-fit: contain;
  mix-blend-mode: multiply;
}

@media (max-width: 768px) {
  .brand-logo { 
    height: 62px !important; /* BIG on mobile */
  }
}
