/* ============================================================
   ASSADOS & CIA — Design System v4
   Hero corrigido · Nav útil · SVGs padronizados · Footer real
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
  --orange:       #FC8A06;
  --orange-hover: #E57A05;
  --green:        #028643;
  --green-hover:  #027138;
  --green-dark:   #015c2e;
  --dark:         #03081F;
  --bg-color:     #F9FAFB;
  --white:        #FFFFFF;
  --text-main:    #03081F;
  --text-sec:     #4B5563;
  --text-muted:   #9CA3AF;
  --border:       #E5E7EB;
  
  --radius-sm:    8px;
  --radius-md:    12px;
  --radius-lg:    16px;
  --radius-xl:    24px;
  --radius-full:  999px;
  
  --shadow-sm:    0 1px 4px rgba(0,0,0,0.05);
  --shadow-md:    0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg:    0 12px 24px rgba(0,0,0,0.12);
  
  --font: 'Poppins', sans-serif;
  --max-width: 1200px;
}

* {
  box-sizing: border-box;
  margin: 0; padding: 0;
}

body {
  font-family: var(--font);
  background-color: var(--bg-color);
  color: var(--text-main);
  line-height: 1.5;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

/* ── LAYOUT BASE ── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* ── TOP BAR ── */
.top-bar {
  background-color: var(--bg-color);
  border-bottom: 1px solid var(--border);
  padding: 8px 0;
  font-size: 13px;
  font-weight: 500;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top-bar-left {
  display: flex;
  align-items: center;
  gap: 16px;
}
.top-bar-promo {
  display: flex;
  align-items: center;
  gap: 6px;
}
.top-bar-location {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-sec);
}
.top-bar-right {
  display: flex;
  align-items: center;
}
.cart-btn-top {
  background-color: var(--green);
  color: var(--white);
  padding: 10px 24px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  transition: background 0.2s;
  box-shadow: 0 4px 12px rgba(2, 134, 67, 0.2);
}
.cart-btn-top:hover {
  background-color: var(--green-hover);
}
.cart-btn-top svg { width: 20px; height: 20px; }
.cart-divider {
  width: 1px;
  height: 24px;
  background-color: rgba(255,255,255,0.3);
}

/* ── MAIN NAV ── */
.main-nav {
  background-color: var(--white);
  padding: 16px 0;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 50;
}
.main-nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-logo {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}
.nav-logo span {
  color: var(--orange);
}
.nav-links {
  display: flex;
  gap: 8px;
  align-items: center;
}
.nav-link-anchor {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-sec);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius-full);
  transition: all 0.2s;
}
.nav-link-anchor:hover {
  background-color: var(--bg-color);
  color: var(--text-main);
}

/* Botão WhatsApp na nav */
.nav-whatsapp-btn {
  background-color: #25D366;
  color: var(--white);
  padding: 10px 24px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s, transform 0.15s;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
  white-space: nowrap;
}
.nav-whatsapp-btn:hover {
  background-color: #1ebe5a;
  transform: translateY(-1px);
}

/* ── HERO SECTION ── */
.hero-wrapper {
  margin: 32px 0;
}
.hero-box {
  background: var(--white);
  border-radius: var(--radius-xl);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.hero-content-wrap {
  display: flex;
  align-items: stretch;
  min-height: 380px;
}

/* Coluna de texto — lado esquerdo */
.hero-text {
  flex: 0 0 52%;
  max-width: 52%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px 48px 48px 48px;
  position: relative;
}

/* Eyebrow label */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(252, 138, 6, 0.08);
  border: 1px solid rgba(252, 138, 6, 0.2);
  padding: 5px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
  width: fit-content;
}

.hero-title {
  font-size: 44px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 12px;
  color: var(--text-main);
}

.hero-tagline {
  font-size: 15px;
  color: var(--text-sec);
  margin-bottom: 24px;
  line-height: 1.6;
}

/* Rating inline — no fluxo do texto, não absoluto */
.hero-rating-inline {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  padding: 12px 16px;
  background: var(--bg-color);
  border-radius: var(--radius-md);
  width: fit-content;
  border: 1px solid var(--border);
}
.hero-rating-score {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1;
}
.hero-rating-stars {
  display: flex;
  gap: 2px;
  align-items: center;
}
.hero-rating-text {
  font-size: 12px;
  color: var(--text-muted);
}

.hero-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.badge-black {
  background-color: var(--dark);
  color: var(--white);
  padding: 9px 18px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
}
.badge-black svg { width: 16px; height: 16px; flex-shrink: 0; }

/* Área do vídeo/imagem — lado direito */
.hero-image-area {
  flex: 1;
  background: var(--white);
  border-radius: 0 var(--radius-xl) 0 0;
  overflow: hidden;
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Overlay: gradiente da esquerda para transição suave com o texto */
.hero-image-area::after,
.hero-video-overlay {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--white) 0%, rgba(255,255,255,0.05) 25%, transparent 50%);
  z-index: 2;
  pointer-events: none;
}

/* Imagem e Vídeo ocupam 100% do container */
.hero-img,
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
  transition: transform 0.4s ease;
}

.hero-image-area:hover .hero-img {
  transform: scale(1.02);
}


/* Faixa "Aberto/Fechado" */
.hero-open-bar {
  background-color: var(--orange);
  color: var(--white);
  padding: 14px 48px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 600;
  position: relative;
  z-index: 5;
  border-radius: 0 0 var(--radius-xl) var(--radius-xl);
}
.hero-open-bar.closed {
  background-color: var(--dark);
}
.hero-open-bar svg { width: 20px; height: 20px; }

/* ── SEARCH ROW ── */
.search-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 48px 0 24px 0;
}
.search-title {
  font-size: 24px;
  font-weight: 600;
}
.search-input-wrap {
  position: relative;
  width: 320px;
}
.search-input-wrap input {
  width: 100%;
  padding: 12px 16px 12px 48px;
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  font-family: var(--font);
  font-size: 14px;
  outline: none;
  transition: border 0.2s;
}
.search-input-wrap input:focus {
  border-color: var(--orange);
}
.search-input-wrap svg {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-sec);
  width: 20px; height: 20px;
}

/* ── CATEGORY STRIP ── */
.cat-strip-wrap {
  position: sticky;
  top: 76px; /* Below nav */
  z-index: 40;
  margin: 16px auto 32px auto;
  padding: 8px;
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--radius-full);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.5);
  width: max-content;
  max-width: 95%; /* Fits mobile */
  transition: all 0.3s ease;
}
.cat-strip {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 0;
  scrollbar-width: none;
}
.cat-strip::-webkit-scrollbar { display: none; }
.cat-pill {
  padding: 10px 24px;
  border-radius: var(--radius-full);
  background-color: var(--white);
  color: var(--text-main);
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: var(--shadow-sm);
  transition: all 0.2s;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 6px;
}
.cat-pill:hover {
  background-color: var(--bg-color);
  border-color: var(--text-main);
}
.cat-pill.active {
  background-color: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}
.cat-pill.active[data-cat-id="aves"] {
  background-color: var(--orange);
  border-color: var(--orange);
}
.cat-pill.active[data-cat-id="carnes"] {
  background-color: #5D4037; /* Marrom escuro premium */
  border-color: #5D4037;
}
.cat-pill.active[data-cat-id="acompanhamentos"] {
  background-color: var(--green);
  border-color: var(--green);
}
.cat-pill.active[data-cat-id="bebidas"] {
  background-color: #E31837; /* Vermelho Coca-Cola */
  border-color: #E31837;
}
.cat-pill-emoji {
  font-size: 16px;
}

/* ── MENU GRID ── */
.menu-section {
  margin-bottom: 56px;
}
.menu-section-title {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 24px;
  color: var(--white);
  background-color: var(--dark);
  padding: 16px 24px;
  border-radius: var(--radius-md);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.menu-section[data-cat-section="aves"] .menu-section-title {
  background-color: var(--orange);
}
.menu-section[data-cat-section="carnes"] .menu-section-title {
  background-color: #5D4037;
}
.menu-section[data-cat-section="acompanhamentos"] .menu-section-title {
  background-color: var(--green);
}
.menu-section[data-cat-section="bebidas"] .menu-section-title {
  background-color: #E31837;
}

.menu-section-title::after {
  position: absolute;
  right: -5%;
  bottom: -25%;
  font-size: 90px;
  opacity: 0.08;
  transform: rotate(-15deg);
  pointer-events: none;
  line-height: 1;
}

.menu-section-title[data-cat="aves"]::after { content: '🐓'; }
.menu-section-title[data-cat="carnes"]::after { content: '🐖'; }
.menu-section-title[data-cat="acompanhamentos"]::after { content: '🥔'; }
.menu-section-title[data-cat="bebidas"]::after { content: '🥤'; }
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Card de Produto */
.prato-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 20px;
  display: flex;
  gap: 16px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s, transform 0.2s;
  border: 1px solid rgba(0,0,0,0.04);
  cursor: pointer;
}
.prato-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.prato-info {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.prato-nome {
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
  line-height: 1.2;
}

.prato-nome-text {
  /* Gorgeous dark-to-warm gradient for the text */
  background: linear-gradient(135deg, var(--dark) 20%, #7e22ce 150%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  transition: transform 0.3s ease;
}

/* Premium accent bar under the title */
.prato-nome::after {
  content: '';
  display: block;
  width: 24px;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), #ff4500);
  border-radius: 4px;
  margin-top: 6px;
  transition: width 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.prato-card:hover .prato-nome-text {
  transform: translateX(2px);
}

.prato-card:hover .prato-nome::after {
  width: 48px;
}
.prato-desc {
  font-size: 13px;
  color: var(--text-sec);
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.prato-preco {
  color: var(--green);
  display: flex;
  align-items: baseline;
  font-weight: 800;
  margin-top: auto;
  line-height: 1;
}

.preco-currency {
  font-size: 14px;
  margin-right: 4px;
  color: var(--text-sec);
  font-weight: 600;
}

.preco-whole {
  font-size: 24px;
  letter-spacing: -0.5px;
}

.preco-cents {
  font-size: 16px;
  vertical-align: super; /* Super script cents style */
  font-weight: 700;
}
.prato-unidade {
  font-size: 12px;
  font-weight: 400;
  color: var(--text-muted);
}
.prato-img-wrap {
  width: 130px;
  height: 130px;
  position: relative;
  flex-shrink: 0;
  border-radius: var(--radius-md);
  overflow: visible;
}
.prato-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-md);
}
.prato-img-placeholder {
  width: 100%; height: 100%;
  background: var(--bg-color);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
}
.prato-add-btn {
  position: absolute;
  bottom: -10px;
  right: -10px;
  width: 44px;
  height: 44px;
  background: var(--white);
  border: 2px solid var(--dark);
  color: var(--dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: all 0.2s;
}
.prato-add-btn:hover {
  background: var(--dark);
  color: var(--white);
}
.prato-add-btn svg { width: 20px; height: 20px; }

/* ── INFO SECTION ── */
.info-section {
  background: var(--bg-color);
  padding: 64px 0;
  border-top: 1px solid var(--border);
}
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.info-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}
.info-card.dark {
  background: var(--dark);
  color: var(--white);
}
.info-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 24px;
}
.info-card.dark .info-card-header { color: var(--white); }
.info-card-header svg { width: 24px; height: 24px; flex-shrink: 0; }

.info-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 14px;
}
.info-list-item {
  display: flex;
  justify-content: space-between;
}
.info-list-item span:first-child { font-weight: 600; }
.info-text {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-sec);
  margin-bottom: 20px;
}
.info-card.dark .info-list-item { color: rgba(255,255,255,0.9); }

.info-maps-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--orange);
  border: 1px solid rgba(252,138,6,0.3);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  transition: all 0.2s;
}
.info-maps-btn:hover {
  background: rgba(252,138,6,0.06);
}

/* ── FOOTER ── */
.footer {
  background: var(--dark);
  color: var(--white);
  padding: 64px 0 24px 0;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 48px;
  margin-bottom: 24px;
}
.footer-logo { font-size: 28px; font-weight: 700; margin-bottom: 8px; }
.footer-logo span { color: var(--orange); }
.footer-tagline {
  font-size: 15px;
  font-weight: 500;
  color: var(--orange);
  margin-bottom: 6px;
  font-style: italic;
}
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.footer-social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: all 0.2s;
}
.footer-social-btn:hover {
  background: rgba(255,255,255,0.2);
  color: var(--white);
}
.footer-links h4 { margin-bottom: 16px; font-weight: 600; color: var(--white); }
.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.65);
}
.footer-links a {
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}

/* ── DRAWER CART ── */
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(3, 8, 31, 0.4);
  backdrop-filter: blur(4px);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.drawer-overlay.open { opacity: 1; visibility: visible; }

.drawer-cart {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 400px;
  background: var(--white);
  z-index: 999;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  box-shadow: -10px 0 30px rgba(0,0,0,0.1);
}
.drawer-cart.open { transform: translateX(0); }

.drawer-header {
  padding: 24px;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.drawer-header h3 { font-size: 20px; font-weight: 600; display: flex; align-items: center; gap: 8px; }
.drawer-close-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--bg-color);
  display: flex; align-items: center; justify-content: center;
}
.drawer-close-btn:hover { background: var(--border); }

.drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 24px;
}
.drawer-empty {
  text-align: center;
  color: var(--text-muted);
  margin-top: 40px;
}
.drawer-empty-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
  opacity: 0.4;
}

.drawer-footer {
  padding: 24px;
  border-top: 1px solid var(--border);
  background: var(--white);
}
.drawer-totals {
  margin-bottom: 24px;
}
.dt-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: var(--text-sec);
  margin-bottom: 8px;
}
.dt-row.total {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-main);
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px dashed var(--border);
}
.drawer-checkout-btn {
  width: 100%;
  background: var(--orange);
  color: var(--white);
  padding: 16px;
  border-radius: var(--radius-md);
  font-size: 16px;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  transition: background 0.2s;
}
.drawer-checkout-btn:hover { background: var(--orange-hover); }

/* Cart Item */
.cart-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.cart-item:last-child { border: none; padding: 0; margin: 0; }
.ci-img {
  width: 64px; height: 64px;
  border-radius: var(--radius-sm);
  object-fit: cover;
}
.ci-img-placeholder {
  width: 64px; height: 64px;
  border-radius: var(--radius-sm);
  background: var(--bg-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  flex-shrink: 0;
}
.ci-info { flex: 1; }
.ci-nome { font-weight: 600; font-size: 14px; margin-bottom: 4px; }
.ci-preco { font-weight: 600; color: var(--text-main); }
.ci-controls {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
}
.ci-btn {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--bg-color);
  color: var(--text-main);
  font-weight: 600;
  display: flex; align-items: center; justify-content: center;
}
.ci-btn:hover { background: var(--border); }
.ci-qty { font-size: 14px; font-weight: 500; }

/* Botão de remoção individual */
.ci-remove-btn {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: #FEF2F2;
  color: #DC2626;
  border: 1px solid #FCA5A5;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  flex-shrink: 0;
}
.ci-remove-btn:hover {
  background: #DC2626;
  color: var(--white);
  border-color: #DC2626;
}

/* Botão Esvaziar Carrinho no Drawer Header */
.drawer-clear-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 600;
  color: #DC2626;
  background: #FEF2F2;
  border: 1px solid #FCA5A5;
  padding: 6px 12px;
  border-radius: var(--radius-full);
  transition: all 0.2s;
  cursor: pointer;
}
.drawer-clear-btn:hover {
  background: #DC2626;
  color: var(--white);
  border-color: #DC2626;
}

/* ── MODALS ── */
.modal-box {
  background: var(--white);
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 500px;
  position: relative;
  z-index: 1000;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.3s;
  max-height: 90vh;
  overflow-y: auto;
}
.drawer-overlay.open .modal-box {
  transform: translateY(0);
  opacity: 1;
}
.modal-header {
  padding: 24px;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.modal-header h2 { font-size: 20px; font-weight: 600; }
.modal-body { padding: 24px; }
.modal-footer {
  padding: 24px;
  border-top: 1px solid var(--border);
  background: var(--bg-color);
}
.input-group { margin-bottom: 16px; }
.input-group label { display: block; font-size: 13px; font-weight: 500; margin-bottom: 8px; }
.input-group input, .input-group textarea, .input-group select {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 14px;
  outline: none;
}
.input-group input:focus { border-color: var(--orange); }

.radio-group { display: flex; gap: 12px; flex-wrap: wrap; }
.radio-group label {
  flex: 1;
  border: 1px solid var(--border);
  padding: 12px;
  border-radius: var(--radius-sm);
  text-align: center;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.2s;
  min-width: 80px;
}
.radio-group input { display: none; }
.radio-group label:has(input:checked) {
  border-color: var(--orange);
  background: rgba(252, 138, 6, 0.05);
  color: var(--orange);
}

.primary-btn {
  width: 100%;
  background: var(--orange);
  color: var(--white);
  padding: 16px;
  border-radius: var(--radius-md);
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background 0.2s;
}
.primary-btn:hover { background: var(--orange-hover); }

/* ── TOAST DESTACADO ── */
.toast-wrap {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 10000;
  pointer-events: none;
  width: calc(100% - 32px);
  max-width: 480px;
}

@media (max-width: 768px) {
  .toast-wrap {
    bottom: 96px; /* Posicionado estrategicamente acima do botão de carrinho no celular */
  }
}

.toast {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 22px;
  border-radius: var(--radius-full);
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3), 0 4px 14px rgba(2, 134, 67, 0.4);
  animation: toastPopIn 0.45s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
  pointer-events: auto;
  backdrop-filter: blur(8px);
  width: auto;
  max-width: 100%;
}

.toast.success {
  background: linear-gradient(135deg, #028643 0%, #016331 100%);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
}

.toast.info {
  background: linear-gradient(135deg, #1E293B 0%, #0F172A 100%);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
}

.toast-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
}

.toast-msg {
  line-height: 1.3;
}

.toast.fade-out {
  animation: toastFadeOut 0.3s ease forwards;
}

@keyframes toastPopIn {
  0% {
    opacity: 0;
    transform: translateY(30px) scale(0.85);
  }
  70% {
    opacity: 1;
    transform: translateY(-4px) scale(1.04);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes toastFadeOut {
  0% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  100% {
    opacity: 0;
    transform: translateY(20px) scale(0.9);
  }
}

/* Sidebar cart (desktop) — mantido para compatibilidade */
.cart-sidebar-empty {
  text-align: center;
  color: var(--text-muted);
  margin-top: 40px;
}
.cart-sidebar-empty-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
  opacity: 0.4;
}
.csi-total-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: var(--text-sec);
  margin-bottom: 8px;
}
.csi-total-row.main {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-main);
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px dashed var(--border);
}

/* Order Summary */
.os-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--text-sec);
  padding: 4px 0;
}
.os-row.total {
  font-weight: 700;
  color: var(--text-main);
  border-top: 1px dashed var(--border);
  margin-top: 8px;
  padding-top: 8px;
  font-size: 15px;
}
.os-name { max-width: 65%; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-title { font-size: 36px; }
  .hero-text { padding: 36px 36px; }
}

@media (max-width: 900px) {
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
  .info-grid { grid-template-columns: 1fr; }
  .hero-content-wrap { flex-direction: column; }
  .hero-text { flex: none; max-width: 100%; padding: 36px 32px 24px 32px; }
  .hero-image-area {
    min-height: 280px;
    border-radius: 0;
    background-position: center top;
  }
  .hero-image-area::after { display: none; }
  .hero-open-bar { justify-content: center; padding: 14px; }
  .footer-top { flex-wrap: wrap; }
}

@media (max-width: 600px) {
  .menu-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .top-bar-promo { display: none; }
  .search-row { flex-direction: column; align-items: flex-start; gap: 16px; }
  .search-input-wrap { width: 100%; }
  .drawer-cart { width: 100%; }
  .hero-title { font-size: 30px; }
  .hero-text { padding: 28px 20px 20px 20px; }
  .hero-badges { gap: 8px; }
  .badge-black { font-size: 12px; padding: 8px 14px; }
  .nav-whatsapp-btn { padding: 9px 16px; font-size: 13px; }
  .cart-floating-btn { bottom: 20px; right: 20px; padding: 12px 18px; }
}

/* ── BOTÃO CTA HERO ── */
.hero-actions {
  margin-bottom: 24px;
}
.hero-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--orange) 0%, #F57C00 100%);
  color: var(--white);
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-size: 16px;
  font-weight: 700;
  box-shadow: 0 6px 20px rgba(252, 138, 6, 0.35);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
}
.hero-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(252, 138, 6, 0.45);
  background: linear-gradient(135deg, #E57A05 0%, #E65100 100%);
}

/* ── WEIGHT PILLS (SELEÇÃO RÁPIDA DE PESO EM KG) ── */
.weight-pills-container {
  background: var(--bg-color);
  padding: 14px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}
.weight-pills-grid {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.weight-pill {
  padding: 8px 14px;
  border-radius: var(--radius-full);
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--text-main);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}
.weight-pill:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: rgba(252, 138, 6, 0.05);
}
.weight-pill.active {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(252, 138, 6, 0.3);
}

/* ── VALIDAÇÃO VISUAL DE FORMULÁRIO ── */
.req-star {
  color: #DC2626;
  font-weight: 700;
  margin-left: 2px;
}
.input-group.has-error input,
.input-group.has-error textarea {
  border-color: #EF4444 !important;
  background-color: #FEF2F2 !important;
}
.input-group.has-error input:focus,
.input-group.has-error textarea:focus {
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.2) !important;
}
.input-error-msg {
  display: block;
  font-size: 12px;
  color: #DC2626;
  font-weight: 500;
  margin-top: 4px;
}

/* ── ALERT BOX LOJA FECHADA ── */
.closed-alert-box {
  background-color: #FEF2F2;
  border: 1px solid #FCA5A5;
  color: #991B1B;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  font-size: 13px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

/* Destaque para horário do dia de hoje */
.horario-hoje {
  color: var(--orange) !important;
  font-weight: 700 !important;
  background: rgba(252, 138, 6, 0.12);
  padding: 4px 8px;
  border-radius: var(--radius-sm);
}

/* Acessibilidade — Focus Visible */
button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--orange) !important;
  outline-offset: 2px !important;
}

/* ── BOTÃO DE CARRINHO FLUTUANTE ── */
.cart-floating-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  background-color: var(--dark);
  color: var(--white);
  padding: 14px 24px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 10px 28px rgba(3, 8, 31, 0.35);
  border: 2px solid transparent;
  transition: background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
  cursor: pointer;
}
.cart-floating-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(3, 8, 31, 0.45);
}
.cart-floating-icon-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cart-floating-badge {
  position: absolute;
  top: -8px;
  right: -10px;
  background-color: var(--orange);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  border-radius: var(--radius-full);
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}
.cart-floating-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.2;
}
.cart-floating-label {
  font-size: 11px;
  font-weight: 500;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.cart-floating-total {
  font-size: 15px;
  font-weight: 700;
}

/* Estado Preenchido ao adicionar itens ao carrinho */
.cart-floating-btn.has-items,
.cart-btn-top.has-items {
  background-color: var(--green) !important;
  color: var(--white) !important;
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 10px 30px rgba(2, 134, 67, 0.5) !important;
}
.cart-floating-btn.has-items .cart-floating-badge {
  background-color: var(--white);
  color: var(--green-dark);
  font-weight: 800;
}

/* Animação de Destaque Intenso ao Adicionar Item (Especialmente no Celular) */
.cart-highlight-anim {
  animation: cartHighlightPulse 1.2s cubic-bezier(0.25, 1, 0.5, 1) !important;
}

@keyframes cartHighlightPulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(2, 134, 67, 0.8), 0 10px 28px rgba(3, 8, 31, 0.35);
  }
  20% {
    transform: scale(1.2) translateY(-6px);
    box-shadow: 0 0 0 16px rgba(2, 134, 67, 0.35), 0 16px 40px rgba(2, 134, 67, 0.6);
  }
  40% {
    transform: scale(0.94) translateY(2px);
    box-shadow: 0 0 0 8px rgba(2, 134, 67, 0.25), 0 10px 28px rgba(2, 134, 67, 0.4);
  }
  60% {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 0 0 12px rgba(2, 134, 67, 0.2), 0 14px 32px rgba(2, 134, 67, 0.45);
  }
  80% {
    transform: scale(0.98);
    box-shadow: 0 0 0 4px rgba(2, 134, 67, 0.1), 0 10px 28px rgba(2, 134, 67, 0.4);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 10px 30px rgba(2, 134, 67, 0.5);
  }
}

.badge-pop-anim {
  animation: badgeScalePop 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}

@keyframes badgeScalePop {
  0% { transform: scale(1); }
  50% { transform: scale(1.65); background-color: var(--orange); color: #fff; }
  100% { transform: scale(1); }
}

