/* ========================================
   Restaurante Luttec — Beira-Mar Theme
   Paleta: Navy / Teal / Gold / Sand / Coral
   ======================================== */

/* --- Design Tokens --- */
:root {
  --rest-navy:        #0D2137;
  --rest-navy-light:  #122D4A;
  --rest-teal:        #1A6B7C;
  --rest-teal-light:  #2A8A9E;
  --rest-gold:        #D4A853;
  --rest-gold-light:  #E8C37A;
  --rest-sand:        #F2EAD3;
  --rest-sand-dark:   #E5D9BC;
  --rest-coral:       #C65B3A;
  --rest-coral-light: #D97255;
  --rest-white:       #FAFAFA;
  --rest-text:        #1A2B3C;
  --rest-muted:       #5A7A8A;
  --rest-overlay:     rgba(13, 33, 55, 0.72);
  --rest-shadow:      rgba(13, 33, 55, 0.15);
  --rest-shadow-md:   rgba(13, 33, 55, 0.28);
  --rest-radius-sm:   8px;
  --rest-radius-md:   14px;
  --rest-radius-lg:   22px;
  --rest-radius-xl:   32px;
  --rest-transition:  0.25s ease;
  --rest-font-h:      'Playfair Display', Georgia, serif;
  --rest-font-b:      'Lato', 'Inter', sans-serif;
  --lang-bar-h:       36px;
}

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

/* =====================
   LANG BAR (6 idiomas)
   ===================== */
.lang-bar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: var(--lang-bar-h);
  background: var(--rest-navy);
  display: flex; align-items: center; justify-content: flex-end;
  padding: 0 20px; gap: 4px;
  border-bottom: 1px solid rgba(212,168,83,.18);
}
.lang-bar .lang-btn {
  background: transparent; border: none; cursor: pointer;
  color: rgba(255,255,255,.6); font-family: var(--rest-font-b);
  font-size: 11px; font-weight: 700; letter-spacing: .5px;
  padding: 4px 8px; border-radius: 4px;
  display: flex; align-items: center; gap: 5px;
  transition: color .2s, background .2s;
}
.lang-bar .lang-btn img { width: 16px; height: 12px; border-radius: 2px; }
.lang-bar .lang-btn.active,
.lang-bar .lang-btn:hover { color: var(--rest-gold); background: rgba(212,168,83,.12); }

/* =====================
   PORTFOLIO BREADCRUMB (landing)
   ===================== */
.rest-breadcrumb {
  background: var(--rest-sand); border-bottom: 1px solid var(--rest-sand-dark);
  padding: 10px 0; margin-top: var(--lang-bar-h);
}
.rest-breadcrumb .container {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--rest-font-b); font-size: 13px; color: var(--rest-muted);
}
.rest-breadcrumb a { color: var(--rest-teal); text-decoration: none; font-weight: 500; }
.rest-breadcrumb a:hover { color: var(--rest-coral); }
.rest-breadcrumb svg { width: 14px; height: 14px; flex-shrink: 0; opacity: .5; }
.rest-breadcrumb .breadcrumb-tag {
  margin-left: auto; background: var(--rest-coral); color: #fff;
  padding: 2px 10px; border-radius: 20px; font-size: 11px;
  font-weight: 700; letter-spacing: .5px; text-transform: uppercase;
}

/* =====================
   CONTAINER
   ===================== */
.rest-container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* =====================
   HERO — LANDING
   ===================== */
.rest-hero {
  position: relative; min-height: 96vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.rest-hero__bg {
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0?w=1600&h=1000&fit=crop&q=85');
  background-size: cover; background-position: center;
  transform-origin: center; transition: transform 12s ease-out;
  will-change: transform;
}
.rest-hero__bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(13,33,55,.82) 0%, rgba(13,33,55,.55) 60%, rgba(26,107,124,.45) 100%);
}
.rest-hero__content {
  position: relative; z-index: 2; text-align: center;
  padding: 120px 24px 80px; max-width: 800px; margin: 0 auto;
}
.rest-hero__eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(212,168,83,.15); border: 1px solid rgba(212,168,83,.3);
  color: var(--rest-gold); border-radius: 40px;
  font-family: var(--rest-font-b); font-size: 12px;
  font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 6px 18px; margin-bottom: 24px;
}
.rest-hero__eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--rest-gold); animation: pulse 2s infinite;
}
.rest-hero__title {
  font-family: var(--rest-font-h); font-size: clamp(2.6rem, 6vw, 4.5rem);
  font-weight: 700; color: #fff; line-height: 1.15; margin-bottom: 20px;
}
.rest-hero__title em { color: var(--rest-gold); font-style: italic; }
.rest-hero__subtitle {
  font-family: var(--rest-font-b); font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,.82); line-height: 1.7; margin-bottom: 40px;
  max-width: 580px; margin-left: auto; margin-right: auto;
}
.rest-hero__cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-rest-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--rest-coral); color: #fff;
  font-family: var(--rest-font-b); font-size: .95rem; font-weight: 700;
  padding: 14px 32px; border-radius: var(--rest-radius-lg);
  text-decoration: none; transition: background .2s, transform .2s;
  border: none; cursor: pointer;
}
.btn-rest-primary:hover { background: var(--rest-coral-light); transform: translateY(-2px); }
.btn-rest-primary svg { width: 20px; height: 20px; flex-shrink: 0; }
.btn-rest-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent; color: #fff;
  font-family: var(--rest-font-b); font-size: .95rem; font-weight: 600;
  padding: 14px 32px; border-radius: var(--rest-radius-lg);
  text-decoration: none; border: 1.5px solid rgba(255,255,255,.5);
  transition: border-color .2s, color .2s, transform .2s;
}
.btn-rest-ghost:hover { border-color: var(--rest-gold); color: var(--rest-gold); transform: translateY(-2px); }
.rest-hero__scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center;
  gap: 6px; color: rgba(255,255,255,.5);
  font-family: var(--rest-font-b); font-size: 11px; letter-spacing: 1.5px;
  text-transform: uppercase; animation: bounce 2.5s infinite;
}
.rest-hero__scroll svg { width: 20px; height: 20px; }

/* =====================
   SECTIONS
   ===================== */
.rest-section { padding: 80px 0; }
.rest-section--white { background: var(--rest-white); }
.rest-section--sand { background: var(--rest-sand); }
.rest-section--navy { background: var(--rest-navy); }
.rest-section-eyebrow {
  display: block; font-family: var(--rest-font-b);
  font-size: 11px; font-weight: 800; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--rest-teal); margin-bottom: 10px;
}
.rest-section--navy .rest-section-eyebrow { color: var(--rest-gold); }
.rest-section-title {
  font-family: var(--rest-font-h); font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700; color: var(--rest-text); line-height: 1.2; margin-bottom: 16px;
}
.rest-section--navy .rest-section-title { color: #fff; }
.rest-section-subtitle {
  font-family: var(--rest-font-b); font-size: 1.05rem;
  color: var(--rest-muted); line-height: 1.7; max-width: 580px;
}
.rest-section-header { text-align: center; margin-bottom: 48px; }
.rest-divider {
  width: 56px; height: 3px; border-radius: 2px;
  background: linear-gradient(90deg, var(--rest-teal), var(--rest-gold));
  margin: 16px auto 20px;
}
.rest-section-header .rest-divider { margin: 16px auto; }

/* =====================
   HIGHLIGHTS BAR
   ===================== */
.rest-highlights { padding: 56px 0; background: var(--rest-navy-light); }
.rest-highlights__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
}
.rest-highlight {
  text-align: center; padding: 20px;
  opacity: 0; transform: translateY(20px); transition: opacity .5s, transform .5s;
}
.rest-highlight.visible { opacity: 1; transform: none; }
.rest-highlight__icon {
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(26,107,124,.3); border: 1px solid rgba(26,107,124,.5);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.rest-highlight__icon svg { width: 24px; height: 24px; color: var(--rest-teal-light); }
.rest-highlight h3 {
  font-family: var(--rest-font-h); font-size: 1.05rem; font-weight: 700;
  color: #fff; margin-bottom: 6px;
}
.rest-highlight p {
  font-family: var(--rest-font-b); font-size: .88rem; color: rgba(255,255,255,.55); line-height: 1.5;
}

/* =====================
   ABOUT SECTION
   ===================== */
.rest-about { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.rest-about__img-wrap { position: relative; border-radius: var(--rest-radius-lg); overflow: hidden; }
.rest-about__img-main { width: 100%; height: 500px; object-fit: cover; display: block; border-radius: var(--rest-radius-lg); }
.rest-about__badge {
  position: absolute; bottom: 24px; right: 24px;
  background: var(--rest-navy); border: 2px solid var(--rest-gold);
  border-radius: var(--rest-radius-md); padding: 12px 20px;
  text-align: center; color: #fff;
}
.rest-about__badge strong {
  display: block; font-family: var(--rest-font-h);
  font-size: 2rem; font-weight: 700; color: var(--rest-gold);
}
.rest-about__badge span { font-family: var(--rest-font-b); font-size: .78rem; opacity: .8; }
.rest-about__body { font-family: var(--rest-font-b); font-size: 1.02rem; color: var(--rest-muted); line-height: 1.75; margin-bottom: 16px; }
.rest-about__features { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 28px 0; }
.rest-about__feature {
  display: flex; gap: 14px; align-items: flex-start; padding: 14px;
  background: var(--rest-sand); border-radius: var(--rest-radius-md);
}
.rest-about__feature-icon {
  width: 38px; height: 38px; flex-shrink: 0; border-radius: var(--rest-radius-sm);
  background: rgba(26,107,124,.12); display: flex; align-items: center; justify-content: center;
}
.rest-about__feature-icon svg { width: 18px; height: 18px; color: var(--rest-teal); }
.rest-about__feature h4 { font-family: var(--rest-font-b); font-size: .9rem; font-weight: 700; color: var(--rest-text); margin-bottom: 2px; }
.rest-about__feature p  { font-family: var(--rest-font-b); font-size: .82rem; color: var(--rest-muted); }

/* =====================
   DESTAQUES GRID
   ===================== */
.rest-destaques-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 24px;
}
.rest-item-card {
  background: var(--rest-white); border-radius: var(--rest-radius-lg);
  overflow: hidden; box-shadow: 0 4px 20px var(--rest-shadow);
  transition: transform .25s, box-shadow .25s; cursor: pointer;
}
.rest-item-card:hover { transform: translateY(-5px); box-shadow: 0 8px 32px var(--rest-shadow-md); }
.rest-item-card__img { width: 100%; height: 200px; object-fit: cover; display: block; }
.rest-item-card__body { padding: 16px 20px 20px; }
.rest-item-card__carta { font-family: var(--rest-font-b); font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--rest-teal); margin-bottom: 6px; }
.rest-item-card__name { font-family: var(--rest-font-h); font-size: 1.15rem; font-weight: 700; color: var(--rest-text); margin-bottom: 6px; line-height: 1.3; }
.rest-item-card__desc { font-family: var(--rest-font-b); font-size: .87rem; color: var(--rest-muted); line-height: 1.5; margin-bottom: 12px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.rest-item-card__footer { display: flex; align-items: center; justify-content: space-between; }
.rest-item-card__price { font-family: var(--rest-font-h); font-size: 1.2rem; font-weight: 700; color: var(--rest-coral); }
.rest-item-card__badges { display: flex; gap: 5px; flex-wrap: wrap; }
.badge-veg   { background: #e8f5e9; color: #2e7d32; }
.badge-vegan { background: #f3e5f5; color: #6a1b9a; }
.badge-gf    { background: #fff3e0; color: #e65100; }
.badge-lf    { background: #e3f2fd; color: #1565c0; }
.badge-spicy { background: #fce4ec; color: #c62828; }
.rest-item-card__badge {
  font-family: var(--rest-font-b); font-size: 10px; font-weight: 700;
  padding: 2px 7px; border-radius: 20px; letter-spacing: .3px;
}
.rest-item-card__allergens { display: flex; gap: 3px; flex-wrap: wrap; margin-top: 8px; }
.allergen-icon-sm { font-size: 13px; cursor: default; }

/* =====================
   CARTAS GRID (landing)
   ===================== */
.rest-cartas-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 20px;
}
.rest-carta-card {
  background: var(--rest-white); border: 1.5px solid var(--rest-sand-dark);
  border-radius: var(--rest-radius-lg); padding: 28px 20px;
  text-align: center; text-decoration: none;
  transition: border-color .25s, transform .25s, box-shadow .25s;
}
.rest-carta-card:hover { border-color: var(--rest-teal); transform: translateY(-4px); box-shadow: 0 8px 24px var(--rest-shadow); }
.rest-carta-card__icon { font-size: 2.4rem; display: block; margin-bottom: 12px; }
.rest-carta-card__name { font-family: var(--rest-font-h); font-size: 1.05rem; font-weight: 700; color: var(--rest-text); margin-bottom: 6px; }
.rest-carta-card__desc { font-family: var(--rest-font-b); font-size: .82rem; color: var(--rest-muted); }

/* =====================
   GALLERY
   ===================== */
.rest-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 280px 280px;
  gap: 12px; border-radius: var(--rest-radius-lg); overflow: hidden;
}
.rest-gallery__item { position: relative; overflow: hidden; }
.rest-gallery__item--tall { grid-row: 1 / 3; }
.rest-gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; display: block; }
.rest-gallery__item:hover img { transform: scale(1.06); }
.rest-gallery__overlay {
  position: absolute; inset: 0; background: linear-gradient(to top, rgba(13,33,55,.7), transparent 50%);
  display: flex; align-items: flex-end; padding: 18px;
  opacity: 0; transition: opacity .3s;
}
.rest-gallery__item:hover .rest-gallery__overlay { opacity: 1; }
.rest-gallery__caption { font-family: var(--rest-font-h); font-size: 1rem; font-style: italic; color: #fff; }

/* =====================
   CONTACT SECTION
   ===================== */
.rest-contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.rest-contact-card {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--rest-radius-lg); padding: 28px 24px; text-align: center;
}
.rest-contact-card__icon {
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(26,107,124,.3); border: 1px solid rgba(26,107,124,.5);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 16px;
}
.rest-contact-card__icon svg { width: 22px; height: 22px; color: var(--rest-teal-light); }
.rest-contact-card h3 { font-family: var(--rest-font-h); font-size: 1.05rem; font-weight: 700; color: #fff; margin-bottom: 8px; }
.rest-contact-card p { font-family: var(--rest-font-b); font-size: .9rem; color: rgba(255,255,255,.65); line-height: 1.6; }
.rest-contact-card a { color: var(--rest-gold); text-decoration: none; }
.rest-contact-card a:hover { color: var(--rest-gold-light); }

/* =====================
   FOOTER NOTE
   ===================== */
.rest-footer-note {
  background: var(--rest-navy); color: rgba(255,255,255,.55);
  padding: 20px 0; text-align: center;
  font-family: var(--rest-font-b); font-size: .82rem; line-height: 1.7;
}
.rest-footer-note a { color: var(--rest-gold); text-decoration: none; }
.rest-footer-note a:hover { color: var(--rest-gold-light); }
.rest-footer-social { display: flex; justify-content: center; gap: 10px; margin-bottom: 12px; }
.rest-footer-social__link {
  width: 34px; height: 34px; border-radius: 8px;
  background: rgba(255,255,255,.07); color: rgba(255,255,255,.55);
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, color .2s; text-decoration: none;
}
.rest-footer-social__link:hover { background: var(--rest-gold); color: var(--rest-navy); text-decoration: none; }

/* =====================
   WHATSAPP FLOAT
   ===================== */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 150;
  width: 54px; height: 54px; border-radius: 50%;
  background: #25D366; box-shadow: 0 4px 20px rgba(37,211,102,.4);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; transition: transform .2s, box-shadow .2s;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,.55); }
.wa-float svg { width: 26px; height: 26px; fill: #fff; }

/* =====================
   MENU PAGE — HEADER
   ===================== */
.menu-rest-header {
  background: var(--rest-navy); border-bottom: 1px solid rgba(212,168,83,.15);
  padding: 0; height: 64px; position: sticky;
  top: var(--lang-bar-h); z-index: 100;
}
.menu-rest-header__inner {
  max-width: 1180px; margin: 0 auto; padding: 0 24px;
  height: 100%; display: flex; align-items: center; justify-content: space-between;
}
.menu-rest-header__brand {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none; color: #fff;
}
.menu-rest-header__brand-icon {
  width: 38px; height: 38px; border-radius: var(--rest-radius-sm);
  background: linear-gradient(135deg, var(--rest-teal), var(--rest-navy-light));
  border: 1px solid rgba(212,168,83,.3);
  display: flex; align-items: center; justify-content: center;
}
.menu-rest-header__brand-icon svg { width: 20px; height: 20px; color: var(--rest-gold); }
.menu-rest-header__brand-name {
  font-family: var(--rest-font-h); font-size: 1.15rem; font-weight: 700; color: #fff;
  display: flex; flex-direction: column; line-height: 1.2;
}
.menu-rest-header__brand-name span { font-family: var(--rest-font-b); font-size: .72rem; font-weight: 400; color: rgba(255,255,255,.5); font-style: normal; }
.menu-lang-selector {
  display: flex; align-items: center; gap: 3px;
}
.menu-lang-btn {
  background: transparent; border: none; cursor: pointer; padding: 5px 7px;
  border-radius: var(--rest-radius-sm); display: flex; align-items: center; gap: 4px;
  color: rgba(255,255,255,.55); font-family: var(--rest-font-b); font-size: 11px; font-weight: 700;
  transition: color .2s, background .2s;
}
.menu-lang-btn img { width: 18px; height: 13px; border-radius: 2px; }
.menu-lang-btn.active,
.menu-lang-btn:hover { color: var(--rest-gold); background: rgba(212,168,83,.12); }

/* =====================
   MENU PAGE — HERO BANNER
   ===================== */
.menu-rest-hero {
  position: relative; height: 240px; overflow: hidden;
  background-image: url('https://images.unsplash.com/photo-1559339352-11d035aa65de?w=1400&h=500&fit=crop&q=80');
  background-size: cover; background-position: center;
}
.menu-rest-hero::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, var(--rest-overlay), rgba(13,33,55,.85));
}
.menu-rest-hero__content {
  position: relative; z-index: 1; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 0 24px;
}
.menu-rest-hero__tag {
  font-family: var(--rest-font-b); font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; color: var(--rest-gold);
  margin-bottom: 10px;
}
.menu-rest-hero__title {
  font-family: var(--rest-font-h); font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700; color: #fff; margin-bottom: 8px;
}
.menu-rest-hero__subtitle {
  font-family: var(--rest-font-b); font-size: 1rem;
  color: rgba(255,255,255,.75);
}

/* =====================
   MENU PAGE — MAIN BODY
   ===================== */
.menu-rest-body { max-width: 1180px; margin: 0 auto; padding: 40px 24px 80px; }

/* Search bar */
.menu-search-wrap { margin-bottom: 32px; }
.menu-search-bar {
  display: flex; gap: 12px; align-items: center;
  background: var(--rest-white); border: 1.5px solid var(--rest-sand-dark);
  border-radius: var(--rest-radius-lg); padding: 10px 18px;
  box-shadow: 0 2px 12px var(--rest-shadow);
  max-width: 520px;
}
.menu-search-bar svg { width: 18px; height: 18px; color: var(--rest-muted); flex-shrink: 0; }
.menu-search-bar input {
  flex: 1; border: none; outline: none; background: transparent;
  font-family: var(--rest-font-b); font-size: .95rem; color: var(--rest-text);
}
.menu-search-bar input::placeholder { color: var(--rest-muted); }

.menu-main {
  max-width: 1180px;
  margin: 0 auto;
  padding: 40px 24px 80px;
}

/* View: Initial (destaques + cartas) */
.menu-section-title {
  font-family: var(--rest-font-h); font-size: 1.6rem; font-weight: 700;
  color: var(--rest-text); margin-bottom: 6px; display: flex; align-items: center; gap: 10px;
}
.menu-section-eyebrow {
  font-family: var(--rest-font-b); font-size: 11px; font-weight: 800;
  letter-spacing: 2px; text-transform: uppercase; color: var(--rest-teal);
  margin-bottom: 6px; display: block;
}
.menu-block { margin-bottom: 56px; }

/* Cartas cards on menu page */
.menu-cartas-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 16px;
}
.menu-carta-card {
  background: var(--rest-white); border: 1.5px solid var(--rest-sand-dark);
  border-radius: var(--rest-radius-lg); padding: 22px 16px;
  text-align: center; cursor: pointer;
  transition: border-color .2s, transform .2s, box-shadow .2s;
  font-family: var(--rest-font-b); text-decoration: none; display: block;
}
.menu-carta-card:hover { border-color: var(--rest-teal); transform: translateY(-3px); box-shadow: 0 6px 20px var(--rest-shadow); }
.menu-carta-card.active { border-color: var(--rest-coral); background: rgba(198,91,58,.05); }
.menu-carta-card__icon { font-size: 2rem; display: block; margin-bottom: 10px; }
.menu-carta-card__name { font-family: var(--rest-font-h); font-size: .95rem; font-weight: 700; color: var(--rest-text); margin-bottom: 4px; }
.menu-carta-card__count { font-size: .78rem; color: var(--rest-muted); }

/* Carta filter view — breadcrumb */
.menu-carta-breadcrumb {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 0 20px;
  font-family: var(--rest-font-b); font-size: .88rem; color: var(--rest-muted);
}
.menu-carta-back {
  display: inline-flex; align-items: center; gap: 6px;
  background: transparent; border: none; cursor: pointer;
  color: var(--rest-teal); font-family: var(--rest-font-b); font-size: .88rem;
  font-weight: 700; padding: 6px 14px; border-radius: var(--rest-radius-sm);
  border: 1.5px solid var(--rest-teal); transition: background .2s, color .2s;
}
.menu-carta-back:hover { background: var(--rest-teal); color: #fff; }
.menu-carta-title {
  font-family: var(--rest-font-h); font-size: 1.5rem; font-weight: 700;
  color: var(--rest-text); display: flex; align-items: center; gap: 10px; margin-bottom: 24px;
}

/* Items grid on menu page */
.menu-items-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 22px;
}

/* Menu Item card (same as rest-item-card but scoped to menu page) */
.menu-item-card {
  background: var(--rest-white); border-radius: var(--rest-radius-lg);
  overflow: hidden; box-shadow: 0 4px 16px var(--rest-shadow);
  transition: transform .25s, box-shadow .25s; cursor: pointer;
}
.menu-item-card:hover { transform: translateY(-4px); box-shadow: 0 8px 28px var(--rest-shadow-md); }
.menu-item-card__img { width: 100%; height: 190px; object-fit: cover; display: block; }
.menu-item-card__img--placeholder { background: var(--rest-navy); display: flex; align-items: center; justify-content: center; }
.menu-item-card__img--placeholder::before { content: '🍽️'; font-size: 2.4rem; opacity: .35; filter: grayscale(1); }
.menu-item-card__body { padding: 14px 18px 18px; }
.menu-item-card__carta { font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--rest-teal); font-family: var(--rest-font-b); margin-bottom: 4px; }
.menu-item-card__name { font-family: var(--rest-font-h); font-size: 1.1rem; font-weight: 700; color: var(--rest-text); margin-bottom: 4px; line-height: 1.3; }
.menu-item-card__desc { font-family: var(--rest-font-b); font-size: .84rem; color: var(--rest-muted); line-height: 1.5; margin-bottom: 10px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.menu-item-card__footer { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.menu-item-card__price { font-family: var(--rest-font-h); font-size: 1.15rem; font-weight: 700; color: var(--rest-coral); white-space: nowrap; }
.menu-item-card__badges { display: flex; gap: 4px; flex-wrap: wrap; }
.menu-item-card__allergens { display: flex; gap: 3px; flex-wrap: wrap; margin-top: 8px; }
.destaque-ribbon {
  position: absolute; top: 12px; left: 12px;
  background: var(--rest-gold); color: var(--rest-navy);
  font-family: var(--rest-font-b); font-size: 10px; font-weight: 800;
  letter-spacing: .5px; text-transform: uppercase;
  padding: 3px 10px; border-radius: 20px;
}
.menu-item-card { position: relative; }

/* =====================
   MODAL (item detail)
   ===================== */
.modal-overlay {
  position: fixed; inset: 0; z-index: 500;
  background: rgba(13,33,55,.75); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  padding: max(env(safe-area-inset-top), 20px) 20px 20px;
  opacity: 0; visibility: hidden; transition: opacity .25s, visibility .25s;
}
.modal-overlay.open { opacity: 1; visibility: visible; }
.modal-rest {
  background: var(--rest-white); border-radius: var(--rest-radius-lg);
  width: 100%; max-width: 820px; max-height: 90dvh;
  overflow-y: auto; position: relative;
  display: grid; grid-template-columns: 1fr 1fr;
}
.modal-rest__media { position: relative; }
.modal-rest__img { width: 100%; height: 380px; object-fit: cover; display: block; border-radius: var(--rest-radius-lg) 0 0 0; }
.modal-rest__img--placeholder { background: var(--rest-navy); display: flex; align-items: center; justify-content: center; }
.modal-rest__img--placeholder::before { content: '🍽️'; font-size: 3rem; opacity: .3; filter: grayscale(1); }
.modal-rest__video { width: 100%; height: 380px; border: none; display: block; }
/* Gallery */
.modal-rest__gallery { position: relative; }
.gallery__main { position: relative; overflow: hidden; }
.gallery__main-img { width: 100%; height: 380px; object-fit: cover; display: block; border-radius: var(--rest-radius-lg) 0 0 0; transition: opacity .15s; }
.gallery__nav { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(0,0,0,.55); color: #fff; border: none; width: 38px; height: 64px; font-size: 1.8rem; line-height: 1; cursor: pointer; z-index: 2; transition: background .2s; }
.gallery__nav:hover { background: rgba(0,0,0,.82); }
.gallery__nav--prev { left: 0; border-radius: 0 6px 6px 0; }
.gallery__nav--next { right: 0; border-radius: 6px 0 0 6px; }
.gallery__counter { position: absolute; bottom: 10px; right: 12px; background: rgba(0,0,0,.55); color: #fff; font-size: .72rem; padding: 2px 9px; border-radius: 20px; pointer-events: none; }
.gallery__thumbs { display: flex; gap: 6px; padding: 8px 10px; background: rgba(0,0,0,.35); overflow-x: auto; scrollbar-width: thin; }
.gallery__thumb { width: 72px; height: 50px; object-fit: cover; border-radius: 4px; cursor: pointer; opacity: .5; border: 2px solid transparent; transition: opacity .2s, border-color .2s; flex-shrink: 0; }
.gallery__thumb.active, .gallery__thumb:hover { opacity: 1; border-color: var(--rest-gold); }
.modal-rest__info { padding: 28px 28px 24px; overflow-y: auto; }
.modal-rest__carta { font-size: 11px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase; color: var(--rest-teal); font-family: var(--rest-font-b); margin-bottom: 6px; }
.modal-rest__name { font-family: var(--rest-font-h); font-size: 1.6rem; font-weight: 700; color: var(--rest-text); margin-bottom: 8px; line-height: 1.25; }
.modal-rest__desc { font-family: var(--rest-font-b); font-size: .95rem; color: var(--rest-muted); line-height: 1.7; margin-bottom: 16px; }
.modal-rest__price { font-family: var(--rest-font-h); font-size: 1.5rem; font-weight: 700; color: var(--rest-coral); margin-bottom: 4px; }
.modal-rest__price-half { font-family: var(--rest-font-b); font-size: .85rem; color: var(--rest-muted); margin-bottom: 16px; }
.modal-rest__badges { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 14px; }
.modal-rest__full { grid-column: 1 / -1; padding: 0 28px 28px; border-top: 1px solid var(--rest-sand-dark); }
.modal-rest__section-title { font-family: var(--rest-font-b); font-size: .8rem; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; color: var(--rest-muted); margin: 18px 0 10px; }
.modal-rest__ingredients { display: flex; gap: 7px; flex-wrap: wrap; }
.ingredient-tag {
  font-family: var(--rest-font-b); font-size: .8rem;
  background: var(--rest-sand); color: var(--rest-text);
  padding: 3px 10px; border-radius: 20px;
}
.modal-rest__allergen-grid { display: flex; flex-wrap: wrap; gap: 8px; }
.allergen-cell {
  text-align: center; padding: 8px 4px; border-radius: var(--rest-radius-sm); min-width: 72px; flex: 0 0 auto;
  background: var(--rest-sand); transition: background .2s;
  display: flex; flex-direction: column; align-items: center; gap: 4px;
}
.allergen-cell.present { background: #fff3e0; border: 1.5px solid #ffcc02; }
.allergen-cell__icon { font-size: 1.2rem; }
.allergen-cell__name { font-family: var(--rest-font-b); font-size: .68rem; color: var(--rest-muted); line-height: 1.2; text-align: center; }
.allergen-cell.present .allergen-cell__name { color: var(--rest-coral); font-weight: 700; }
.modal-rest__meta { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 12px; }
.modal-meta-item { font-family: var(--rest-font-b); font-size: .85rem; color: var(--rest-muted); }
.modal-meta-item strong { color: var(--rest-text); }
.modal-close {
  position: absolute; top: 14px; right: 14px; z-index: 10;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(13,33,55,.6); border: none; cursor: pointer;
  color: #fff; font-size: 1.2rem; display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.modal-close:hover { background: var(--rest-coral); }
.modal-iva-note { font-family: var(--rest-font-b); font-size: .75rem; color: var(--rest-muted); margin-top: 10px; }

/* =====================
   MENU FOOTER
   ===================== */
.menu-rest-footer {
  background: var(--rest-navy); color: rgba(255,255,255,.55);
  padding: 24px; text-align: center;
  font-family: var(--rest-font-b); font-size: .82rem; line-height: 1.8;
}
.menu-rest-footer a { color: var(--rest-gold); text-decoration: none; }
.menu-rest-footer a:hover { color: var(--rest-gold-light); }
.menu-rest-footer__inner {
  max-width: 1180px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
}
.menu-rest-footer__iva {
  font-family: var(--rest-font-b); font-size: .82rem;
  color: rgba(255,255,255,.55); margin: 0;
}
.menu-rest-footer__back {
  font-family: var(--rest-font-b); font-size: .85rem; font-weight: 600;
  color: var(--rest-gold); text-decoration: none; white-space: nowrap;
}
.menu-rest-footer__back:hover { color: var(--rest-gold-light); }

/* Loading / empty state */
.menu-loading { display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 60px 20px; gap: 12px; color: var(--rest-muted); font-family: var(--rest-font-b); }
.menu-loading svg { animation: spin 1s linear infinite; opacity: .5; }
.menu-empty { text-align: center; padding: 48px 20px; color: var(--rest-muted); font-family: var(--rest-font-b); }

/* =====================
   ADMIN STYLES
   ===================== */
.admin-body { background: #0f1825; color: #e2e8f0; font-family: var(--rest-font-b); min-height: 100vh; }

.admin-login-wrap { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 24px; background: var(--rest-navy); }
.admin-login-card { background: var(--rest-navy-light); border: 1px solid rgba(212,168,83,.2); border-radius: var(--rest-radius-lg); padding: 40px 36px; width: 100%; max-width: 400px; text-align: center; }
.admin-login-icon { width: 60px; height: 60px; border-radius: 50%; background: rgba(26,107,124,.3); border: 2px solid rgba(26,107,124,.5); display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.admin-login-icon svg { width: 28px; height: 28px; color: var(--rest-teal-light); }
.admin-login-card h1 { font-family: var(--rest-font-h); font-size: 1.7rem; font-weight: 700; color: #fff; margin-bottom: 4px; }
.admin-login-card p { font-size: .85rem; color: rgba(255,255,255,.5); margin-bottom: 24px; }

.admin-top-bar { background: var(--rest-navy-light); border-bottom: 1px solid rgba(212,168,83,.12); padding: 0 24px; height: 56px; display: flex; align-items: center; justify-content: space-between; position: sticky; top: 0; z-index: 100; }
.admin-top-bar__brand { display: flex; align-items: center; gap: 10px; color: #fff; }
.admin-top-bar__brand svg { color: var(--rest-teal-light); }
.admin-top-bar__brand strong { font-family: var(--rest-font-h); font-size: 1.1rem; }
.admin-top-bar__brand span { font-size: .8rem; color: rgba(255,255,255,.45); margin-left: 4px; }
.admin-top-bar__actions { display: flex; align-items: center; gap: 10px; }

.admin-tabs-nav { background: rgba(13,33,55,.6); border-bottom: 1px solid rgba(255,255,255,.08); padding: 0 24px; display: flex; gap: 4px; }
.admin-tab-btn {
  background: transparent; border: none; cursor: pointer;
  color: rgba(255,255,255,.5); font-family: var(--rest-font-b);
  font-size: .88rem; font-weight: 600; padding: 14px 20px;
  border-bottom: 2.5px solid transparent; transition: color .2s, border-color .2s;
}
.admin-tab-btn.active { color: var(--rest-gold); border-bottom-color: var(--rest-gold); }
.admin-tab-btn:hover { color: rgba(255,255,255,.8); }
.admin-tab-panel { display: none; padding: 24px; }
.admin-tab-panel.active { display: block; }

.admin-actions-bar { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 20px; flex-wrap: wrap; }
.admin-actions-bar__left { display: flex; gap: 10px; flex-wrap: wrap; }
.admin-actions-bar__right { display: flex; gap: 10px; flex-wrap: wrap; }

.admin-panel { background: rgba(18,45,74,.8); border: 1px solid rgba(212,168,83,.15); border-radius: var(--rest-radius-lg); padding: 24px; margin-bottom: 24px; }
.admin-panel.hidden { display: none; }
.admin-panel-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.admin-panel-title { font-family: var(--rest-font-h); font-size: 1.2rem; font-weight: 700; color: #fff; }
.btn-panel-close { background: transparent; border: none; cursor: pointer; color: rgba(255,255,255,.5); font-size: 1.1rem; padding: 4px; transition: color .2s; }
.btn-panel-close:hover { color: var(--rest-coral); }

.admin-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.admin-form-grid .full { grid-column: 1/-1; }
.form-fieldset { margin-top: 20px; padding: 16px; border: 1px solid rgba(255,255,255,.08); border-radius: var(--rest-radius-md); }
.form-fieldset legend { font-family: var(--rest-font-b); font-size: .8rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--rest-teal-light); padding: 0 8px; }
.form-label { display: block; font-size: .82rem; font-weight: 600; color: rgba(255,255,255,.65); margin-bottom: 5px; }
.form-input, .form-select, .form-textarea {
  width: 100%; background: rgba(13,33,55,.7); border: 1.5px solid rgba(255,255,255,.12);
  border-radius: var(--rest-radius-sm); color: #e2e8f0; padding: 9px 13px;
  font-family: var(--rest-font-b); font-size: .9rem; transition: border-color .2s;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { outline: none; border-color: var(--rest-teal); }
.form-textarea { resize: vertical; min-height: 70px; }
.form-select option { background: #0f1825; }
.form-check-label { display: flex; align-items: center; gap: 8px; font-size: .88rem; color: rgba(255,255,255,.7); cursor: pointer; }
.form-check-label input[type="checkbox"] { width: 16px; height: 16px; cursor: pointer; accent-color: var(--rest-teal); }
.form-input-sm { font-size: 16px; } /* prevent iOS zoom */

.lang-tabs { display: flex; gap: 4px; margin-bottom: 16px; flex-wrap: wrap; }
.lang-tab {
  background: rgba(255,255,255,.05); border: 1.5px solid rgba(255,255,255,.1);
  border-radius: var(--rest-radius-sm); color: rgba(255,255,255,.5);
  font-family: var(--rest-font-b); font-size: .82rem; font-weight: 600;
  padding: 6px 14px; cursor: pointer; transition: all .2s;
}
.lang-tab.active { background: rgba(26,107,124,.3); border-color: var(--rest-teal); color: var(--rest-teal-light); }
.lang-panel { display: none; }
.lang-panel.active { display: block; }

/* Allergen checkboxes */
.allergen-checks { display: grid; grid-template-columns: repeat(7, 1fr); gap: 8px; margin-top: 10px; }
.allergen-check {
  background: rgba(13,33,55,.5); border: 1.5px solid rgba(255,255,255,.1);
  border-radius: var(--rest-radius-sm); padding: 10px 6px;
  display: flex; flex-direction: column; align-items: center; gap: 5px;
  cursor: pointer; transition: border-color .2s, background .2s;
}
.allergen-check:has(input:checked) { background: rgba(26,107,124,.25); border-color: var(--rest-teal); }
.allergen-check input { display: none; }
.allergen-check__icon { font-size: 1.4rem; pointer-events: none; }
.allergen-check__label { font-family: var(--rest-font-b); font-size: .67rem; color: rgba(255,255,255,.55); text-align: center; line-height: 1.2; pointer-events: none; }
.allergen-check:has(input:checked) .allergen-check__label { color: var(--rest-teal-light); }

/* Ingredient / Tag chips */
.tag-input-wrap { display: flex; gap: 8px; align-items: center; margin-bottom: 10px; }
.tag-input-wrap .form-input { flex: 1; }
.tag-chips { display: flex; gap: 7px; flex-wrap: wrap; }
.tag-chip {
  background: rgba(26,107,124,.25); border: 1px solid rgba(26,107,124,.4);
  border-radius: 20px; padding: 4px 12px 4px 14px;
  font-family: var(--rest-font-b); font-size: .8rem; color: var(--rest-teal-light);
  display: flex; align-items: center; gap: 7px;
}
.tag-chip__remove { background: transparent; border: none; cursor: pointer; color: inherit; font-size: 1rem; opacity: .6; line-height: 1; padding: 0; }
.tag-chip__remove:hover { opacity: 1; color: var(--rest-coral); }

/* Admin table */
.admin-table-wrap { overflow-x: auto; }
.admin-table { width: 100%; border-collapse: collapse; font-size: .88rem; }
.admin-table th { background: rgba(13,33,55,.8); color: rgba(255,255,255,.65); font-size: .75rem; font-weight: 700; letter-spacing: .7px; text-transform: uppercase; padding: 11px 14px; text-align: left; border-bottom: 1px solid rgba(255,255,255,.07); }
.admin-table td { padding: 12px 14px; border-bottom: 1px solid rgba(255,255,255,.05); vertical-align: middle; }
.admin-table tr:hover td { background: rgba(255,255,255,.02); }
.admin-table tr.inactive td { opacity: .5; }
.cat-badge { background: rgba(26,107,124,.25); color: var(--rest-teal-light); font-size: .75rem; font-weight: 700; padding: 2px 9px; border-radius: 20px; white-space: nowrap; }
.estado-badge { font-size: .75rem; font-weight: 700; padding: 3px 9px; border-radius: 20px; white-space: nowrap; }
.estado-badge--ativo    { background: rgba(46,125,50,.2); color: #81c784; }
.estado-badge--inativo  { background: rgba(255,255,255,.07); color: rgba(255,255,255,.4); }
.estado-badge--popular  { background: rgba(212,168,83,.2); color: var(--rest-gold); }
.btn-action { background: transparent; border: none; cursor: pointer; font-size: .8rem; font-weight: 600; padding: 4px 10px; border-radius: var(--rest-radius-sm); transition: background .2s; }
.btn-edit   { color: var(--rest-teal-light); border: 1px solid rgba(26,107,124,.4); }
.btn-edit:hover { background: rgba(26,107,124,.3); }
.btn-delete { color: #ef9a9a; border: 1px solid rgba(239,154,154,.25); margin-left: 6px; }
.btn-delete:hover { background: rgba(198,91,58,.2); }

/* Buttons */
.btn { display: inline-flex; align-items: center; gap: 7px; font-family: var(--rest-font-b); font-weight: 700; border-radius: var(--rest-radius-sm); border: none; cursor: pointer; transition: background .2s, transform .1s; text-decoration: none; }
.btn--primary { background: var(--rest-teal); color: #fff; padding: 10px 20px; font-size: .9rem; }
.btn--primary:hover { background: var(--rest-teal-light); }
.btn--ghost { background: transparent; color: rgba(255,255,255,.7); border: 1.5px solid rgba(255,255,255,.15); padding: 9px 18px; font-size: .88rem; }
.btn--ghost:hover { border-color: rgba(255,255,255,.4); color: #fff; }
.btn--sm { padding: 7px 14px; font-size: .82rem; }
.btn--danger { background: var(--rest-coral); color: #fff; padding: 10px 20px; font-size: .9rem; }
.btn--danger:hover { background: var(--rest-coral-light); }
.btn--ai { background: rgba(212,168,83,.12); color: var(--rest-gold); border: 1.5px solid rgba(212,168,83,.28); padding: 9px 18px; font-size: .88rem; }
.btn--ai:hover { background: rgba(212,168,83,.22); border-color: var(--rest-gold); }
.btn--ai:disabled { opacity: .45; cursor: not-allowed; }
.btn-admin-link { color: rgba(255,255,255,.65); font-size: .82rem; text-decoration: none; transition: color .2s; }
.btn-admin-link:hover { color: var(--rest-gold); }

/* Toast */
.toast { position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%); z-index: 9999; padding: 12px 24px; border-radius: var(--rest-radius-md); font-family: var(--rest-font-b); font-size: .9rem; font-weight: 600; pointer-events: none; animation: toastIn .3s ease; white-space: nowrap; }
.toast--ok  { background: #1b5e20; color: #a5d6a7; border: 1px solid #2e7d32; }
.toast--err { background: #4a0000; color: #ef9a9a; border: 1px solid #7b0000; }
.toast--info { background: rgba(26,107,124,.9); color: #b2ebf2; border: 1px solid var(--rest-teal); }

/* Image preview */
.img-preview { max-height: 120px; border-radius: var(--rest-radius-sm); object-fit: cover; margin-top: 8px; display: block; }
/* Admin — imagens extras */
.imagem-extra-thumb-wrap { position: relative; display: inline-block; }
.imagem-extra-thumb { width: 72px; height: 56px; object-fit: cover; border-radius: 6px; display: block; }
.imagem-extra-thumb__remove { position: absolute; top: -6px; right: -6px; width: 20px; height: 20px; border-radius: 50%; background: var(--rest-coral); color: #fff; border: none; font-size: .65rem; cursor: pointer; display: flex; align-items: center; justify-content: center; padding: 0; line-height: 1; }
.imagem-extra-thumb__remove:hover { background: #a03020; }

/* Session warning */
#session-warning { display: none; background: #7b2d2d; color: #fff; padding: 10px 20px; text-align: center; font-size: .85rem; }
.hidden { display: none !important; }

/* =====================
   REVEAL ANIMATIONS
   ===================== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .55s ease, transform .55s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal--delay-1 { transition-delay: .12s; }
.reveal--delay-2 { transition-delay: .24s; }
.reveal--delay-3 { transition-delay: .36s; }

/* =====================
   KEYFRAMES
   ===================== */
@keyframes spin    { to { transform: rotate(360deg); } }
@keyframes bounce  { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(8px)} }
@keyframes pulse   { 0%,100%{opacity:1} 50%{opacity:.4} }
@keyframes toastIn { from{opacity:0;transform:translateX(-50%) translateY(10px)} to{opacity:1;transform:translateX(-50%) translateY(0)} }

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 992px) {
  .rest-about { grid-template-columns: 1fr; gap: 40px; }
  .rest-highlights__grid { grid-template-columns: repeat(2, 1fr); }
  .rest-contact-grid { grid-template-columns: 1fr 1fr; }
  .rest-gallery { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .rest-gallery__item--tall { grid-row: auto; }
  .allergen-checks { grid-template-columns: repeat(7, 1fr); }
  .modal-rest { grid-template-columns: 1fr; }
  .modal-rest__img { height: 240px; border-radius: var(--rest-radius-lg) var(--rest-radius-lg) 0 0; }
  .modal-rest__video { height: 240px; }
  .gallery__main-img { height: 240px; border-radius: var(--rest-radius-lg) var(--rest-radius-lg) 0 0; }
  .gallery__nav { height: 48px; width: 32px; font-size: 1.4rem; }
  .modal-rest__full { grid-column: 1; }
  .admin-form-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .rest-hero__title { font-size: 2.2rem; }
  .rest-highlights__grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .rest-gallery { grid-template-columns: 1fr; }
  .rest-about__features { grid-template-columns: 1fr; }
  .rest-contact-grid { grid-template-columns: 1fr; }
  .rest-cartas-grid { grid-template-columns: repeat(2, 1fr); }
  .menu-cartas-grid { grid-template-columns: repeat(2, 1fr); }
  .menu-items-grid { grid-template-columns: 1fr; }
  .allergen-checks { grid-template-columns: repeat(4, 1fr); }
  .modal-rest { max-height: 96dvh; }
  .admin-tabs-nav { overflow-x: auto; }
  .admin-form-grid { grid-template-columns: 1fr; }
  .form-input, .form-select, .form-textarea { font-size: 16px; }
  .menu-rest-header__brand-name { display: none; }
}
@media (max-width: 480px) {
  .rest-highlights__grid { grid-template-columns: 1fr; }
  .rest-cartas-grid { grid-template-columns: 1fr; }
  .menu-cartas-grid { grid-template-columns: repeat(2, 1fr); }
  .allergen-checks { grid-template-columns: repeat(4, 1fr); }
}
