/* ==========================================================================
   Asian Kitchen — Version 5: "Green Light Pro" (sage palette + Inter/Playfair)
   ========================================================================== */

/* ---------- Design Tokens ---------- */
:root {
  /* Colors — sage palette anchored on client's #E1EBE9 */
  --bg:           #e1ebe9;
  --bg-deep:      #cfdcd7;
  --surface:      #ffffff;
  --surface-alt:  #d4e0db;
  --surface-warm: #f7ede2;
  --border:       #b8ccc4;
  --border-soft:  #d2dfd9;
  --text:         #1f2c27;
  --text-muted:   #5e6b65;
  --accent:       #2f6e60;     /* deep jade — primary brand */
  --accent-hover: #1f4f44;
  --accent-light: #4a8577;
  --terracotta:   #c96f5a;     /* warm CTA pop */
  --terracotta-hover: #a85541;
  --gold:         #b07f1f;     /* deeper gold for AA contrast on light bg */
  --gold-hover:   #8a6315;
  --cta-green:    #1a8c4e;     /* WhatsApp green (unchanged) */
  --cta-green-hover: #1fa05a;
  --overlay:      rgba(0, 0, 0, 0.5);

  /* Dark footer */
  --footer-bg:       #1a2622;
  --footer-surface:  #243630;
  --footer-border:   #2f4641;
  --footer-text:     #e8efeb;
  --footer-muted:    #9eada6;

  /* Typography */
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;

  /* Spacing */
  --space-xs:  4px;
  --space-sm:  8px;
  --space-md:  16px;
  --space-lg:  24px;
  --space-xl:  32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  --space-4xl: 96px;

  /* Layout */
  --max-w:     1100px;
  --radius:    8px;
  --radius-lg: 16px;
  --radius-pill: 24px;

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s var(--ease);
}

a:hover { color: var(--accent-hover); }

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

ul, ol { list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
}

h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.25rem); }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.5rem); }

/* ---------- Utilities ---------- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.section {
  padding: var(--space-3xl) 0;
}

.section--alt {
  background: var(--surface);
}

.text-center { text-align: center; }
.text-gold   { color: var(--gold); }
.text-muted  { color: var(--text-muted); }
.text-accent { color: var(--accent); }

/* ---------- Skip Link ---------- */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-md);
  background: var(--accent);
  color: #fff;
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius);
  font-weight: 600;
  z-index: 1000;
}

.skip-link:focus {
  top: var(--space-sm);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 12px 28px;
  border: none;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s var(--ease);
  text-decoration: none;
  line-height: 1.4;
}

.btn--accent {
  background: var(--terracotta);
  color: #fff;
}
.btn--accent:hover {
  background: var(--terracotta-hover);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(201, 111, 90, 0.30);
}

.btn--primary {
  background: var(--accent);
  color: #fff;
}
.btn--primary:hover {
  background: var(--accent-hover);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(47, 110, 96, 0.30);
}

.btn--gold {
  background: var(--gold);
  color: #fff;
}
.btn--gold:hover {
  background: var(--gold-hover);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(176, 127, 31, 0.25);
}

.btn--whatsapp {
  background: var(--cta-green);
  color: #fff;
}
.btn--whatsapp:hover {
  background: var(--cta-green-hover);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(26, 140, 78, 0.30);
}

.btn--outline {
  background: transparent;
  color: var(--text);
  border: 2px solid var(--border);
}
.btn--outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn--sm {
  padding: 8px 20px;
  font-size: 0.85rem;
}

/* WhatsApp icon inline SVG helper */
.btn svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* ---------- Header / Navigation ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(225, 235, 233, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.site-logo img {
  height: 52px;
  width: auto;
}

.nav-list {
  display: flex;
  gap: var(--space-xl);
}

.nav-list a {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: var(--space-xs) 0;
  position: relative;
  transition: color 0.2s var(--ease);
}

.nav-list a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.25s var(--ease);
}

.nav-list a:hover,
.nav-list a[aria-current="page"] {
  color: var(--text);
}

.nav-list a:hover::after,
.nav-list a[aria-current="page"]::after {
  width: 100%;
}

/* Hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-sm);
  color: var(--text);
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: currentColor;
  margin: 5px 0;
  transition: all 0.3s var(--ease);
  border-radius: 2px;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 768px) {
  .nav-toggle { display: block; }

  .nav-list {
    position: fixed;
    inset: 0;
    background: rgba(225, 235, 233, 0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-2xl);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s var(--ease), visibility 0.3s var(--ease);
    z-index: 99;
  }

  .nav-list.is-open {
    opacity: 1;
    visibility: visible;
  }

  .nav-list a {
    font-size: 1.25rem;
  }
}

/* ---------- Hero ---------- */
.hero {
  padding: var(--space-4xl) 0 var(--space-3xl);
  text-align: center;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(47, 110, 96, 0.10) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(201, 111, 90, 0.08) 0%, transparent 50%),
    var(--bg);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 120%;
  height: 200%;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 40px,
    rgba(0, 0, 0, 0.01) 40px,
    rgba(0, 0, 0, 0.01) 41px
  );
  pointer-events: none;
}

.hero__tagline {
  margin-bottom: var(--space-md);
}

.hero__tagline span {
  color: var(--accent);
}

.hero__desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto var(--space-xl);
}

.hero__ctas {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- Cuisine Cards ---------- */
.cuisines {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.cuisine-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl) var(--space-lg);
  text-align: center;
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.cuisine-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.cuisine-card__icon {
  width: 72px;
  height: 72px;
  margin: 0 auto var(--space-md);
  display: block;
  color: var(--accent);
  transition: transform 0.35s var(--ease);
}
.cuisine-card:hover .cuisine-card__icon {
  transform: translateY(-4px) scale(1.05);
  color: var(--accent-hover);
}
.cuisine-card__icon svg { width: 100%; height: 100%; display: block; }

.cuisine-card h3 {
  margin-bottom: var(--space-sm);
  font-size: 1.15rem;
}

.cuisine-card h3 + p {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-sm);
}

.cuisine-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ---------- Info Bar ---------- */
.info-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-lg);
  text-align: center;
}

.info-item {
  padding: var(--space-lg);
}

.info-item__icon {
  width: 44px;
  height: 44px;
  margin: 0 auto var(--space-sm);
  color: var(--accent);
}
.info-item__icon svg { width: 100%; height: 100%; display: block; }

.info-item__label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: var(--space-xs);
}

.info-item__value {
  font-weight: 600;
  font-size: 1rem;
}

/* ---------- CTA Banner ---------- */
.cta-banner {
  text-align: center;
  padding: var(--space-3xl) 0;
  background:
    linear-gradient(135deg, rgba(47, 110, 96, 0.10) 0%, rgba(201, 111, 90, 0.08) 100%),
    var(--surface-alt);
}

.cta-banner h2 {
  margin-bottom: var(--space-md);
}

.cta-banner p {
  color: var(--text-muted);
  margin-bottom: var(--space-xl);
  font-size: 1.05rem;
}

.cta-banner__buttons {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- Menu Page ---------- */
.menu-nav {
  position: sticky;
  top: 72px;
  z-index: 50;
  background: rgba(225, 235, 233, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.menu-nav::-webkit-scrollbar { display: none; }

.menu-nav__list {
  display: flex;
  gap: var(--space-xs);
  padding: var(--space-sm) var(--space-md);
  max-width: var(--max-w);
  margin: 0 auto;
  white-space: nowrap;
}

.menu-nav__list a {
  display: block;
  padding: 8px 16px;
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 500;
  border-radius: var(--radius-pill);
  transition: all 0.2s var(--ease);
}

.menu-nav__list a:hover,
.menu-nav__list a.is-active {
  background: var(--surface-alt);
  color: var(--text);
}

.menu-section {
  padding: var(--space-2xl) 0;
  scroll-margin-top: 140px;
}

.menu-section:nth-child(even) {
  background: var(--surface);
}

.menu-section__header {
  margin-bottom: var(--space-xl);
}

.menu-section__header h2 {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.menu-section__header h2::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

.menu-items {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.menu-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-md);
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--border);
}

.menu-item:last-child {
  border-bottom: none;
}

.menu-item__info {
  flex: 1;
}

.menu-item__code {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
  background: rgba(197, 58, 50, 0.08);
  padding: 2px 8px;
  border-radius: 4px;
  margin-right: var(--space-sm);
  vertical-align: middle;
}

.menu-item__name {
  font-weight: 600;
  font-size: 1rem;
}

.menu-item__desc {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-top: var(--space-xs);
}

.menu-item__price {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  white-space: nowrap;
  flex-shrink: 0;
}

.menu-item__badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  color: #fff;
  background: var(--accent);
  padding: 2px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-left: var(--space-sm);
  vertical-align: middle;
}

.menu-note {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  padding: var(--space-xl) 0;
  border-top: 1px solid var(--border);
  margin-top: var(--space-xl);
}

/* ---------- Contact Page ---------- */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.contact-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  text-align: center;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.contact-card:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.contact-card__icon {
  font-size: 2rem;
  margin-bottom: var(--space-md);
  display: block;
}

.contact-card h3 {
  margin-bottom: var(--space-sm);
  font-size: 1.1rem;
}

.contact-card a {
  font-size: 1.05rem;
  word-break: break-all;
}

.contact-card p {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-top: var(--space-xs);
}

/* Hours Table */
.hours-table {
  width: 100%;
  max-width: 480px;
  margin: var(--space-xl) auto 0;
  border-collapse: collapse;
}

.hours-table th,
.hours-table td {
  padding: var(--space-sm) var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.hours-table th {
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.9rem;
}

.hours-table td {
  font-weight: 500;
}

.hours-table tr.closed td {
  color: var(--text-muted);
}

/* Map */
.map-container {
  margin-top: var(--space-xl);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}

.map-container iframe {
  width: 100%;
  height: 350px;
  border: 0;
  display: block;
}

/* ---------- Privacy Page ---------- */
.privacy-content {
  max-width: 800px;
  margin: 0 auto;
}

.privacy-content h2 {
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-md);
  font-size: 1.4rem;
}

.privacy-content h3 {
  margin-top: var(--space-xl);
  margin-bottom: var(--space-sm);
  font-size: 1.1rem;
}

.privacy-content p {
  margin-bottom: var(--space-md);
  color: var(--text-muted);
  line-height: 1.75;
}

.privacy-content ul {
  margin-bottom: var(--space-md);
  padding-left: var(--space-xl);
  list-style: disc;
}

.privacy-content ul li {
  color: var(--text-muted);
  margin-bottom: var(--space-sm);
  line-height: 1.6;
}

.privacy-content strong {
  color: var(--text);
}

.privacy-content table {
  width: 100%;
  border-collapse: collapse;
  margin: var(--space-md) 0 var(--space-xl);
}

.privacy-content table th,
.privacy-content table td {
  padding: var(--space-sm) var(--space-md);
  border: 1px solid var(--border);
  text-align: left;
  font-size: 0.9rem;
}

.privacy-content table th {
  background: var(--surface-alt);
  color: var(--text);
  font-weight: 600;
}

.privacy-content table td {
  color: var(--text-muted);
}

/* ---------- Footer (dark bookend) ---------- */
.site-footer {
  background: var(--footer-bg);
  border-top: 1px solid var(--footer-border);
  padding: var(--space-3xl) 0 var(--space-xl);
  color: var(--footer-text);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-2xl);
}

.footer-brand img {
  height: 60px;
  margin-bottom: var(--space-md);
}

.footer-brand p {
  color: var(--footer-muted);
  font-size: 0.9rem;
  max-width: 300px;
  line-height: 1.7;
}

.footer-links h4,
.footer-contact h4 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--footer-muted);
  margin-bottom: var(--space-md);
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer-links a {
  color: var(--footer-muted);
  font-size: 0.9rem;
  transition: color 0.2s var(--ease);
}

.footer-links a:hover {
  color: var(--footer-text);
}

.footer-contact p {
  color: var(--footer-muted);
  font-size: 0.9rem;
  margin-bottom: var(--space-sm);
  line-height: 1.6;
}

.footer-contact a {
  color: var(--footer-muted);
}

.footer-contact a:hover {
  color: #d4a853;
}

.footer-bottom {
  border-top: 1px solid var(--footer-border);
  padding-top: var(--space-xl);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.footer-bottom p {
  color: var(--footer-muted);
  font-size: 0.8rem;
}

.footer-bottom a {
  color: var(--footer-muted);
  font-size: 0.8rem;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* ---------- Page Header (inner pages) ---------- */
.page-header {
  padding: var(--space-3xl) 0 var(--space-xl);
  text-align: center;
  background:
    radial-gradient(ellipse at 50% 100%, rgba(47, 110, 96, 0.10) 0%, transparent 60%),
    var(--surface);
}

.page-header h1 {
  margin-bottom: var(--space-sm);
}

.page-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* ---------- Decorative Divider ---------- */
.divider {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin: var(--space-xl) 0;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.divider::before,
.divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

/* ---------- Print Styles ---------- */
@media print {
  .site-header,
  .site-footer,
  .menu-nav,
  .cta-banner,
  .hero__ctas,
  .nav-toggle,
  .btn--whatsapp,
  .map-container {
    display: none !important;
  }

  body {
    background: #fff;
    color: #222;
    font-size: 11pt;
  }

  .menu-item__price {
    color: #222;
    font-weight: 700;
  }

  .menu-section {
    background: transparent !important;
    break-inside: avoid;
  }

  a { color: #222; }

  h1, h2, h3 { color: #222; }
}





/* ==========================================================================
   tarteaucitron — clean banner styling, no floating icon, no lemon
   ========================================================================== */
#tarteaucitronRoot #tarteaucitronAlertBig {
  background: #ffffff !important;
  color: #1f2c27 !important;
  border-top: 1px solid #b8ccc4 !important;
  box-shadow: 0 -6px 24px rgba(0,0,0,0.10) !important;
  padding: 16px 24px !important;
  font-family: inherit !important;
  font-size: 14px !important;
  line-height: 1.5 !important;
}
#tarteaucitronRoot #tarteaucitronDisclaimerAlert,
#tarteaucitronRoot #tarteaucitronDisclaimerAlert b,
#tarteaucitronRoot #tarteaucitronDisclaimerAlert strong {
  color: #1f2c27 !important;
  font-family: inherit !important;
}
#tarteaucitronRoot .tarteaucitronAllow,
#tarteaucitronRoot #tarteaucitronAllDenied2,
#tarteaucitronRoot #tarteaucitronCloseAlert,
#tarteaucitronRoot #tarteaucitronPersonalize2 {
  border-radius: 999px !important;
  font-family: inherit !important;
  font-weight: 600 !important;
  padding: 8px 18px !important;
  margin: 4px 4px !important;
  border: none !important;
}
#tarteaucitronRoot .tarteaucitronAllow { background: #2f6e60 !important; color: #fff !important; }
#tarteaucitronRoot #tarteaucitronAllDenied2,
#tarteaucitronRoot .tarteaucitronDeny {
  background: transparent !important;
  color: #1f2c27 !important;
  border: 1px solid #b8ccc4 !important;
}
/* In tarteaucitron 1.20.1 the IDs were renamed:
     #tarteaucitronPersonalize2  → "Accept all" CTA   (handled by .tarteaucitronAllow above)
     #tarteaucitronPersonalize   → "Personalize" link (text-only, opens the modal)
   So we style the Personalize button (without the 2) as a subtle text link. */
#tarteaucitronRoot #tarteaucitronPersonalize {
  background: transparent !important;
  color: #1f2c27 !important;
  text-decoration: underline !important;
  text-underline-offset: 3px !important;
  text-decoration-thickness: 1px !important;
  padding: 8px 12px !important;
  border: none !important;
  font-family: inherit !important;
  font-weight: 500 !important;
}
#tarteaucitronRoot #tarteaucitronPersonalize:hover,
#tarteaucitronRoot #tarteaucitronPersonalize:focus-visible {
  color: #2f6e60 !important;
  text-decoration-thickness: 2px !important;
}
/* Belt-and-braces: hide the visual chrome we don't want.
   The cookie icon (#tarteaucitronIcon) IS intentionally visible — it's the
   only way users can re-open the management panel after consenting.
   div#tarteaucitronInfo needs the `div` prefix to beat tarteaucitron.css's
   `div#tarteaucitronInfo { display:block !important }` specificity. */
.tarteaucitronCharte,
div#tarteaucitronInfo,
#tarteaucitronAlertSmall,
#tarteaucitronCloseAlert,
#tarteaucitronCookiesNumberBis { display: none !important; }


/* Cookie-management icon — small white-with-sage-border chip, bottom-left.
   Lets users re-open the management modal at any time after consenting. */
#tarteaucitronRoot #tarteaucitronIcon {
  bottom: 16px !important;
  left: 16px !important;
  right: auto !important;
}
#tarteaucitronRoot #tarteaucitronManager {
  background: #ffffff !important;
  border: 1px solid #b8ccc4 !important;
  border-radius: 50% !important;
  padding: 8px !important;
  box-shadow: 0 4px 12px rgba(31, 44, 39, 0.15) !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease !important;
}
#tarteaucitronRoot #tarteaucitronManager:hover,
#tarteaucitronRoot #tarteaucitronManager:focus-visible {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 18px rgba(31, 44, 39, 0.22) !important;
  border-color: #2f6e60 !important;
}
#tarteaucitronRoot #tarteaucitronManager img {
  width: 28px !important;
  height: 28px !important;
  display: block !important;
}


/* Modal: top "Allow all cookies" / "Deny all cookies" pair sits on tarteaucitron's
   dark header. The banner versions (#tarteaucitronPersonalize2 / #tarteaucitronAllDenied2)
   already work on the white banner; these are the modal-only IDs (without "2"). */
#tarteaucitronRoot #tarteaucitronAllAllowed,
#tarteaucitronRoot #tarteaucitronAllDenied {
  border-radius: 999px !important;
  font-family: inherit !important;
  font-weight: 600 !important;
  padding: 8px 18px !important;
  cursor: pointer !important;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease !important;
}
/* Allow-all: filled jade — same as everywhere else. */
#tarteaucitronRoot #tarteaucitronAllAllowed {
  background: #2f6e60 !important;
  color: #ffffff !important;
  border: 1px solid #2f6e60 !important;
}
#tarteaucitronRoot #tarteaucitronAllAllowed:hover,
#tarteaucitronRoot #tarteaucitronAllAllowed:focus-visible {
  background: #1f4f44 !important;
  border-color: #1f4f44 !important;
}
/* Deny-all: WHITE outlined pill so it's actually readable on the dark modal header. */
#tarteaucitronRoot #tarteaucitronAllDenied {
  background: transparent !important;
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.55) !important;
}
#tarteaucitronRoot #tarteaucitronAllDenied:hover,
#tarteaucitronRoot #tarteaucitronAllDenied:focus-visible {
  background: rgba(255, 255, 255, 0.12) !important;
  border-color: #ffffff !important;
  color: #ffffff !important;
}


/* ==========================================================================
   Menu disclaimer cards (Eat in or takeaway / Allergen info)
   ========================================================================== */
.menu-disclaimer {
  padding: var(--space-2xl) 0 var(--space-xl);
}
.menu-disclaimer__grid {
  display: grid;
  gap: var(--space-md);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (max-width: 720px) {
  .menu-disclaimer__grid {
    grid-template-columns: 1fr;
  }
}
.menu-disclaimer__card {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
}
.menu-disclaimer__card:hover {
  transform: translateY(-2px);
  border-color: var(--accent-light);
  box-shadow: 0 8px 24px rgba(31, 44, 39, 0.08);
}
.menu-disclaimer__icon {
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--surface-alt);
  color: var(--accent);
}
.menu-disclaimer__icon svg {
  width: 26px;
  height: 26px;
}
.menu-disclaimer__body {
  flex: 1 1 auto;
  min-width: 0;
}
.menu-disclaimer__title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
  margin: 0 0 var(--space-xs);
}
.menu-disclaimer__body p {
  margin: 0 0 var(--space-sm);
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.55;
}
.menu-disclaimer__body p:last-child {
  margin-bottom: 0;
}
.menu-disclaimer__body a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.menu-disclaimer__body a:hover {
  color: var(--accent-hover);
}
.menu-disclaimer__actions {
  display: flex !important;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-md);
  margin: var(--space-sm) 0 0 !important;
}
.menu-disclaimer__cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
}
.menu-disclaimer__cta svg {
  display: inline-block;
  vertical-align: middle;
}
.menu-disclaimer__fallback {
  font-size: 0.85rem;
  color: var(--text-muted) !important;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.menu-disclaimer__fallback:hover {
  color: var(--accent) !important;
}


/* ==========================================================================
   Footer colophon (Web Hosting credit)
   ========================================================================== */
.footer-colophon {
  font-size: 0.85rem;
  color: var(--footer-muted);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.footer-colophon:hover,
.footer-colophon:focus-visible {
  color: var(--footer-text);
  border-bottom-color: var(--footer-muted);
}


/* ==========================================================================
   GLightbox brand tint (PDF lightbox for in-store menu)
   ========================================================================== */
.goverlay {
  background: rgba(26, 38, 34, 0.92) !important;
}
.glightbox-clean .gclose,
.glightbox-clean .gnext,
.glightbox-clean .gprev {
  background-color: rgba(31, 44, 39, 0.8) !important;
}
.glightbox-clean .gclose:hover,
.glightbox-clean .gnext:hover,
.glightbox-clean .gprev:hover {
  background-color: rgba(47, 110, 96, 0.95) !important;
}
.gloader {
  border-top-color: var(--accent) !important;
}
.gslide-iframe {
  background: var(--surface);
  border-radius: var(--radius-lg);
}
.gslide-description.gdesc-inner { font-family: var(--font-body) !important; }
.gslide-title { font-family: var(--font-heading) !important; }


/* ==========================================================================
   404 error page
   ========================================================================== */
.error-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-2xl) var(--space-md);
}
.error-page__inner {
  max-width: 520px;
}
.error-page__code {
  font-family: var(--font-heading);
  font-size: clamp(4rem, 12vw, 7rem);
  color: var(--accent);
  margin: 0;
  line-height: 1;
}
.error-page__title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2rem);
  color: var(--text);
  margin: var(--space-sm) 0 var(--space-md);
}
.error-page__lead {
  color: var(--text-muted);
  margin-bottom: var(--space-lg);
  line-height: 1.55;
}
.error-page__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-sm);
}


/* ==========================================================================
   tarteaucitron — minimal brand tweaks only.
   The granular settings modal uses tarteaucitron's own CSS (vendored at
   css/vendor/tarteaucitron.css). The original v1–v6 demos relied on those
   defaults too — we don't try to redesign the modal here.
   ========================================================================== */

/* Brand-tint the modal backdrop so it doesn't flash a harsh white over the page. */
#tarteaucitronRoot #tarteaucitronBack {
  background: rgba(26, 38, 34, 0.85) !important;   /* dark-sage haze (--footer-bg) */
  opacity: 1 !important;
}

/* Brand the focus ring (overrides tarteaucitron's default dashed blue). */
#tarteaucitronRoot a:focus-visible,
#tarteaucitronRoot button:focus-visible {
  outline: 3px solid #2f6e60 !important;
  outline-offset: 2px !important;
}
