:root{
  --bg: #FDFDFD;
  --surface: #FFFFFF;
  --text: #1A1A1A;
  --muted: rgba(26, 26, 26, 0.62);
  --muted-2: rgba(26, 26, 26, 0.45);
  --stroke: rgba(26, 26, 26, 0.08);
  --stroke-2: rgba(26, 26, 26, 0.12);
  --cta: #E31837;
  --cta-hover: #c41230;
  --gold: #C5A059;
  --gold-soft: rgba(197, 160, 89, 0.15);
  --shadow-soft: 0 20px 56px rgba(26, 26, 26, 0.07);
  --shadow-card: 0 12px 40px rgba(26, 26, 26, 0.06);
  --shadow-hero-img: 0 24px 64px rgba(26, 26, 26, 0.12), 0 8px 24px rgba(26, 26, 26, 0.06);
  --good: #1a9b5c;
  --bad: #c41e3a;

  --radius: 24px;
  --radius-sm: 16px;
  --max: 1120px;
  --pad: 20px;
  --font-serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-sans: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--bg);
  overflow-x:hidden;
  -webkit-font-smoothing: antialiased;
}

a{color:inherit; text-decoration:none}
strong{color: var(--text)}

.container{
  width:min(var(--max), calc(100% - (var(--pad) * 2)));
  margin-inline:auto;
}

.skip-link{
  position:absolute;
  left:-9999px;
  top:12px;
  background:var(--surface);
  color:var(--text);
  padding:10px 12px;
  border-radius:10px;
  z-index:999;
  border:1px solid var(--stroke);
}
.skip-link:focus{left:12px}

/* Header */
.site-header{
  position:sticky;
  top:0;
  z-index:50;
  background: rgba(253, 253, 253, 0.92);
  backdrop-filter: blur(12px);
  border-bottom:1px solid var(--stroke);
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
  gap:14px;
}
.brand{display:flex; align-items:center; gap:12px; min-width:0}
.brand-lockup{
  display:flex;
  align-items:center;
  min-width:0;
  text-decoration:none;
  color:inherit;
}
.brand-lockup:focus-visible{outline:2px solid var(--cta); outline-offset:4px; border-radius:8px}
.brand-logo-img{
  display:block;
  max-height:52px;
  width:auto;
  height:auto;
  object-fit:contain;
}
.header-actions{display:flex; gap:10px; align-items:center}

/* Buttons */
.btn{
  border:1px solid var(--stroke-2);
  background: var(--surface);
  color: var(--text);
  padding:10px 16px;
  border-radius:999px;
  cursor:pointer;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  font-weight:600;
  font-size:14px;
  transition: transform .15s ease, background .15s ease, border-color .15s ease, box-shadow .15s ease;
  user-select:none;
}
.btn:hover{transform: translateY(-1px); border-color: rgba(26,26,26,0.18); box-shadow: var(--shadow-card)}
.btn:active{transform: translateY(0)}
.btn:focus-visible{outline:2px solid var(--cta); outline-offset:3px}

.btn-primary{
  background: var(--cta);
  border-color: var(--cta);
  color: #fff;
  box-shadow: 0 8px 24px rgba(227, 24, 55, 0.25);
}
.btn-primary:hover{
  background: var(--cta-hover);
  border-color: var(--cta-hover);
  box-shadow: 0 10px 28px rgba(227, 24, 55, 0.32);
}

.btn-ghost{
  background: transparent;
  border-color: var(--stroke-2);
  color: var(--text);
}
.btn-ghost:hover{background: rgba(26,26,26,0.03)}

.btn-offer{
  background: var(--surface);
  border: 2px dashed var(--cta);
  color: var(--cta);
}
.btn-offer:hover{
  background: rgba(227, 24, 55, 0.06);
  border-style: solid;
}
.btn-lg{padding:12px 20px; font-size:15px}

/* Sections */
.section{padding:56px 0}
.section-head{display:flex; align-items:flex-end; justify-content:space-between; gap:18px; margin-bottom:28px; flex-wrap:wrap}
.section-title{
  margin:0;
  font-family: var(--font-serif);
  font-size:32px;
  font-weight: 700;
  letter-spacing:-.02em;
  color: var(--text);
}
.section-subtitle{
  margin:0;
  color:var(--muted);
  max-width:56ch;
  line-height:1.5;
  font-size:15px;
}

/* Hero — claro, texto izquierda, imagen derecha */
.hero{
  position:relative;
  padding:48px 0 56px;
  background: linear-gradient(180deg, #fff 0%, var(--bg) 100%);
}
.hero-inner{
  display:grid;
  grid-template-columns: 1.05fr 1fr;
  gap:40px;
  align-items:center;
}
.hero-copy{padding:8px 0 0}
.pill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 14px;
  border-radius:999px;
  border:1px solid var(--stroke);
  background: var(--surface);
  margin:0 0 18px;
  color:var(--muted);
  font-weight:600;
  font-size:13px;
}
.pill-icon{color: var(--gold); font-size:1rem}
.hero-title{
  margin:0 0 16px;
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 700;
  line-height:1.12;
  letter-spacing:-.03em;
  color: var(--text);
}
.hero-subtitle{
  margin:0 0 22px;
  color:var(--muted);
  font-size:17px;
  line-height:1.6;
  max-width:52ch;
}
.hero-ctas{display:flex; gap:12px; flex-wrap:wrap; margin-bottom:20px}

.deal-card{
  position:relative;
  padding:18px 20px;
  border-radius: var(--radius);
  border:1px solid var(--stroke);
  background: var(--surface);
  box-shadow: var(--shadow-card);
}
.deal-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
}
.deal-title{font-weight:700; color: var(--text)}
.deal-sub{color:var(--muted); margin-top:4px; font-size:14px}
.code-chip{
  display:flex; align-items:center; gap:10px;
  padding:10px 14px;
  border-radius:999px;
  background: rgba(197, 160, 89, 0.12);
  border:1px solid rgba(197, 160, 89, 0.35);
  font-weight:800;
  letter-spacing:.08em;
  color: var(--text);
}
.code-chip-kbd{color:var(--muted-2); font-weight:600; letter-spacing:0; font-size:12px}
.toast{
  position:absolute;
  left:20px;
  bottom:16px;
  padding:10px 14px;
  border-radius:999px;
  border:1px solid var(--stroke);
  background: var(--text);
  color: #fff;
  font-weight:600;
  font-size:14px;
  opacity:0;
  transform: translateY(6px);
  pointer-events:none;
  transition: opacity .18s ease, transform .18s ease;
}
.toast.show{opacity:1; transform: translateY(0)}

.hero-visual{
  position:relative;
  align-self: center;
}
.hero-visual-frame{
  border-radius: var(--radius);
  overflow:hidden;
  background: var(--surface);
  box-shadow: var(--shadow-hero-img);
  border:1px solid var(--stroke);
}
.hero-visual-frame img{
  width:100%;
  height:auto;
  max-height: min(420px, 52vh);
  object-fit: cover;
  display:block;
  vertical-align:middle;
}
.hero-badge{
  position:absolute;
  bottom:16px;
  left:16px;
  right:16px;
  padding:12px 16px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.95);
  border:1px solid var(--stroke);
  font-size:13px;
  font-weight:600;
  color: var(--muted);
  box-shadow: var(--shadow-card);
}
.hero-badge strong{color: var(--text)}

.hero-side{display:none}

/* Especialistas falafel */
.falafel-showcase{
  margin: 0 auto;
  max-width: 900px;
  padding: 40px 36px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}
.falafel-showcase::before{
  content:"";
  position:absolute;
  left:0; top:0; bottom:0;
  width:5px;
  background: linear-gradient(180deg, var(--gold), rgba(197,160,89,0.45));
}
.falafel-showcase-inner{
  padding-left: 12px;
}
.falafel-kicker{
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 10px;
}
.falafel-showcase h2{
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 0 0 14px;
  line-height: 1.2;
}
.falafel-showcase p{
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
  font-size: 16px;
  max-width: 62ch;
}

/* Chips */
.chips-scroll{
  display:flex;
  gap:12px;
  overflow:auto;
  padding:6px 2px 12px;
  scroll-snap-type: x mandatory;
}
.chips-scroll::-webkit-scrollbar{height:8px}
.chips-scroll::-webkit-scrollbar-thumb{background: rgba(26,26,26,0.12); border-radius:999px}
.chip{
  scroll-snap-align:start;
  min-width: 200px;
  padding:16px 18px;
  border-radius: var(--radius);
  border:1px solid var(--stroke);
  background: var(--surface);
  display:flex;
  align-items:center;
  gap:12px;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
  box-shadow: var(--shadow-card);
}
.chip:hover{transform: translateY(-2px); border-color: rgba(197,160,89,0.45)}
.chip-emoji{font-size:22px}
.chip-title{font-weight:700; color: var(--text)}

/* Products */
.grid{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap:20px;
}
.product-card{
  grid-column: span 6;
  border-radius: var(--radius);
  border:1px solid var(--stroke);
  background: var(--surface);
  overflow:hidden;
  box-shadow: var(--shadow-card);
  display:flex;
  flex-direction:column;
  transition: transform .2s ease, box-shadow .2s ease;
  will-change: transform;
}
.product-card:hover{
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
}
.product-card:hover .product-actions .btn-primary{
  box-shadow: 0 10px 28px rgba(227, 24, 55, 0.35);
  transform: scale(1.02);
}
.product-card:focus-within{
  outline:2px solid var(--cta);
  outline-offset: 2px;
}
.product-media{
  height: 220px;
  border:0;
  border-bottom:1px solid var(--stroke);
  position:relative;
  overflow:hidden;
  background: #fafafa;
}
.product-media img{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
}
.product-body{
  padding:20px;
  display:flex;
  flex-direction:column;
  gap:0;
  flex:1;
}
.product-top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:10px;
}
.product-title{margin:0; font-size:18px; font-weight:700; letter-spacing:-.01em; color: var(--text)}
.price{
  font-weight:800;
  color: var(--text);
  background: rgba(197, 160, 89, 0.12);
  border:1px solid rgba(197, 160, 89, 0.25);
  padding:8px 12px;
  border-radius:999px;
  white-space:nowrap;
  font-size:14px;
}
.product-desc{
  margin:12px 0 18px;
  color:var(--muted);
  line-height:1.5;
  display:-webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow:hidden;
  font-size:14px;
}
.product-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:auto;
}
.product-actions .btn-primary{
  transition: transform .2s ease, box-shadow .2s ease;
}

/* Accordion / carta */
.accordion{display:flex; flex-direction:column; gap:12px}
details{
  border-radius: var(--radius);
  border:1px solid var(--stroke);
  background: var(--surface);
  overflow:hidden;
  box-shadow: var(--shadow-card);
}
summary{
  list-style:none;
  cursor:pointer;
  padding:16px 18px;
  font-weight:700;
  border-bottom:1px solid transparent;
  color: var(--text);
}
summary::-webkit-details-marker{display:none}
details[open] summary{border-bottom-color: var(--stroke)}
.menu-note{
  padding:12px 18px 0;
  color: var(--muted);
  line-height:1.45;
  font-size:14px;
}
.menu-list{padding:12px 18px 18px; display:flex; flex-direction:column; gap:10px}
.menu-item{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:12px;
  padding:14px;
  border-radius: var(--radius-sm);
  border:1px solid var(--stroke);
  background: var(--bg);
}
.menu-title{font-weight:700}
.menu-desc{margin-top:6px; color: var(--muted); line-height:1.45; font-size:14px}
.menu-right{display:flex; align-items:center; gap:10px; flex-wrap:wrap; justify-content:flex-end; min-width: 160px}
.menu-price{
  font-weight:800;
  color: var(--text);
  background: rgba(197, 160, 89, 0.1);
  border:1px solid rgba(197, 160, 89, 0.22);
  padding:8px 12px;
  border-radius:999px;
  white-space:nowrap;
  font-size:14px;
}

/* Trust */
.trust-grid{
  display:grid;
  grid-template-columns: 1fr 1.2fr;
  gap:20px;
}
.trust-card, .quote-card{
  padding:24px;
  border-radius: var(--radius);
  border:1px solid var(--stroke);
  background: var(--surface);
  box-shadow: var(--shadow-card);
}
.trust-title{font-family: var(--font-serif); font-weight:700; font-size:20px}
.trust-stars{
  display:flex; align-items:center; gap:10px;
  margin-top:10px;
  font-size:18px;
  color: var(--gold);
}
.trust-rating{font-weight:800; color: var(--cta)}
.trust-note{margin-top:12px; color:var(--muted); line-height:1.5; font-size:14px}
.quote{margin:0; font-size:18px; line-height:1.5; letter-spacing:-.01em; color: var(--text); font-family: var(--font-serif)}
.quote-by{margin-top:12px; color:var(--muted); font-size:14px}

/* Footer map */
.footer-top{padding-top:32px; background: linear-gradient(180deg, var(--bg), #fff)}
.footer-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:20px;
  align-items:stretch;
}
.map-card, .info-card{
  border-radius: var(--radius);
  border:1px solid var(--stroke);
  background: var(--surface);
  overflow:hidden;
  box-shadow: var(--shadow-card);
}
.map-head{padding:20px 20px 0}
.map-embed{
  margin:16px 20px 0;
  border-radius: var(--radius-sm);
  overflow:hidden;
  border:1px solid var(--stroke);
  height: 320px;
  background: var(--bg);
}
.map-embed iframe{width:100%; height:100%; border:0}
.map-actions{display:flex; gap:10px; padding:20px; flex-wrap:wrap}

.info-card{padding:20px}
.open-now{
  margin-top:12px;
  display:flex;
  align-items:center;
  gap:10px;
  padding:12px 16px;
  border-radius: 999px;
  border:1px solid var(--stroke);
  background: var(--bg);
  font-weight:700;
  font-size:14px;
}
.dot{
  width:10px; height:10px; border-radius:999px;
  background: var(--muted-2);
}
.open-now.open .dot{background: var(--good); box-shadow: 0 0 0 4px rgba(26,155,92,0.2)}
.open-now.closed .dot{background: var(--bad); box-shadow: 0 0 0 4px rgba(196,30,58,0.15)}
.open-text{color: var(--text)}

.hours{margin-top:16px}
.hours-row{display:flex; justify-content:space-between; gap:12px; padding:12px 0; border-top:1px solid var(--stroke); font-size:14px}
.hours-day{color:var(--muted); font-weight:600}
.hours-time{font-weight:700; color: var(--text); text-align:right}
.hours-hint{color:var(--muted-2); margin-top:12px; line-height:1.4; font-size:13px}

.seo-card{
  margin-top:16px;
  border-radius: var(--radius-sm);
  padding:16px;
  background: linear-gradient(135deg, rgba(197,160,89,0.08), rgba(253,253,253,0.9));
  border:1px solid rgba(197, 160, 89, 0.28);
}
.seo-title{font-weight:700; font-size:15px}
.seo-body{margin-top:8px; color:var(--muted); line-height:1.5; font-size:14px}

/* Order */
.order-card{
  border-radius: var(--radius);
  border:1px solid var(--stroke);
  background: var(--surface);
  padding:24px;
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:24px;
  box-shadow: var(--shadow-soft);
}
.order-actions{display:flex; gap:10px; flex-wrap:wrap; margin-top:14px}
.order-mini-cart{
  border-radius: var(--radius-sm);
  border:1px solid var(--stroke);
  background: var(--bg);
  padding:18px;
  display:flex;
  flex-direction:column;
  min-height: 220px;
}
.mini-title{font-weight:700}
.mini-items{margin-top:12px; flex:1; display:flex; flex-direction:column; gap:8px}
.mini-empty{color:var(--muted); font-size:14px}
.mini-item{
  display:flex; justify-content:space-between; gap:10px;
  padding:12px;
  border-radius: var(--radius-sm);
  border:1px solid var(--stroke);
  background: var(--surface);
  font-size:14px;
}
.mini-name{font-weight:700}
.mini-qty{color:var(--muted); font-weight:600}
.mini-foot{
  margin-top:14px;
  border-top:1px solid var(--stroke);
  padding-top:14px;
  display:flex;
  flex-direction:column;
  gap:10px;
}
.mini-total{display:flex; justify-content:space-between; font-weight:800}

.mini-promo{display:flex; flex-direction:column; gap:8px}
.mini-promo-row{display:flex; gap:10px}
.mini-promo-input{
  flex:1;
  padding:12px 14px;
  border-radius: var(--radius-sm);
  border:1px solid var(--stroke-2);
  background: var(--surface);
  color: var(--text);
  font-weight:700;
  text-transform: uppercase;
  letter-spacing:.04em;
  font-size:13px;
}
.mini-promo-input:focus{
  outline:2px solid rgba(227, 24, 55, 0.35);
  outline-offset:2px;
  border-color: rgba(227, 24, 55, 0.4);
}
.mini-promo-hint{color: var(--muted); line-height:1.35; font-size:13px}
.mini-summary{display:flex; flex-direction:column; gap:8px}
.mini-line{display:flex; justify-content:space-between; font-weight:700; font-size:14px}
.mini-discount{color: var(--cta)}

/* FAB — círculo rojo minimalista */
.assistant-fab{
  position:fixed;
  right:20px;
  bottom:24px;
  z-index:120;
}
.fab-pedir{
  width:56px;
  height:56px;
  border-radius:50%;
  border:none;
  background: var(--cta);
  color:#fff;
  cursor:pointer;
  display:grid;
  place-items:center;
  box-shadow: 0 12px 32px rgba(227, 24, 55, 0.35);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  padding:0;
}
.fab-pedir:hover{
  transform: scale(1.06);
  background: var(--cta-hover);
  box-shadow: 0 16px 40px rgba(227, 24, 55, 0.42);
}
.fab-pedir:focus-visible{outline:3px solid var(--gold); outline-offset:3px}
.fab-pedir svg{width:26px;height:26px;display:block}

.assistant-avatar{
  width:40px;
  height:40px;
  border-radius: 12px;
  object-fit: contain;
  border:2px solid rgba(227, 24, 55, 0.25);
  background: #fff;
  box-shadow: 0 2px 8px rgba(227, 24, 55, 0.12);
}

.assistant-panel{
  position:fixed;
  right:20px;
  bottom:96px;
  width:min(380px, calc(100vw - 40px));
  z-index:121;
  border-radius: var(--radius);
  border:1px solid var(--stroke);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  overflow:hidden;
}
.assistant-panel-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  padding:14px 16px;
  border-bottom:1px solid var(--stroke);
  background: var(--bg);
}
.assistant-panel-left{display:flex; align-items:center; gap:12px}
.assistant-panel-title{font-weight:800; color: var(--text)}
.assistant-panel-sub{color: var(--muted); font-weight:600; font-size:12px; margin-top:2px}
.assistant-panel-body{
  padding:14px 16px;
  display:flex;
  flex-direction:column;
  gap:10px;
}
.assistant-bubble{
  max-width: 100%;
  padding:12px 14px;
  border-radius: var(--radius-sm);
  border:1px solid var(--stroke);
  background: var(--bg);
  color: var(--muted);
  line-height:1.55;
  font-size:14px;
}
.assistant-bubble strong{color: var(--text)}
.assistant-bot{
  border-color: rgba(197, 160, 89, 0.35);
  background: rgba(197, 160, 89, 0.08);
}
.assistant-panel-foot{
  padding:14px 16px;
  border-top:1px solid var(--stroke);
  display:flex;
  flex-direction:column;
  gap:10px;
  background: var(--surface);
}
.assistant-note{color: var(--muted-2); line-height:1.4; font-size:12px}

.form-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:12px;
}
.field{display:flex; flex-direction:column; gap:8px}
.field-wide{grid-column: 1 / -1}
.field-label{font-weight:700; color: var(--muted); font-size:13px}
.field-input{
  width:100%;
  padding:12px 14px;
  border-radius: var(--radius-sm);
  border:1px solid var(--stroke-2);
  background: var(--surface);
  color: var(--text);
  font-weight:600;
  font-size:15px;
}
.field-input:focus{
  outline:2px solid rgba(227, 24, 55, 0.25);
  outline-offset:2px;
  border-color: rgba(227, 24, 55, 0.35);
}
.assistant-status{
  margin-top:12px;
  color: var(--muted);
  background: var(--bg);
  border:1px solid var(--stroke);
  border-radius: var(--radius-sm);
  padding:12px 14px;
  line-height:1.45;
  font-size:14px;
}

.site-footer{
  border-top:1px solid var(--stroke);
  background: #fff;
  padding:28px 0;
}
.footer-bottom{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:14px;
  flex-wrap:wrap;
}
.footer-brand-row{
  display:flex;
  align-items:flex-start;
  gap:14px;
  flex-wrap:wrap;
}
.footer-brand-mark{
  flex-shrink:0;
  width:44px;
  height:44px;
  border-radius:12px;
  border:1px solid var(--stroke);
  object-fit:contain;
  background:var(--surface);
}
.footer-brand{font-family: var(--font-serif); font-weight:700; font-size:1.1rem}
.footer-note{margin-top:8px; color:var(--muted); max-width:60ch; line-height:1.5; font-size:14px}
.footer-right{display:flex; gap:16px; flex-wrap:wrap}
.footer-link{color:var(--muted); font-weight:600; font-size:14px}
.footer-link:hover{color: var(--cta)}

/* Dialog */
.dialog::backdrop{background: rgba(26, 26, 26, 0.45)}
.dialog{
  border:0;
  padding:0;
  background: transparent;
}
.dialog-card{
  width:min(560px, calc(100vw - 28px));
  border-radius: var(--radius);
  border:1px solid var(--stroke);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  overflow:hidden;
}
.dialog-head{
  display:flex; justify-content:space-between; align-items:center;
  gap:10px;
  padding:16px 18px;
  border-bottom:1px solid var(--stroke);
  background: var(--bg);
}
.dialog-title{font-weight:800; font-family: var(--font-serif)}
.dialog-body{padding:18px; color:var(--muted); line-height:1.55; font-size:15px}
.dialog-intro{margin:0 0 12px; color:var(--muted)}
.dialog-actions{padding:16px 18px; border-top:1px solid var(--stroke); display:flex; justify-content:flex-end; gap:10px; background: var(--surface)}

@media (max-width: 980px){
  .hero-inner{grid-template-columns: 1fr; gap:32px}
  .hero-visual{order: -1; max-width: 480px; margin: 0 auto}
  .trust-grid{grid-template-columns: 1fr}
  .footer-grid{grid-template-columns: 1fr}
  .order-card{grid-template-columns: 1fr}
  .product-card{grid-column: span 12}
}

@media (max-width: 520px){
  .hero{padding:36px 0 44px}
  .section-title{font-size:26px}
  .header-actions .btn-ghost{display:none}
  .falafel-showcase{padding: 28px 22px}
  .brand-logo-img{max-height:40px}
}
