/* ============================================================
   FRANGO KING — Design System
   Display: Anton · Body: Work Sans
   ============================================================ */

.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;
}

:root {
  /* Paleta */
  --ink:        #160B06;
  --ink-2:      #2A1207;
  --wine:       #4A0710;
  --wine-2:     #6E0A18;
  --red:        #E11D33;
  --red-deep:   #A60E1E;
  --gold:       #FFB90C;
  --gold-deep:  #D99A00;
  --gold-soft:  #FFE9AD;
  --cream:      #FFF5E0;
  --paper:      #FFFFFF;
  --line:       #EFE2C4;
  --muted:      #7A684A;
  --muted-2:    #726242;
  --on-dark:    #F7EBD2;

  /* Formas */
  --radius: 18px;
  --radius-lg: 24px;
  --shadow-sm: 0 6px 16px rgba(22,11,6,.08);
  --shadow-md: 0 14px 30px rgba(22,11,6,.14);
  --shadow-lg: 0 30px 70px rgba(0,0,0,.38);
  --shadow-red: 0 10px 24px rgba(225,29,51,.38);

  --font-display: 'Anton', 'Arial Narrow', 'Impact', 'Roboto Condensed', sans-serif;
  --font-body: 'Work Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;

  --header-h: 74px;
}

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

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.6;
}

h1, h2, h3, .display {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: .5px;
  line-height: 1.08;
  text-wrap: balance;
}
h2 { text-wrap: balance; }

img { max-width: 100%; display: block; }
::selection { background: var(--gold); color: var(--ink); }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }
input { font-family: inherit; }

.wrap { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

[hidden] { display: none !important; }

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute; left: 16px; top: -60px;
  background: var(--ink); color: #fff; padding: 10px 18px;
  border-radius: 100px; z-index: 200; font-weight: 700;
  transition: top .2s ease;
}
.skip-link:focus { top: 12px; }

/* ---------- Botões ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 28px; border-radius: 100px;
  font-weight: 800; font-size: 15.5px; line-height: 1;
  white-space: nowrap;
  position: relative; overflow: hidden;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
}
.btn::after, .add-btn::after {
  content: ""; position: absolute; top: 0; left: -150%;
  width: 55%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.45), transparent);
  transform: skewX(-20deg);
  transition: left .55s ease;
  pointer-events: none;
}
.btn:hover::after, .add-btn:hover::after { left: 160%; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0) scale(.98); }

.btn--primary {
  background: var(--red); color: #fff;
  box-shadow: var(--shadow-red);
}
.btn--primary:hover { background: var(--red-deep); box-shadow: 0 14px 30px rgba(225,29,51,.45); }

.btn--ghost {
  background: rgba(255,255,255,.06); color: #fff;
  border: 2px solid rgba(255,240,220,.35);
}
.btn--ghost:hover { border-color: var(--gold); color: var(--gold-soft); }

.btn--gold {
  background: var(--gold); color: var(--ink);
  box-shadow: 0 12px 28px rgba(255,185,12,.35);
}
.btn--gold:hover { background: var(--gold-soft); }

.btn--soft {
  background: var(--cream); color: var(--ink);
  border: 2px solid var(--line);
}
.btn--soft:hover { background: var(--gold-soft); border-color: var(--gold); }

.btn--block { width: 100%; }

.btn--header {
  background: var(--red); color: #fff; padding: 12px 20px;
  font-size: 14px; box-shadow: 0 6px 16px rgba(225,29,51,.35);
}
.btn--header:hover { background: var(--red-deep); }

.btn:disabled {
  opacity: .5; cursor: not-allowed; transform: none !important;
}
.btn:disabled::after { display: none; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: var(--ink);
  border-bottom: 3px solid var(--gold);
  transition: box-shadow .25s ease;
}
.site-header.scrolled { box-shadow: 0 14px 34px rgba(0,0,0,.38); }
.scroll-progress {
  position: absolute; top: 0; left: 0; height: 3px; width: 0;
  background: linear-gradient(90deg, var(--gold), var(--red));
  z-index: 2;
}
.header-inner {
  min-height: var(--header-h);
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding-top: 10px; padding-bottom: 10px;
}

.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--gold); color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 17px; letter-spacing: 1px;
  box-shadow: 0 0 0 3px var(--ink), 0 0 0 5px var(--gold);
  flex-shrink: 0;
}
.brand-mark img {
  width: 100%; height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}
.brand-text { color: #fff; line-height: 1; }
.brand-text b { font-family: var(--font-display); font-size: 19px; letter-spacing: 1px; }
.brand-text small {
  display: block; margin-top: 4px;
  font-family: var(--font-body); font-weight: 700;
  font-size: 10.5px; letter-spacing: 1.4px; text-transform: uppercase;
  color: var(--gold-soft);
}

.site-nav { display: flex; gap: 6px; }
.site-nav a {
  color: var(--on-dark); font-weight: 600; font-size: 14.5px;
  padding: 8px 14px; border-radius: 100px;
  transition: color .15s ease, background .15s ease;
}
.site-nav a:hover { color: var(--gold); background: rgba(255,255,255,.06); }

/* ---------- Menu mobile (hambúrguer) ---------- */
.nav-toggle {
  display: none;
  width: 46px; height: 46px; border-radius: 12px;
  background: rgba(255,255,255,.07);
  border: 2px solid rgba(255,240,220,.25);
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
  flex-shrink: 0;
  transition: background .15s ease, border-color .15s ease, transform .15s ease;
}
.nav-toggle:hover { background: rgba(255,255,255,.13); border-color: var(--gold); }
.nav-toggle-bar {
  width: 20px; height: 2.5px; border-radius: 3px;
  background: var(--gold-soft);
  transition: transform .25s ease, opacity .2s ease;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.mobile-nav {
  z-index: 65;
  background: var(--ink);
  border-bottom: 3px solid var(--gold);
  padding: 12px 20px 18px;
  display: flex; flex-direction: column;
  box-shadow: 0 24px 40px rgba(0,0,0,.35);
}
.mobile-nav[hidden] { display: none; }
.mobile-nav a {
  color: var(--on-dark); font-weight: 700; font-size: 16px;
  padding: 13px 16px; border-radius: 12px;
  border-bottom: 1px solid rgba(255,240,220,.09);
  transition: color .15s ease, background .15s ease, padding-left .2s ease;
}
.mobile-nav a:hover { color: var(--gold); background: rgba(255,255,255,.06); padding-left: 22px; }
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav-wa {
  margin-top: 8px;
  display: inline-flex; align-items: center; gap: 9px;
  color: #fff; background: #25D366; border-radius: 100px;
  justify-content: center; border: none !important;
}
.mobile-nav-wa:hover { color: #0B3D22 !important; }
body.nav-open { overflow: hidden; }

@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; }
}
@media (min-width: 901px) {
  .mobile-nav { display: none; }
}

/* ---------- Status de funcionamento ---------- */
.status-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 100px;
  padding: 8px 14px;
  color: var(--on-dark); font-size: 13px; font-weight: 600;
  cursor: default; white-space: nowrap;
  transition: border-color .15s ease, background .15s ease;
}
.status-pill:hover { border-color: var(--gold); }
.status-dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--muted);
  flex-shrink: 0;
}
.status-dot.open { background: #2FBF71; box-shadow: 0 0 0 3px rgba(47,191,113,.25); animation: statusPulse 2s ease-out infinite; }
.status-dot.closed { background: var(--gold); box-shadow: 0 0 0 3px rgba(255,185,12,.2); }
.status-dot.is-paused { background: #E5484D; box-shadow: 0 0 0 3px rgba(229,72,77,.25); }
@keyframes statusPulse {
  0% { box-shadow: 0 0 0 0 rgba(47,191,113,.45); }
  70% { box-shadow: 0 0 0 9px rgba(47,191,113,0); }
  100% { box-shadow: 0 0 0 0 rgba(47,191,113,0); }
}
.status-text { letter-spacing: .2px; }

/* ---------- Aviso de loja fechada ---------- */
.closed-banner {
  background: var(--gold); color: var(--ink);
  font-weight: 600; font-size: 14px; text-align: center;
  padding: 11px 20px;
}
.closed-banner[hidden] { display: none; }
.closed-banner.is-paused-banner { background: #E5484D; color: #fff; }
.closed-banner.is-paused-banner p { margin: 0 auto; max-width: 720px; }

/* ---------- Banner full-width ---------- */
.hero-banner {
  position: relative;
  display: block;
  width: 100%;
  line-height: 0;
  background: var(--ink);
  overflow: hidden;
}
.hero-banner::after {
  content: "";
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(22,11,6,0) 62%, rgba(22,11,6,.28) 100%);
}
.hero-banner img {
  display: block;
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: fill;
  animation: bannerIn 1s ease both;
}
@keyframes bannerIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ---------- Ticker marquee ---------- */
.marquee {
  background: linear-gradient(90deg, var(--gold) 0%, #FFD35E 50%, var(--gold) 100%);
  overflow: hidden;
  padding: 11px 0;
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
}
.marquee-track {
  display: flex; gap: 34px; white-space: nowrap;
  width: max-content;
  animation: marqueeScroll 30s linear infinite;
}
.marquee-track span {
  font-family: var(--font-display);
  font-size: 17px; letter-spacing: 1.5px; color: var(--ink);
  text-transform: uppercase;
}
.marquee-track span:nth-child(odd) { color: var(--red-deep); }
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Stats ---------- */
.stats {
  background:
    linear-gradient(120deg, var(--wine-2) 0%, var(--red-deep) 100%);
  color: #fff;
  padding: 26px 0;
}
.stats-inner { display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.stat { text-align: center; }
.stat b {
  display: block; font-family: var(--font-display); font-size: clamp(24px, 2.4vw, 32px);
  color: var(--gold); letter-spacing: 1px;
}
.stat span { font-size: 12.5px; color: var(--on-dark); opacity: .9; }

/* ---------- Seções ---------- */
.section-head { text-align: center; max-width: 640px; margin: 0 auto 44px; }
.eyebrow {
  display: inline-block; color: var(--red-deep); font-weight: 800;
  font-size: 12.5px; letter-spacing: 2.2px; text-transform: uppercase;
  margin-bottom: 12px;
}
.eyebrow--dark { color: var(--gold-deep); }
.section-head h2 { font-size: clamp(28px, 3.4vw, 40px); color: var(--ink); position: relative; display: inline-block; padding-bottom: 10px; }
.section-head h2::after {
  content: ""; position: absolute; left: 50%; bottom: 0;
  width: 0; height: 4px; border-radius: 3px;
  background: linear-gradient(90deg, var(--red), var(--gold));
  transform: translateX(-50%);
  transition: width .55s cubic-bezier(.2,.8,.3,1);
}
.section-head.is-visible h2::after { width: 100%; }
.section-head p { color: var(--muted); margin-top: 12px; font-size: 16px; }

/* ---------- Diferenciais ---------- */
.diferenciais { padding: 76px 0 64px; background: var(--cream); }
.dif-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.dif-card {
  background: var(--paper); border: 2px solid var(--line);
  border-radius: var(--radius); padding: 26px 22px;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.dif-card:hover {
  transform: translateY(-4px); box-shadow: var(--shadow-md);
  border-color: var(--gold);
}
.dif-card .ico { font-size: 26px; display: block; margin-bottom: 12px; transition: transform .2s ease; }
.dif-card:hover .ico { animation: wiggle .45s ease; }
@keyframes wiggle {
  0%, 100% { transform: rotate(0); }
  25% { transform: rotate(-12deg) scale(1.15); }
  75% { transform: rotate(10deg) scale(1.15); }
}
.dif-card h3 { font-family: var(--font-body); text-transform: none; font-weight: 800; font-size: 16px; }
.dif-card p { font-size: 13.5px; color: var(--muted); margin-top: 6px; line-height: 1.55; }

/* ---------- Cardápio ---------- */
.cardapio {
  padding: 80px 0 72px;
  background: linear-gradient(180deg, var(--cream) 0%, #FFF9EC 100%);
}

.cat-title {
  display: flex; align-items: center; gap: 14px;
  font-family: var(--font-display); font-size: 22px; letter-spacing: .5px;
  color: var(--wine-2); text-transform: uppercase;
  margin: 46px 0 22px;
}
.cat-title:first-of-type { margin-top: 0; }
.cat-title::after {
  content: ""; flex: 1; height: 2px;
  background: repeating-linear-gradient(90deg, var(--gold-deep) 0 10px, transparent 10px 16px);
}

.menu-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.menu-grid--sauces { grid-template-columns: repeat(4, 1fr); }

.item-card {
  background: var(--paper); border-radius: var(--radius);
  border: 2px solid var(--line); overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.item-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--gold-deep); }

.item-visual {
  position: relative; height: 210px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--wine) 0%, var(--ink) 100%);
  cursor: zoom-in;
  overflow: hidden;
}
.item-visual::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(100deg, transparent 20%, rgba(255,255,255,.16) 50%, transparent 80%);
  transform: translateX(-130%);
  transition: transform .7s ease;
  pointer-events: none;
}
.item-card:hover .item-visual::before { transform: translateX(130%); }
.item-visual img {
  width: 100%; height: 100%; object-fit: contain;
  transition: transform .3s ease;
}
.item-card:hover .item-visual img { transform: scale(1.06); }

.badge-people {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  background: var(--red); color: #fff;
  font-size: 11px; font-weight: 800; letter-spacing: .4px; text-transform: uppercase;
  padding: 6px 12px; border-radius: 100px;
}

.item-body { padding: 18px 18px 20px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.item-body h4 { font-family: var(--font-body); text-transform: none; font-weight: 800; font-size: 16.5px; }
.item-body p { font-size: 13.5px; color: var(--muted); line-height: 1.55; flex: 1; }

.item-foot {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  margin-top: 10px; flex-wrap: wrap;
}
.price { font-family: var(--font-display); font-size: 21px; color: var(--red); line-height: 1; }
.price small { font-family: var(--font-body); font-weight: 700; font-size: 11.5px; color: var(--muted-2); display: block; margin-top: 3px; }

.qty-add { display: flex; align-items: center; gap: 8px; }
.qty-box {
  display: flex; align-items: center;
  border: 2px solid var(--line); border-radius: 100px; overflow: hidden;
}
.qty-box button {
  width: 44px; height: 44px; font-size: 17px; font-weight: 800; color: var(--wine-2);
  background: var(--cream); transition: background .15s ease;
}
.qty-box button:hover { background: var(--gold-soft); }
.qty-box span { min-width: 28px; text-align: center; font-weight: 700; font-size: 14px; }

.add-btn {
  background: var(--red); color: #fff; font-weight: 800; font-size: 13.5px;
  padding: 14px 18px; border-radius: 100px; white-space: nowrap;
  position: relative; overflow: hidden;
  transition: background .15s ease, transform .1s ease;
}
.add-btn:hover { background: var(--red-deep); }
.add-btn:active { transform: scale(.95); }
.add-btn.added { background: #2E7D32; animation: addedPop .35s ease; }
@keyframes addedPop {
  0% { transform: scale(1); }
  40% { transform: scale(1.14); }
  100% { transform: scale(1); }
}

.sauce-card {
  background: var(--paper); border: 2px solid var(--line); border-radius: 14px;
  padding: 16px; display: flex; flex-direction: column; gap: 6px;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.sauce-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); border-color: var(--gold); }
.sauce-photo {
  width: 72px; height: 72px; border-radius: 50%; overflow: hidden;
  margin: 0 auto 8px; border: 2px solid var(--line); background: var(--wine);
  cursor: zoom-in;
  display: flex; align-items: center; justify-content: center;
}
.sauce-photo img { width: 100%; height: 100%; object-fit: cover; }
.sauce-photo svg { width: 56%; height: 56%; }
.sauce-card h4 { font-family: var(--font-body); text-transform: none; font-weight: 800; font-size: 14px; text-align: center; cursor: zoom-in; }
.sauce-card > p { font-size: 12.5px; color: var(--muted-2); text-align: center; }
.sauce-card .item-foot { margin-top: 4px; }
.sauce-card .price { font-size: 17px; }

.menu-note { text-align: center; font-size: 12.5px; color: var(--muted-2); margin-top: 36px; }
.min-order-line { color: var(--red-deep); font-weight: 700; }

/* ---------- Fallback sem JavaScript ---------- */
.noscript-note {
  max-width: 520px; margin: 26px auto 0; text-align: center;
  background: var(--gold-soft); border: 2px dashed var(--gold-deep);
  border-radius: 14px; padding: 18px 22px;
  font-size: 14px; color: #5A4300; line-height: 1.6;
}
.noscript-note a { color: var(--red-deep); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }

/* ---------- Navegação rápida do cardápio ---------- */
.menu-quicknav {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px;
  margin: -16px 0 8px;
}
.menu-chip {
  padding: 10px 22px; border-radius: 100px;
  background: var(--paper); border: 2px solid var(--line);
  font-weight: 800; font-size: 13.5px; color: var(--ink); line-height: 1;
  transition: transform .15s ease, border-color .15s ease, color .15s ease, background .15s ease, box-shadow .15s ease;
}
.menu-chip:hover {
  transform: translateY(-2px);
  border-color: var(--red); color: var(--red);
  background: #FFF4F4;
  box-shadow: 0 8px 20px rgba(225,29,51,.16);
}
.menu-chip:active { transform: translateY(0) scale(.97); }

/* ---------- Como pedir ---------- */
.como { padding: 80px 0 72px; background: var(--cream); }
.passos {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
  counter-reset: passo;
}
.passo {
  background: var(--paper); border: 2px solid var(--line); border-radius: var(--radius);
  padding: 30px 26px; position: relative;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.passo:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--gold); }
.passo .num {
  font-family: var(--font-display); font-size: 46px; line-height: 1;
  color: var(--gold); -webkit-text-stroke: 2px var(--ink);
  paint-order: stroke fill;
  display: inline-block;
  transition: transform .25s ease, color .25s ease;
}
.passo:hover .num { color: var(--gold-deep); transform: translateY(-5px) rotate(-5deg); }
.passo h3 { font-family: var(--font-body); text-transform: none; font-weight: 800; font-size: 17px; margin-top: 10px; }
.passo p { font-size: 14px; color: var(--muted); margin-top: 8px; line-height: 1.6; }
.passo p strong { color: var(--ink); }

.reassure {
  margin-top: 28px; padding: 16px 22px;
  background: var(--gold-soft); border: 2px dashed var(--gold-deep);
  border-radius: 14px; font-size: 14px; color: #5A4300;
}
.reassure strong { color: var(--ink); }

/* ---------- FAQ ---------- */
.faq {
  padding: 76px 0 68px;
  background: linear-gradient(180deg, var(--cream) 0%, #FFF9EC 100%);
}
.faq-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--paper); border: 2px solid var(--line); border-radius: 14px;
  overflow: hidden; transition: border-color .15s ease;
}
.faq-item[open] { border-color: var(--gold); }
.faq-item summary {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  padding: 16px 18px; cursor: pointer; list-style: none;
  font-weight: 800; font-size: 14.5px; color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; font-size: 22px; font-weight: 700; line-height: 1;
  color: var(--red); flex-shrink: 0;
  transition: transform .2s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-a { padding: 2px 18px 18px; font-size: 14px; color: var(--muted); line-height: 1.65; }
.faq-item .faq-a strong { color: var(--ink); }
.faq-item[open] .faq-a { animation: faqIn .28s ease; }
@keyframes faqIn {
  from { opacity: 0; transform: translateY(-6px); }
}

/* ---------- CTA final ---------- */
.cta-band {
  background:
    radial-gradient(ellipse at 15% 0%, rgba(255,185,12,.16), transparent 55%),
    linear-gradient(155deg, var(--ink) 0%, var(--wine) 100%);
  color: #fff; padding: 68px 0;
}
.cta-band-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
}
.cta-band h2 { font-size: clamp(26px, 3.2vw, 38px); }
.cta-band-copy p { color: var(--on-dark); margin-top: 10px; font-size: 15.5px; }
.cta-band-inner > .btn { flex-shrink: 0; }

/* ---------- Footer ---------- */
.site-footer {
  background: linear-gradient(160deg, var(--ink) 0%, var(--wine) 100%);
  color: #fff; padding: 64px 0 26px;
}
.foot-grid {
  display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 40px;
  padding-bottom: 36px; border-bottom: 1px solid rgba(255,240,220,.12);
}
.foot-brand p { margin-top: 14px; color: var(--on-dark); opacity: .85; font-size: 14px; line-height: 1.7; }
.foot-brand img {
  width: 88px; height: auto; border-radius: 10px;
  border: 2px solid var(--gold);
}
.site-footer h3 {
  font-family: var(--font-body); text-transform: none;
  font-weight: 800; font-size: 15px; color: var(--gold-soft);
  margin-bottom: 14px;
}
.site-footer ul li { font-size: 14px; color: var(--on-dark); opacity: .85; line-height: 2; }
.site-footer a:hover { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.foot-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 22px; font-size: 12.5px; color: rgba(255,240,220,.5);
  gap: 12px; flex-wrap: wrap;
}
.foot-bottom a { color: var(--on-dark); font-weight: 700; text-decoration: none; }
.foot-bottom a:hover { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.foot-privacy {
  border: none; background: none; padding: 0; cursor: pointer;
  color: var(--on-dark); opacity: .75;
  font-size: 12.5px; text-decoration: underline; text-underline-offset: 3px;
}
.foot-privacy:hover, .foot-privacy:focus-visible { opacity: 1; }

/* ---------- Dica de privacidade (mapas) ---------- */
.privacy-hint { font-size: 12px; color: var(--muted-2); line-height: 1.5; margin-top: 8px; }
.link-btn {
  border: none; background: none; padding: 0;
  font: inherit;
  color: var(--red-deep); font-weight: 700;
  text-decoration: underline; text-underline-offset: 3px;
  cursor: pointer;
}

/* ---------- Carrinho flutuante ---------- */
.floating-cart {
  position: fixed; bottom: 22px; left: 50%;
  transform: translateX(-50%) translateY(180%);
  background: var(--ink); color: #fff;
  border: 2px solid var(--gold);
  border-radius: 100px;
  padding: 10px 10px 10px 22px;
  display: flex; align-items: center; gap: 18px;
  box-shadow: 0 18px 40px rgba(0,0,0,.4);
  z-index: 80;
  transition: transform .28s cubic-bezier(.22,.9,.35,1.2);
}
.floating-cart.show { transform: translateX(-50%) translateY(0); }
.floating-cart.bump .cart-info { animation: cartBump .45s cubic-bezier(.22,.9,.35,1.2); transform-origin: left center; }
@keyframes cartBump {
  0% { transform: scale(1); }
  35% { transform: scale(1.18); }
  70% { transform: scale(.96); }
  100% { transform: scale(1); }
}
.cart-info { font-size: 14px; font-weight: 700; white-space: nowrap; }
.cart-info b { color: var(--gold); font-family: var(--font-display); font-size: 16px; margin-right: 4px; }
.send-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: #25D366; color: #0B3D22; font-weight: 800; font-size: 14px;
  padding: 12px 20px; border-radius: 100px;
  transition: transform .12s ease, filter .12s ease;
}
.send-btn:hover { transform: scale(1.03); filter: brightness(1.05); }

.wa-fab-wrap {
  position: fixed; bottom: 22px; right: 22px; z-index: 75;
}
.wa-fab {
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 26px rgba(0,0,0,.3);
  transition: transform .15s ease;
  animation: pulseRing 2.6s ease-out infinite;
}
@keyframes pulseRing {
  0% { box-shadow: 0 10px 26px rgba(0,0,0,.3), 0 0 0 0 rgba(37,211,102,.5); }
  70% { box-shadow: 0 10px 26px rgba(0,0,0,.3), 0 0 0 16px rgba(37,211,102,0); }
  100% { box-shadow: 0 10px 26px rgba(0,0,0,.3), 0 0 0 0 rgba(37,211,102,0); }
}
.wa-fab:hover { transform: scale(1.08); }
.wa-fab.hidden { display: none; animation: none; }

/* ---------- Botão voltar ao topo ---------- */
.to-top {
  position: fixed; bottom: 22px; left: 22px; z-index: 70;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--gold); color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
  transition: transform .15s ease, background .15s ease, opacity .2s ease;
}
.to-top[hidden] { display: none; }
.to-top:hover { transform: translateY(-3px); background: var(--gold-soft); }

/* ---------- Modais ---------- */
.modal-overlay {
  position: fixed; inset: 0; z-index: 120;
  background: rgba(16,8,4,.72);
  display: flex; align-items: center; justify-content: center;
  padding: 18px;
  opacity: 0; transition: opacity .2s ease;
}
.modal-overlay[hidden] { display: none; }
.modal-overlay.show { opacity: 1; }
body.modal-open { overflow: hidden; }

.modal-box {
  background: var(--paper); border-radius: var(--radius-lg);
  width: 100%; max-width: 460px; max-height: 90vh; overflow-y: auto;
  padding: 30px 28px 26px; position: relative;
  box-shadow: var(--shadow-lg);
  border-top: 6px solid var(--red);
  transform: translateY(14px); transition: transform .2s ease;
}
.modal-overlay.show .modal-box { transform: translateY(0); }

.modal-close {
  position: absolute; top: 16px; right: 16px;
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--cream); color: var(--ink); font-size: 15px;
  display: flex; align-items: center; justify-content: center;
  transition: background .15s ease;
}
.modal-close:hover { background: var(--gold-soft); }

.modal-box h3 {
  font-family: var(--font-body); text-transform: none;
  font-weight: 800; font-size: 20px;
}
.modal-sub { font-size: 13.5px; color: var(--muted); margin-top: 6px; margin-bottom: 18px; line-height: 1.55; }

.privacy-modal-box {
  max-width: 520px; max-height: 85vh; overflow-y: auto;
  font-size: 14px; line-height: 1.6;
}
.privacy-modal-box h4 {
  font-family: var(--font-body); font-weight: 800; text-transform: uppercase;
  font-size: 13px; letter-spacing: .3px; color: var(--red-deep);
  margin: 16px 0 4px;
}
.privacy-modal-box ul { list-style: disc; padding-left: 18px; }
.privacy-modal-box li { margin: 4px 0; }
.privacy-modal-box a {
  color: var(--red-deep); text-decoration: underline; text-underline-offset: 3px;
}
.privacy-modal-box .btn--soft { margin-top: 8px; }

/* Cart view */
#cart-items-list { display: flex; flex-direction: column; gap: 12px; max-height: 40vh; overflow-y: auto; margin-bottom: 16px; }
.cart-line {
  display: flex; align-items: center; gap: 12px;
  border: 2px solid var(--line); border-radius: 14px; padding: 10px 12px;
}
.cart-line-info { flex: 1; min-width: 0; }
.cart-line-info h4 { font-size: 14px; font-weight: 800; margin-bottom: 2px; }
.cart-line-info h4 span { font-size: 11px; color: var(--muted-2); }
.cart-line-info p { font-size: 12px; color: var(--muted-2); }
.cart-line-qty {
  display: flex; align-items: center;
  border: 2px solid var(--line); border-radius: 100px; overflow: hidden;
}
.cart-line-qty button { width: 44px; height: 44px; font-size: 15px; font-weight: 800; color: var(--wine-2); background: var(--cream); }
.cart-line-qty button:hover { background: var(--gold-soft); }
.cart-line-qty span { min-width: 26px; text-align: center; font-weight: 700; font-size: 13px; }
.cart-line-remove {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  background: #FFF0F0; color: var(--red-deep);
  display: flex; align-items: center; justify-content: center;
  transition: background .15s ease;
}
.cart-line-remove:hover { background: var(--red); color: #fff; }

.cart-total-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 0; border-top: 2px dashed var(--line); margin-bottom: 16px;
}
.cart-total-row span { font-size: 14px; font-weight: 700; }
.cart-total-row b { font-family: var(--font-display); font-size: 22px; color: var(--red); }
.cart-note {
  font-size: 12px; color: var(--muted-2); text-align: center;
  margin: 10px 0 2px; line-height: 1.5;
}
.cart-actions { display: flex; flex-direction: column; gap: 10px; }
.cart-empty-msg { font-size: 14px; color: var(--muted-2); text-align: center; padding: 20px 0; }
.min-order-hint {
  margin: 0 0 14px; padding: 11px 14px;
  background: var(--gold-soft); border: 2px dashed var(--gold-deep);
  border-radius: 12px; font-size: 13px; color: #5A4300; line-height: 1.5;
}
.min-order-hint b { color: var(--ink); }

.btn-back-link {
  color: var(--red); font-weight: 700; font-size: 13px;
  margin-bottom: 12px; display: inline-block;
}
.btn-back-link:hover { text-decoration: underline; }

/* Checkout form */
#order-form { display: flex; flex-direction: column; gap: 16px; }

/* Resumo do pedido na finalização */
.checkout-summary {
  background: var(--cream); border: 2px solid var(--line);
  border-radius: 14px; padding: 14px 16px; margin-bottom: 18px;
  font-size: 13.5px;
}
.checkout-summary[hidden] { display: none; }
.ck-summary-head {
  display: flex; justify-content: space-between; align-items: baseline;
  font-weight: 800; margin-bottom: 8px;
}
.ck-summary-head b { color: var(--red); font-family: var(--font-display); font-size: 15px; }
.ck-summary-list { display: flex; flex-direction: column; gap: 6px; max-height: 180px; overflow-y: auto; }
.ck-summary-list li { display: flex; justify-content: space-between; gap: 10px; line-height: 1.4; }
.ck-summary-list span { color: var(--muted-2); min-width: 0; }
.ck-summary-list small { color: var(--muted-2); }
.ck-summary-list b { color: var(--ink); flex-shrink: 0; }
.ck-summary-total {
  display: flex; justify-content: space-between; align-items: baseline;
  border-top: 2px dashed var(--line); margin-top: 8px; padding-top: 8px;
  font-weight: 800;
}
.ck-summary-total b { font-family: var(--font-display); font-size: 18px; color: var(--red); }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: 13px; font-weight: 700; }
.field label .opt { font-weight: 500; color: var(--muted-2); font-size: 12px; }
.field input {
  font-size: 14.5px; font-weight: 500;
  padding: 12px 14px; border-radius: 12px;
  border: 2px solid var(--line); outline: none; color: var(--ink);
  background: #FFFDF6;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus { border-color: var(--red); box-shadow: 0 0 0 3px rgba(225,29,51,.12); }
.field input.invalid { border-color: var(--red); background: #FFF4F4; }

.seg {
  border: none; display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
}
.seg legend {
  font-size: 13px; font-weight: 700; margin-bottom: 8px; width: 100%;
  padding: 0;
}
.radio { display: inline-flex; align-items: center; gap: 7px; font-weight: 600; font-size: 13.5px; cursor: pointer; }
.radio input { accent-color: var(--red); width: 17px; height: 17px; cursor: pointer; }

#delivery-fields { display: flex; flex-direction: column; gap: 16px; }
#delivery-fields[hidden] { display: none; }
#apto-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
#apto-fields[hidden] { display: none; }
.field--sm { max-width: 160px; }

.form-note {
  font-size: 12.5px; color: var(--muted-2); line-height: 1.5;
  background: var(--cream); border-radius: 12px; padding: 10px 14px;
}

.addr-map { margin-top: 2px; }
.addr-map iframe {
  width: 100%; height: 200px; border: 1px solid var(--line);
  border-radius: 12px; display: block; background: #E8E3D8;
}
.addr-map-hint { font-size: 12px; color: var(--muted-2); margin-top: 6px; line-height: 1.45; }
#delivery-fields .addr-map { margin-top: 0; }
.locate-btn {
  width: 100%; margin-top: 10px;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-size: 13.5px; font-weight: 700;
}
.locate-btn.is-located { background: #2E7D32; border-color: #2E7D32; color: #fff; }
.locate-btn[disabled] { opacity: .7; cursor: wait; }

.btn--submit { padding: 16px; font-size: 16px; }

/* ---------- Meu endereço ---------- */
.addr-chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 16px; border-radius: 100px;
  background: rgba(255,255,255,.06); color: var(--gold-soft);
  border: 2px solid rgba(255,240,220,.28);
  font-weight: 700; font-size: 13px; line-height: 1;
  max-width: 210px;
  transition: border-color .15s ease, background .15s ease, color .15s ease;
}
.addr-chip svg { flex-shrink: 0; }
.addr-chip:hover { border-color: var(--gold); background: rgba(255,255,255,.1); color: var(--gold); }
.addr-chip #addr-chip-label {
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

.addr-card {
  display: flex; gap: 12px; align-items: flex-start;
  background: var(--cream); border: 2px solid var(--line);
  border-radius: 14px; padding: 14px 16px; margin-bottom: 16px;
  font-size: 14px; line-height: 1.55;
}
.addr-card svg { flex-shrink: 0; color: var(--red); margin-top: 2px; }
.addr-card small { color: var(--muted-2); }

.addr-actions { display: flex; flex-direction: column; gap: 10px; }

.addr-pickup-link {
  display: block; margin: 14px auto 0;
  color: var(--red); font-weight: 700; font-size: 13px;
}
.addr-pickup-link:hover { text-decoration: underline; }

#a-apto-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
#a-apto-fields[hidden] { display: none; }

/* ---------- Lightbox ---------- */
.lightbox-box {
  background: var(--paper); border-radius: var(--radius-lg);
  width: 100%; max-width: 520px; max-height: 90vh; overflow-y: auto;
  position: relative; box-shadow: var(--shadow-lg);
  transform: translateY(14px); transition: transform .2s ease;
}
.modal-overlay.show .lightbox-box { transform: translateY(0); }
#lightbox-visual {
  width: 100%; aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--wine) 0%, var(--ink) 100%);
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0; overflow: hidden;
}
#lightbox-visual img { width: 100%; height: 100%; object-fit: contain; }
.lightbox-info { padding: 22px 24px 26px; }
.lightbox-badge {
  display: inline-block; background: var(--red); color: #fff;
  font-size: 11px; font-weight: 800; letter-spacing: .6px; text-transform: uppercase;
  padding: 6px 13px; border-radius: 100px; margin-bottom: 12px;
}
.lightbox-info h3 { font-family: var(--font-body); text-transform: none; font-weight: 800; font-size: 20px; margin-bottom: 8px; }
.lightbox-info > p { font-size: 14.5px; color: var(--muted); line-height: 1.65; margin-bottom: 16px; }
.lightbox-foot {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  flex-wrap: wrap;
}
.lightbox-foot .price { font-size: 24px; }

/* ---------- Toast ---------- */
.toast {
  position: fixed; top: 20px; left: 50%; transform: translateX(-50%) translateY(-20px);
  background: var(--ink); color: #fff; border: 2px solid var(--gold);
  padding: 14px 22px; border-radius: 100px;
  font-weight: 700; font-size: 14px; text-align: center;
  box-shadow: var(--shadow-lg); z-index: 150;
  opacity: 0; pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
  max-width: 90vw;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); animation: toastIn .32s cubic-bezier(.2,.9,.35,1.2); }
@keyframes toastIn {
  0% { opacity: 0; transform: translateX(-50%) translateY(16px) scale(.96); }
}

/* ---------- Animações de entrada (scroll reveal) ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .6s ease, transform .6s cubic-bezier(.2,.8,.3,1);
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal--dlay-1 { transition-delay: .08s; }
.reveal--dlay-2 { transition-delay: .16s; }
.reveal--dlay-3 { transition-delay: .24s; }
.reveal--dlay-4 { transition-delay: .32s; }

/* ---------- Acessibilidade de movimento ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
  .wa-fab { animation: none; }
  .marquee-track { animation: none; }
}

/* ---------- Responsivo ---------- */
@media (max-width: 1024px) {
  .dif-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .site-nav { display: none; }
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
  .menu-grid--sauces { grid-template-columns: repeat(3, 1fr); }
  .passos { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; gap: 30px; }
  .cta-band-inner { flex-direction: column; text-align: center; }
  .sauce-card .qty-add { flex-wrap: wrap; justify-content: center; }
  .sauce-card .qty-box button { width: 38px; height: 38px; }
  .sauce-card .add-btn { padding: 12px 14px; font-size: 12.5px; }
}

@media (max-width: 640px) {
  :root { --header-h: 64px; }
  .wrap { padding: 0 16px; }
  .menu-quicknav {
    flex-wrap: nowrap; justify-content: flex-start;
    overflow-x: auto; margin: -12px -16px 6px;
    padding: 4px 16px 8px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .menu-quicknav::-webkit-scrollbar { display: none; }
  .menu-chip { flex-shrink: 0; padding: 10px 18px; font-size: 13px; }
  .menu-grid { grid-template-columns: 1fr; }
  .menu-grid--sauces { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .dif-grid { grid-template-columns: 1fr; }
  .header-inner { gap: 10px; padding-top: 8px; padding-bottom: 8px; }
  .brand { min-width: 0; flex: 1 1 auto; }
  .brand-text { min-width: 0; }
  .brand-text b { display: block; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .brand-text small { display: none; }
  .brand { gap: 8px; }
  .brand-mark { width: 42px; height: 42px; font-size: 15px; flex-shrink: 0; }
  .brand-text b { font-size: 16px; letter-spacing: .5px; }
  .status-pill { flex-shrink: 1; min-width: 0; max-width: 150px; }
  .status-text { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .btn--header span { display: none; }
  .btn--header { width: 44px; height: 44px; padding: 0; justify-content: center; flex-shrink: 0; }

  .hero-banner img { animation: bannerIn 1s ease both; }

  .sauce-card .qty-add { flex-wrap: wrap; justify-content: center; }
  .sauce-card .qty-box button { width: 38px; height: 38px; }
  .sauce-card .add-btn { padding: 12px 14px; font-size: 12.5px; }
  .sauce-card .price { font-size: 16px; }

  .floating-cart {
    left: 12px; right: 12px;
    transform: translateY(180%);
    justify-content: space-between;
  }
  .floating-cart.show { transform: translateY(0); }
  .send-btn { padding: 12px 16px; font-size: 13px; }
  .wa-fab-wrap { bottom: 88px; right: 14px; }
  .wa-fab { width: 52px; height: 52px; }
  .to-top { bottom: 88px; left: 14px; width: 44px; height: 44px; }

  .cart-line { flex-wrap: wrap; }
  .stats-inner { justify-content: space-around; }
  .stat b { font-size: 22px; }
  .modal-box { padding: 26px 20px 22px; }
  #apto-fields { grid-template-columns: 1fr; }
  #a-apto-fields { grid-template-columns: 1fr; }
  .field--sm { max-width: none; }
  .addr-chip { width: 46px; height: 46px; padding: 0; justify-content: center; }
  .addr-chip #addr-chip-label { display: none; }
  .status-pill { padding: 7px 11px; font-size: 12px; gap: 6px; max-width: 130px; }
  .status-text { overflow: hidden; text-overflow: ellipsis; }
}

@media (max-width: 400px) {
  .menu-grid--sauces { grid-template-columns: 1fr; }
  .brand-text { display: none; }
}

/* ---------- Acessibilidade ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition: none !important;
    animation: none !important;
    scroll-behavior: auto !important;
  }
}

/* ---------- Instalar app (PWA) ---------- */
.pwa-install,
.pwa-install-link {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  min-height: 44px;
  border: none; background: none; cursor: pointer;
  font-family: inherit; font-weight: 800; transition: background .15s ease, color .15s ease, transform .15s ease;
}
.pwa-install {
  width: 100%; margin-top: 8px; padding: 12px 16px; border-radius: 100px;
  background: var(--gold); color: var(--ink); font-size: 15px;
}
.pwa-install:hover { background: #e8b83a; transform: translateY(-1px); }
.pwa-install-link {
  padding: 6px 8px; color: var(--ink); font-size: 13.5px;
  text-decoration: underline; text-underline-offset: 3px;
}
.pwa-install-link:hover { color: var(--red-deep); }
.pwa-install[hidden], .pwa-install-link[hidden] { display: none; }

.pwa-banner {
  position: fixed; bottom: 96px; left: 22px; right: 132px; z-index: 90;
  display: flex; align-items: center; gap: 10px;
  max-width: 460px;
  padding: 10px 12px; border-radius: 18px;
  background: var(--ink); color: var(--paper);
  border: 2px solid var(--gold);
  box-shadow: var(--shadow-lg);
}
.pwa-banner[hidden] { display: none; }
.pwa-banner-ico { flex-shrink: 0; color: var(--gold); display: flex; }
.pwa-banner-txt { flex: 1; font-size: 13.5px; line-height: 1.4; }
.pwa-banner-txt strong { color: var(--gold); }
.pwa-cta { flex-shrink: 0; padding: 10px 16px; font-size: 13.5px; min-height: 44px; }
.pwa-close {
  flex-shrink: 0;
  width: 34px; height: 34px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.08); color: var(--paper); font-size: 14px; line-height: 1;
  border: none; cursor: pointer; transition: background .15s ease;
}
.pwa-close:hover { background: rgba(255,255,255,.18); }

.pwa-steps { display: grid; gap: 10px; margin: 6px 0 18px; padding-left: 20px; }
.pwa-steps li { font-size: 14.5px; line-height: 1.5; }
.pwa-steps svg { display: inline-block; vertical-align: middle; margin: 0 2px; color: var(--red-deep); }

.pwa-install:focus-visible, .pwa-install-link:focus-visible,
.pwa-close:focus-visible, .pwa-cta:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; }

@media (max-width: 480px) {
  .pwa-banner { left: 12px; right: 128px; padding: 8px 10px; border-radius: 14px; }
  .pwa-banner-txt { font-size: 13px; }
  .pwa-cta { padding: 10px 12px; font-size: 13px; }
}

@media (max-width: 640px) {
  .pwa-banner { bottom: 150px; }
}
