:root {
  --black: #080808;
  --white: #ffffff;
  --bg: #f4f5f7;
  --text: #252932;
  --muted: #6b7280;
  --line: #e1e4e8;
  --green: #22b865;
  --green-soft: #ddf8e8;
  --green-dark: #16864b;
  --gold: #c89616;
  --red: #d64545;
  --shadow: 0 12px 34px rgba(15, 23, 42, .10);
  --radius: 8px;
}

* { box-sizing: border-box; }
html {
  overflow-y: scroll;
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
}
@media (min-width: 769px) {
  html.locked {
    overflow-y: scroll;
  }
  body.locked {
    overflow: visible;
  }
}
@media (max-width: 768px) {
  html.locked,
  body.locked {
    overflow: hidden;
    overscroll-behavior: none;
  }
  body.locked {
    position: fixed;
    width: 100%;
  }
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
:focus-visible { outline: 3px solid rgba(34, 184, 101, .35); outline-offset: 2px; }
.product-card:focus,
.product-card:focus-visible,
.product-card:focus-within,
.modal-close:focus,
.modal-close:focus-visible,
.close:focus,
.close:focus-visible {
  outline: none !important;
  box-shadow: none !important;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 85;
  background: var(--black);
  color: var(--white);
  transition: box-shadow .22s ease;
}
.site-header.is-compact {
  background: var(--black);
  color: var(--white);
  box-shadow: 0 8px 22px rgba(15, 23, 42, .22);
}
.header-inner {
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 70px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
}
.top-logo { display: none; align-items: center; gap: 10px; font-weight: 700; }
.site-header.is-compact .top-logo { display: flex; }
.top-logo img { width: 38px; height: 38px; border-radius: 7px; }
.site-header.is-compact .header-inner {
  grid-template-columns: auto minmax(400px, 1fr) auto;
}
.site-header.is-compact .header-spacer { display: none; }
.site-header.is-compact .top-logo { grid-column: 1; grid-row: 1; }
.nav { display: flex; justify-content: center; gap: 78px; align-items: center; }
.nav a, .nav button {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 42px;
  padding: 0 16px;
  border: 0;
  border-radius: var(--radius);
  background: transparent;
  color: inherit;
  font-weight: 600;
}
.nav svg {
  width: 19px;
  height: 19px;
  flex: 0 0 19px;
  fill: currentColor;
}
.nav .active { background: var(--white); color: var(--black); }
.site-header.is-compact .nav .active { background: var(--black); color: var(--white); }
.site-header.is-compact .nav {
  grid-column: 3;
  grid-row: 1;
  justify-content: end;
  gap: 44px;
}
.site-header.is-compact .nav a,
.site-header.is-compact .nav button {
  min-width: 58px;
  min-height: 52px;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  padding: 4px 8px;
  font-size: .7rem;
  line-height: 1.1;
}
.compact-tools {
  display: none;
  grid-template-columns: minmax(190px, 255px) minmax(260px, 1fr);
  gap: 14px;
  justify-self: center;
  width: min(560px, 100%);
}
.site-header.is-compact .compact-tools {
  display: grid;
  grid-column: 2;
  grid-row: 1;
}

.container {
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
}
.shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 28px;
  align-items: start;
  margin-top: 26px;
  padding-bottom: 42px;
}
.main-column { min-width: 0; }
.hero-banner {
  height: clamp(180px, 23vw, 316px);
  margin-top: 18px;
  border-radius: 10px;
  overflow: hidden;
  border: 4px solid var(--white);
  box-shadow: 0 1px 0 var(--line), var(--shadow);
}
.hero-banner img { width: 100%; height: 100%; object-fit: cover; }
.store-block {
  position: relative;
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 22px;
  min-height: 138px;
  padding: 20px 0 22px;
}
.store-logo {
  width: 138px;
  height: 138px;
  margin-left: 36px;
  margin-top: -66px;
  border-radius: 10px;
  border: 4px solid var(--white);
  box-shadow: var(--shadow);
  background: var(--black);
}
.store-info h1 { margin: 0 0 12px; font-size: clamp(2rem, 3vw, 2.7rem); line-height: 1; letter-spacing: 0; }
.store-meta { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; color: var(--muted); font-weight: 600; }
.store-location {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #334155;
  font-weight: 500;
  line-height: 1;
}
.store-location svg {
  width: 16px;
  height: 16px;
  fill: #64748b;
  flex-shrink: 0;
  display: block;
}
.status-open { color: var(--green); font-weight: 600; }
.status-closed { color: #ef4444; font-weight: 600; }
.dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #94a3b8;
  flex-shrink: 0;
  display: inline-block;
  vertical-align: middle;
}
.store-link {
  border: 0;
  background: transparent;
  color: var(--text);
  font-weight: 600;
  padding: 0;
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

/* Carrossel de Banners Promocionais */
.store-banners-container {
  margin: 14px 0 24px;
  width: 100%;
  max-width: 100%;
  display: block;
}
.store-banners-slider {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius, 12px);
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.07);
  background: var(--surface, #f8fafc);
  width: 100%;
  min-width: 100%;
  aspect-ratio: 16 / 6;
  display: flex;
  align-items: center;
}
@media (max-width: 640px) {
  .store-banners-slider {
    aspect-ratio: 16 / 7;
    border-radius: 0 !important;
  }
  .store-banner-slide,
  .store-banner-slide img {
    border-radius: 0 !important;
  }
}
.store-banners-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.45s cubic-bezier(0.25, 1, 0.5, 1);
}
.store-banner-slide {
  flex: 0 0 100%;
  width: 100%;
  min-width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.store-banner-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.store-banner-slide a {
  display: block;
  width: 100%;
  height: 100%;
}
.store-banner-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.88);
  color: #1e293b;
  border: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  transition: background 0.2s, transform 0.15s;
  padding: 0;
}
.store-banner-nav-btn:hover {
  background: #ffffff;
  transform: translateY(-50%) scale(1.08);
}
.store-banner-nav-btn.prev { left: 10px; }
.store-banner-nav-btn.next { right: 10px; }
.store-banner-nav-btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}
.store-banner-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 5;
}
.store-banner-dot {
  width: 8px;
  height: 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.55);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.25s ease;
}
.store-banner-dot.active {
  width: 22px;
  background: #ffffff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.toolbar {
  display: grid;
  grid-template-columns: 190px minmax(240px, 1fr);
  gap: 16px;
  align-items: center;
  margin: 8px 0 30px;
}
.select-btn, .search, .compact-select, .coupon-input, .field input, .field select, .field textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--text);
  padding: 0 14px;
  box-shadow: 0 1px 0 rgba(15, 23, 42, .02);
}
.select-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  text-align: left;
}
.select-btn svg,
.select-icon {
  width: 21px;
  height: 21px;
  flex: 0 0 21px;
  fill: currentColor;
}
.search-wrap,
.compact-cat-wrap {
  position: relative;
  display: block;
  min-width: 0;
}
.search { padding-left: 44px; background: var(--white); }
.search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  z-index: 1;
  width: 22px;
  height: 22px;
  transform: translateY(-50%);
  fill: #6b7280;
  pointer-events: none;
}
.compact-select {
  appearance: none;
  padding-right: 42px;
}
.compact-cat-wrap .select-icon {
  position: absolute;
  right: 13px;
  top: 50%;
  transform: translateY(-50%);
  color: #6b7280;
  pointer-events: none;
}
.category-menu {
  position: absolute;
  z-index: 50;
  width: 230px;
  display: none;
  padding: 8px;
  margin-top: 6px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}
.category-menu.open { display: grid; }
.category-menu button {
  text-align: left;
  border: 0;
  background: transparent;
  padding: 11px 12px;
  border-radius: 7px;
  color: var(--text);
}
.category-menu button:hover { background: var(--bg); }
.mobile-cats { display: none; gap: 8px; overflow-x: auto; padding-bottom: 12px; margin-bottom: 16px; }
.mobile-cats button {
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--text);
  min-height: 40px;
  padding: 0 14px;
  font-weight: 600;
}
.mobile-cats button.active { background: var(--black); color: var(--white); border-color: var(--black); }

.section { margin-bottom: 38px; scroll-margin-top: 92px; }
.section-title {
  margin: 0 0 20px;
  font-size: clamp(1.45rem, 2.1vw, 2rem);
  letter-spacing: 0;
}
.destaques-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 16px;
}
.destaques-head .section-title {
  margin: 0;
}
.destaques-nav-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}
.destaques-nav-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  background: var(--white);
  color: var(--black);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.18s ease;
  padding: 0;
}
.destaques-nav-btn:hover:not(:disabled) {
  background: #f8fafc;
  border-color: #cbd5e1;
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}
.destaques-nav-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  pointer-events: none;
}
.destaques-carousel-wrap {
  position: relative;
  overflow: hidden;
  margin: 0 -4px;
  padding: 4px;
}
.feature-carousel,
.feature-grid {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 8px;
}
.feature-carousel::-webkit-scrollbar,
.feature-grid::-webkit-scrollbar {
  display: none;
}
.feature-carousel .feature-card,
.feature-grid .feature-card {
  flex: 0 0 260px;
  max-width: 260px;
  width: 260px;
  scroll-snap-align: start;
  min-height: 370px;
  box-sizing: border-box;
}
.product-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.product-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 1px 0 rgba(15, 23, 42, .02);
  overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease;
  cursor: pointer;
}
.product-card * {
  cursor: inherit;
}
.product-card:not(.soldout):hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.product-card.soldout {
  cursor: not-allowed;
}
.feature-card {
  padding: 8px 8px 14px;
  display: flex;
  flex-direction: column;
  min-height: 386px;
  height: 100%;
}
.feature-card img {
  width: 100%;
  aspect-ratio: 1.37 / 1;
  height: auto;
  min-height: 0;
  object-fit: cover;
  border-radius: 7px;
}
.feature-card .product-content {
  padding: 14px 2px 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  flex: 1;
}
.feature-card h3 {
  font-size: 1.05rem;
  line-height: 1.25;
}
.feature-card p {
  -webkit-line-clamp: 2;
  font-size: .95rem;
}
.feature-card .tag {
  margin-bottom: 2px;
  background: #fff2bd;
  color: #b67b00;
}
.feature-card .price-line { margin-top: auto; padding-top: 2px; }
.compact-card {
  min-height: 168px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 136px;
  gap: 14px;
  padding: 16px;
}
.compact-card img {
  grid-column: 2;
  grid-row: 1;
  width: 128px;
  height: 128px;
  align-self: start;
  justify-self: end;
  object-fit: cover;
  border-radius: var(--radius);
}
.product-content { padding: 16px; }
.compact-card .product-content {
  grid-column: 1;
  grid-row: 1;
  min-width: 0;
  padding: 0;
  display: flex;
  min-height: 136px;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
}
.product-card h3 { margin: 0; font-size: 1.05rem; line-height: 1.3; }
.product-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
  font-size: .94rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.price-line { display: flex; gap: 9px; align-items: center; flex-wrap: wrap; margin-top: auto; }
.price { color: var(--green); font-weight: 700; font-size: 1.08rem; }
.old-price { color: var(--muted); text-decoration: line-through; }
.discount, .tag {
  display: inline-flex;
  min-height: 25px;
  align-items: center;
  border-radius: 6px;
  padding: 0 8px;
  background: var(--green-soft);
  color: var(--green-dark);
  font-weight: 600;
  font-size: .78rem;
}
.tag { background: #fff6d8; color: #9a6d08; }
.soldout::after {
  content: "Esgotado";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, .72);
  color: var(--red);
  font-size: 1.4rem;
  font-weight: 700;
}

.bag-mobile-header { display: none !important; }
.bag-backdrop { display: none !important; }

.bag {
  position: sticky;
  top: 90px;
  max-height: calc(100vh - 110px);
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 1px 3px rgba(15, 23, 42, .08);
  overflow: hidden;
}
.bag-delivery {
  flex: 0 0 auto;
  width: calc(100% - 24px);
  margin: 12px 12px 6px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  background: #f8fafc;
  color: #0f172a;
  text-align: left;
  cursor: pointer;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
  transition: all 0.2s ease;
}

.bag-delivery:hover {
  background: #f1f5f9;
  border-color: #cbd5e1;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.bag-delivery:active {
  transform: scale(0.99);
}

.bag-delivery-icon-box {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #334155;
  flex-shrink: 0;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
}

.bag-delivery-icon-box svg {
  width: 18px;
  height: 18px;
  display: block;
}

.bag-delivery [data-delivery-label] {
  display: grid;
  gap: 2px;
  min-width: 0;
  flex: 1;
}

.bag-delivery [data-delivery-label] strong {
  font-size: 0.84rem;
  font-weight: 600;
  color: #0f172a;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.25;
}

.bag-delivery [data-delivery-label] small {
  font-size: 0.76rem;
  font-weight: 400;
  color: #64748b;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.25;
}

.bag-delivery-chevron {
  width: 16px;
  height: 16px;
  color: #94a3b8;
  flex-shrink: 0;
  margin-left: auto;
  transition: transform 0.2s ease, color 0.2s ease;
}

.bag-delivery:hover .bag-delivery-chevron {
  color: #475569;
  transform: translateX(2px);
}

.coupon-toggle {
  flex: 0 0 auto;
  width: 100%;
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 16px;
  border: 0;
  border-top: 1px dashed var(--line);
  border-bottom: 1px dashed var(--line);
  background: var(--white);
  color: var(--text);
  font-weight: 600;
  text-align: left;
}
.coupon-toggle svg {
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
  fill: var(--green);
}
.coupon-toggle span { display: grid; gap: 2px; flex: 1; }
.coupon-toggle small { color: var(--muted); font-weight: 500; }
.bag-body {
  flex: 1 1 auto;
  min-height: 120px;
  overflow-y: auto;
  padding: 14px 12px 18px;
  overscroll-behavior: contain;
}
.empty-bag {
  min-height: 190px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 30px 16px;
}
.empty-bag-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.empty-bag-icon {
  width: 56px;
  height: 56px;
  color: #9ca3af;
  stroke: #9ca3af;
  flex-shrink: 0;
}
.empty-bag-text {
  font-size: 0.95rem;
  font-weight: 600;
  color: #9ca3af;
  margin: 0;
}
.bag-filled { display: flex; flex-direction: column; }
.bag-filled h2 { margin: 0; font-size: 1.05rem; }
.bag-title { display: flex; justify-content: space-between; align-items: center; gap: 10px; margin: 2px 4px 14px; }
.link-btn { border: 0; background: transparent; color: #111827; font-size: .74rem; font-weight: 600; padding: 4px; text-transform: uppercase; }
.bag-items { display: grid; gap: 12px; max-height: none; padding: 0 2px; }
.bag-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 56px;
  grid-template-rows: auto auto;
  border: 1px solid #e5d88a;
  border-radius: 5px;
  background: #fffdf0;
  overflow: hidden;
  gap: 0 10px;
}
.bag-item-main {
  grid-column: 1 / 2;
  grid-row: 1 / 2;
  min-width: 0;
  padding: 10px 0 10px 10px;
}
.bag-item-top { display: flex; align-items: start; justify-content: space-between; gap: 10px; }
.bag-item-top strong { font-size: .9rem; line-height: 1.35; font-weight: 600; }
.bag-item-top b { flex: 0 0 auto; font-size: .92rem; }
.bag-item img {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
  width: 50px;
  height: 50px;
  margin: 10px 10px 10px 0;
  align-self: center;
  border-radius: 5px;
  object-fit: cover;
}
.bag-item small { display: block; color: var(--muted); margin-top: 6px; line-height: 1.3; }
.bag-actions { display: flex; gap: 12px; margin-top: 8px; }
.bag-actions button { border: 0; background: transparent; color: var(--text); font-weight: 600; padding: 0; font-size: .86rem; }
.bag-actions button + button { color: var(--muted); font-weight: 600; }
.promo-note {
  grid-column: 1 / -1;
  grid-row: 2 / 3;
  margin: 0;
  padding: 7px 10px;
  background: #fff3b8;
  color: #b38312;
  font-size: .75rem;
}
.suggestions { margin-top: 24px; }
.suggestions h3 { font-size: 0.96rem; font-weight: 700; color: var(--text); margin: 0 4px 10px; }
.suggestion-row {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 2px 2px 10px;
  -webkit-overflow-scrolling: touch;
}
.suggestion {
  flex: 0 0 114px;
  width: 114px;
  min-height: 175px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  padding: 6px;
  text-align: left;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  position: relative;
  transition: transform 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.suggestion:hover {
  border-color: #cbd5e1;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.07);
}
.suggestion:active {
  transform: scale(0.96);
  border-color: var(--green);
}
.suggestion.added-feedback {
  animation: suggestionPulse 0.35s ease;
  border-color: var(--green);
}
@keyframes suggestionPulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.04); box-shadow: 0 0 0 2px rgba(22, 163, 74, 0.25); }
  100% { transform: scale(1); }
}
.suggestion-thumb {
  position: relative;
  width: 100%;
  height: 86px;
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 7px;
  background: #f8fafc;
}
.suggestion-thumb img,
.suggestion img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.suggestion-add-btn {
  position: absolute;
  right: 6px;
  bottom: 6px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--button-color, var(--green, #22b865));
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.28);
  pointer-events: none;
  transition: transform 0.15s ease, background-color 0.15s ease;
  z-index: 2;
}
.suggestion-add-btn svg {
  display: block;
}
.suggestion:hover .suggestion-add-btn {
  transform: scale(1.12);
}
.suggestion:active .suggestion-add-btn {
  transform: scale(0.92);
}
.suggestion.added-feedback .suggestion-add-btn {
  transform: scale(1.22);
}
.suggestion .suggestion-name {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text);
  min-height: 32px;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-height: 1.25;
}
.suggestion-price {
  margin-top: auto;
  padding-top: 4px;
  display: flex;
  align-items: baseline;
  gap: 3px 5px;
  flex-wrap: wrap;
}
.suggestion-price small {
  color: var(--muted);
  text-decoration: line-through;
  font-size: .70rem;
  line-height: 1;
}
.suggestion-price em {
  padding: 1px 4px;
  border-radius: 4px;
  background: #d9f8e5;
  color: #098f3b;
  font-size: .65rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1;
}
.suggestion-price strong {
  flex-basis: 100%;
  color: var(--green);
  font-weight: 700;
  font-size: 0.92rem;
  line-height: 1.1;
}
.coupon-area {
  display: none;
  flex-direction: column;
  gap: 8px;
  padding: 12px 14px;
  border-top: 1px dashed var(--line);
  background: var(--white);
  flex: 0 0 auto;
}
.bag.coupon-open .coupon-area {
  display: flex !important;
}
.coupon-input-row {
  display: flex;
  gap: 8px;
  width: 100%;
}
.coupon-input-row .coupon-input {
  flex: 1;
  min-width: 0;
}
.coupon-feedback {
  font-size: 0.83rem;
  font-weight: 600;
  line-height: 1.35;
  padding: 2px 0;
  animation: couponFeedbackFade 0.2s ease;
}
@keyframes couponFeedbackFade {
  from { opacity: 0; transform: translateY(-3px); }
  to { opacity: 1; transform: translateY(0); }
}
.coupon-feedback.error {
  color: #e11d48;
}
.coupon-feedback.success {
  color: #16a34a;
}
.coupon-applied-actions {
  display: flex;
  justify-content: flex-end;
}
.coupon-remove-btn {
  background: transparent;
  border: 0;
  color: #ef4444 !important;
  font-size: 0.78rem !important;
  font-weight: 600;
  padding: 2px 4px !important;
  cursor: pointer;
  text-decoration: underline;
  transition: opacity 0.15s;
}
.coupon-remove-btn:hover {
  opacity: 0.8;
}
.mini-btn { border: 0; border-radius: var(--radius); background: var(--black); color: var(--white); padding: 0 12px; min-height: 42px; font-weight: 600; }
.totals { padding: 14px 16px; display: grid; gap: 10px; border-top: 1px dashed var(--line); flex: 0 0 auto; }
.totals div { display: flex; justify-content: space-between; gap: 10px; color: var(--muted); }
.totals .grand { color: var(--text); font-size: 1.08rem; font-weight: 700; }
.bag-footer { padding: 14px; border-top: 1px solid var(--line); flex: 0 0 auto; }
.primary {
  width: 100%;
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
  border: 0;
  border-radius: var(--radius);
  background: var(--black);
  color: var(--white);
  font-weight: 600;
}
.bag [data-continue]:disabled,
button[data-continue]:disabled {
  background: #64748b !important;
  color: #e2e8f0 !important;
  opacity: 0.65 !important;
  cursor: not-allowed !important;
  box-shadow: none !important;
}
.whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 39;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: transparent;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.whatsapp img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.mobile-bag {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 58px;
  z-index: 62;
  min-height: 48px;
  border: 0;
  border-radius: 0;
  background: var(--black);
  color: var(--white);
  box-shadow: var(--shadow);
  font-weight: 600;
  padding: 0 14px;
}
.mobile-bag.show {
  grid-template-columns: 52px 1fr auto;
  align-items: center;
  gap: 10px;
}
.mobile-cart-icon {
  position: relative;
  justify-self: start;
  display: inline-flex;
}
.mobile-cart-icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}
.mobile-cart-icon em {
  position: absolute;
  right: -9px;
  bottom: -2px;
  min-width: 19px;
  height: 19px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--white);
  color: var(--black);
  font-size: .73rem;
  font-style: normal;
  line-height: 1;
}
.mobile-bag strong { justify-self: center; }
.mobile-bag b { justify-self: end; }

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 95;
  background: rgba(8, 8, 8, .58);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  width: min(860px, calc(100% - 28px));
  height: min(640px, calc(100dvh - 28px));
  max-height: calc(100dvh - 28px);
  margin: auto;
  border: 0;
  padding: 0;
  border-radius: 10px;
  background: var(--white);
  color: var(--text);
  box-shadow: var(--shadow);
  overflow: hidden;
  overscroll-behavior: contain;
}
dialog::backdrop,
.modal::backdrop,
.sheet::backdrop {
  background: rgba(8, 8, 8, .58);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.product-modal[open] { display: grid; grid-template-columns: 46% 54%; }
@media (min-width: 981px) {
  .product-modal {
    overflow: clip;
  }
}
.modal-media {
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: var(--white);
  border-right: 1px solid var(--line);
}
.modal-image-frame {
  width: 360px;
  height: 360px;
  max-width: 100%;
  max-height: 100%;
  aspect-ratio: 1 / 1;
  flex: 0 0 auto;
  overflow: hidden;
  border-radius: var(--radius);
  background: #f7f7f7;
  box-shadow: 0 1px 0 rgba(15, 23, 42, .04);
}
.modal-media img {
  width: 100% !important;
  height: 100% !important;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
}
.modal-panel { display: grid; grid-template-rows: auto minmax(0, 1fr) auto; min-height: 0; height: 100%; overflow: hidden; }
.modal-head { padding: 24px 26px 12px; border-bottom: 1px solid var(--line); position: relative; }
.close { position: absolute; top: 12px; right: 12px; width: 38px; height: 38px; border: 0; border-radius: 50%; background: var(--bg); font-weight: 700; }
.close svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}
.product-close {
  z-index: 6;
  display: grid;
  place-items: center;
  color: #4b5563;
}
.modal-scroll {
  min-height: 0;
  overflow: auto;
  overscroll-behavior: contain;
  padding: 18px 26px;
  display: block;
}
.modal-scroll > * + * { margin-top: 16px; }
.modal-head h2 { margin: 0 38px 8px 0; font-size: 1.7rem; }
.muted { color: var(--muted); }
.option-box { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: border-color .2s ease, box-shadow .2s ease; }
.option-box.addon-error-highlight {
  border-color: #ef4444 !important;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.25) !important;
  animation: addonShake 0.4s ease-in-out;
}
.button-error-shake {
  animation: addonShake 0.4s ease-in-out;
}
@keyframes addonShake {
  0%, 100% { transform: translateX(0); }
  20%, 60% { transform: translateX(-4px); }
  40%, 80% { transform: translateX(4px); }
}
.option-title { padding: 12px 16px; background: #f4f5f7; border-bottom: 1px solid var(--line); }
.option-title strong, .option-title small { display: block; }
.option-title small { color: var(--muted); margin-top: 3px; }
.option-row {
  min-height: 44px;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  padding: 9px 16px;
  border-bottom: 1px solid var(--line);
}
.option-row:last-child { border-bottom: 0; }
.option-row label { display: flex; gap: 10px; align-items: center; }
.option-choice {
  width: 100%;
  justify-content: space-between;
  cursor: pointer;
}
.option-choice input {
  position: absolute;
  left: 0;
  top: 0;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
.addon-option-thumb {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid var(--line);
  background: #f8fafc;
}
.option-choice span {
  min-width: 0;
  flex: 1;
}
.option-choice strong {
  flex: 0 0 auto;
  font-size: .92rem;
}
.option-circle {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  border: 2px solid #c7ccd4;
  border-radius: 999px;
  background: var(--white);
  box-shadow: inset 0 0 0 5px var(--white);
}
.option-choice input:checked ~ .option-circle {
  border-color: var(--black);
  background: var(--black);
}
.field { display: grid; gap: 7px; font-weight: 600; }
.field textarea { min-height: 88px; padding: 12px 14px; resize: vertical; }
.modal-footer {
  display: grid;
  grid-template-columns: 126px 1fr;
  gap: 12px;
  align-items: center;
  padding: 16px 26px;
  border-top: 1px solid var(--line);
  background: var(--white);
  z-index: 2;
}
.qty { display: grid; grid-template-columns: 38px 1fr 38px; align-items: center; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; min-height: 48px; }
.qty button {
  border: 0;
  background: var(--white);
  color: var(--text, #1e293b) !important;
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.qty button:hover,
.qty button:active {
  color: var(--text, #1e293b) !important;
  background: #f8fafc;
}
.qty strong {
  text-align: center;
  color: var(--text, #1e293b) !important;
}
.add-label { white-space: nowrap; }
.sheet {
  width: min(500px, calc(100% - 24px));
  border: 0;
  border-radius: 10px;
  padding: 24px;
  background: var(--white);
  color: var(--text);
  box-shadow: var(--shadow);
}
.sheet h2 { margin: 0 0 10px; }
.sheet-form { display: grid; gap: 14px; }
/* Modal de identificação de telefone no carrinho */
dialog.sheet[data-phone-modal] {
  width: min(440px, calc(100% - 32px));
  max-width: 440px;
  border: 0;
  border-radius: 16px;
  padding: 30px 28px 28px;
  background: var(--white, #ffffff);
  color: var(--text, #1e293b);
  box-shadow: 0 20px 40px -10px rgba(15, 23, 42, 0.18), 0 0 1px rgba(15, 23, 42, 0.12);
  position: fixed;
  inset: 0;
  margin: auto;
  overflow: hidden;
}

dialog.sheet[data-phone-modal] .sheet-form {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

dialog.sheet[data-phone-modal] h2 {
  font-size: 1.35rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 36px 8px 0;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

dialog.sheet[data-phone-modal] .muted {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.5;
  margin: 0 0 22px 0;
}

dialog.sheet[data-phone-modal] .close {
  position: absolute;
  top: 0;
  right: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 0;
  background: #f1f5f9;
  color: #64748b;
  font-size: 1.25rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.15s ease;
}

dialog.sheet[data-phone-modal] .close:hover {
  background: #e2e8f0;
  color: #0f172a;
}

dialog.sheet[data-phone-modal] .field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  color: #334155;
  margin-bottom: 20px;
  padding: 0 !important;
}

dialog.sheet[data-phone-modal] input {
  width: 100%;
  height: 48px;
  padding: 0 14px;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  font-size: 1rem;
  color: #0f172a;
  background: #ffffff;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  box-sizing: border-box;
}

dialog.sheet[data-phone-modal] input:focus {
  border-color: var(--green, #22b865);
  box-shadow: 0 0 0 3px rgba(34, 184, 101, 0.15);
  outline: none;
}

dialog.sheet[data-phone-modal] .customer-greeting {
  font-size: 1.05rem;
  color: #334155;
  line-height: 1.45;
  margin: 6px 0 24px 0;
  padding: 0;
}

dialog.sheet[data-phone-modal] .customer-greeting strong {
  font-weight: 700;
  color: #0f172a;
}

dialog.sheet[data-phone-modal] button.primary[data-go-checkout] {
  width: 100%;
  height: 50px;
  min-height: 50px;
  border-radius: 10px;
  background: var(--black, #0f172a);
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
  border: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 4px;
  transition: background 0.15s ease, transform 0.1s ease;
}

dialog.sheet[data-phone-modal] button.primary[data-go-checkout]:hover {
  background: #1e293b;
}

dialog.sheet[data-phone-modal] button.primary[data-go-checkout]:active {
  transform: scale(0.99);
}

@media (max-width: 480px) {
  dialog.sheet[data-phone-modal] {
    width: calc(100% - 24px);
    max-width: 380px;
    padding: 24px 20px 22px;
    border-radius: 14px;
  }
  dialog.sheet[data-phone-modal] h2 {
    font-size: 1.2rem;
    margin-right: 32px;
  }
  dialog.sheet[data-phone-modal] .muted {
    font-size: 0.85rem;
    margin-bottom: 18px;
  }
  dialog.sheet[data-phone-modal] .field {
    margin-bottom: 18px;
  }
  dialog.sheet[data-phone-modal] .customer-greeting {
    font-size: 0.98rem;
    margin: 4px 0 20px 0;
  }
  dialog.sheet[data-phone-modal] input,
  dialog.sheet[data-phone-modal] button.primary[data-go-checkout] {
    height: 48px;
    min-height: 48px;
    font-size: 0.98rem;
  }
}
.choice-grid { display: grid; gap: 8px; margin: 16px 0; }
.choice { border: 1px solid var(--line); border-radius: var(--radius); padding: 14px; display: flex; gap: 10px; align-items: start; }
.info-sheet {
  width: min(610px, calc(100% - 24px));
  min-height: 520px;
  padding: 0;
  overflow: hidden;
}
.info-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 0 26px;
}
.info-head h2 { margin: 0; font-size: 1.25rem; }
.info-head .close {
  position: static;
  flex: 0 0 auto;
}
.info-close svg {
  width: 24px;
  height: 24px;
  fill: #6b7280;
}
.info-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
}
.info-tabs button {
  min-height: 48px;
  border: 0;
  border-bottom: 2px solid transparent;
  background: transparent;
  color: #777;
  font-size: .85rem;
  font-weight: 600;
  text-transform: uppercase;
}
.info-tabs button.active {
  color: var(--black);
  border-bottom-color: var(--black);
}
.info-panel {
  display: none;
  padding: 26px 30px 34px;
}
.info-panel.active { display: block; }
.info-about {
  display: flex;
  gap: 24px;
  align-items: center;
  margin-bottom: 34px;
}
.info-logo {
  width: 96px;
  height: 96px;
  border-radius: 7px;
  background: var(--black);
}
.info-social {
  display: grid;
  gap: 14px;
  color: #374151;
}
.info-social p,
.info-highlight,
[data-info-highlight] {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.4;
  color: #374151;
  max-width: 340px;
  word-break: break-word;
  overflow-wrap: break-word;
}
.stars {
  color: #f5be2d;
  letter-spacing: 2px;
  font-size: 1.08rem;
  font-weight: 700;
}
.info-social a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #4b5563;
  font-weight: 700;
}
.info-social svg,
.payment-list svg {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
}
.info-panel h3 {
  margin: 0 0 16px;
  font-size: 1.15rem;
}
.info-panel p {
  margin: 0 0 28px;
  color: #374151;
  line-height: 1.55;
}
.contact-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 34px;
}
.contact-buttons a {
  width: auto;
  min-width: 170px;
  height: 44px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 2px solid var(--black);
  border-radius: 5px;
  padding: 0 13px;
  color: var(--black);
  font-weight: 600;
}
.contact-buttons svg {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  fill: currentColor;
}
.contact-buttons span {
  white-space: nowrap;
}
.hours-list {
  width: min(330px, 100%);
  display: grid;
  gap: 13px;
}
.hours-list div {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 22px;
  min-height: 39px;
  padding: 0 10px;
  color: #374151;
}
.hours-list .today {
  background: #f1f2f5;
  border-radius: 5px;
}
.payment-list {
  display: grid;
  gap: 14px;
  justify-items: start;
}
.payment-list span {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0 18px;
  border-radius: 5px;
  background: #f1f2f5;
  color: #374151;
  font-weight: 700;
}
.payment-list svg { fill: #374151; }
.footer { padding: 28px 0 90px; color: var(--muted); border-top: 1px solid var(--line); }

@media (max-width: 980px) {
  body { padding-bottom: 116px; }
  .site-header,
  .site-header.is-compact {
    position: fixed;
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 61;
    background: var(--white);
    color: #a4acb8;
    box-shadow: 0 -1px 10px rgba(15, 23, 42, .14);
  }
  .header-inner,
  .site-header.is-compact .header-inner {
    width: 100%;
    min-height: 58px;
    display: block;
  }
  .header-spacer,
  .top-logo,
  .site-header.is-compact .top-logo,
  .compact-tools { display: none !important; }
  .nav {
    height: 58px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    justify-content: stretch;
    align-items: center;
  }
  .site-header.is-compact .nav { grid-column: auto; grid-row: auto; gap: 0; }
  .nav a,
  .nav button,
  .site-header.is-compact .nav a,
  .site-header.is-compact .nav button {
    min-width: 0;
    min-height: 58px;
    width: 100%;
    flex-direction: column;
    justify-content: center;
    gap: 3px;
    padding: 3px 4px;
    border-radius: 0;
    color: inherit;
    font-size: .66rem;
    line-height: 1.1;
  }
  .nav a span,
  .nav button span {
    display: inline;
    font-weight: 600;
  }
  .nav svg {
    width: 22px;
    height: 22px;
    flex-basis: 22px;
  }
  .nav .active,
  .site-header.is-compact .nav .active {
    background: transparent;
    color: var(--black);
  }
  .nav a:hover,
  .nav button:hover,
  .site-header.is-compact .nav a:hover,
  .site-header.is-compact .nav button:hover {
    color: var(--black);
    opacity: 1;
  }
  .nav a:hover svg,
  .nav button:hover svg,
  .site-header.is-compact .nav a:hover svg,
  .site-header.is-compact .nav button:hover svg {
    fill: var(--black);
  }
  .shell { grid-template-columns: 1fr; }
  .bag-backdrop {
    display: block !important;
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.55);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    z-index: 62;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.22s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .bag-backdrop.active {
    opacity: 1;
    pointer-events: auto;
  }
  .bag { display: none; }
  .bag.mobile-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0 !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100vw !important;
    max-width: 100vw !important;
    height: 100dvh !important;
    max-height: 100dvh !important;
    min-height: 100dvh !important;
    margin: 0 !important;
    border-radius: 0 !important;
    border: 0 !important;
    box-shadow: none !important;
    background: var(--white);
    z-index: 95;
    overflow: hidden;
    animation: bagFullscreenIn 0.22s cubic-bezier(0.16, 1, 0.3, 1);
  }
  @keyframes bagFullscreenIn {
    from {
      opacity: 0;
      transform: translateY(16px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  .bag-mobile-header {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    padding: max(14px, env(safe-area-inset-top, 14px)) max(16px, env(safe-area-inset-right, 16px)) 14px max(16px, env(safe-area-inset-left, 16px));
    border-bottom: 1px solid var(--line);
    background: var(--white);
    flex: 0 0 auto;
    z-index: 2;
  }
  .bag-mobile-header-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--text);
  }
  .bag-mobile-header-title svg {
    color: var(--theme-primary, var(--black));
    flex-shrink: 0;
  }
  .bag-close-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 0;
    background: var(--bg, #f1f5f9);
    color: var(--muted, #64748b);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
    transition: background 0.15s, color 0.15s, transform 0.12s;
  }
  .bag-close-btn:active {
    transform: scale(0.92);
    background: #e2e8f0;
    color: var(--text, #0f172a);
  }
  .bag-close-btn svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
  }
  .bag.mobile-open .bag-delivery {
    min-height: 52px;
    padding: 12px 16px;
    border-bottom: 1px dashed var(--line);
    background: var(--white);
    flex: 0 0 auto;
  }
  .bag.mobile-open .bag-body {
    flex: 1 1 auto;
    min-height: 0;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    padding: 14px 16px;
  }
  .bag.mobile-open .coupon-toggle {
    min-height: 50px;
    padding: 10px 16px;
    border-top: 1px dashed var(--line);
    border-bottom: 1px dashed var(--line);
    background: var(--white);
    flex: 0 0 auto;
  }
  .bag.mobile-open .coupon-area {
    padding: 10px 16px;
    background: var(--white);
    flex: 0 0 auto;
  }
  .bag.mobile-open .totals {
    padding: 12px 16px;
    background: var(--white);
    flex: 0 0 auto;
    border-top: 1px dashed var(--line);
  }
  .bag.mobile-open .bag-footer {
    padding: 12px 16px max(14px, env(safe-area-inset-bottom, 14px));
    border-top: 1px solid var(--line);
    background: var(--white);
    flex: 0 0 auto;
    margin: 0;
  }
  .bag.mobile-open .bag-title h2 {
    font-size: 0.88rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--muted);
    font-weight: 700;
  }
  .mobile-bag.show { display: grid; }
  .container { width: 100%; }
  .hero-banner,
  .hero-banner img {
    width: 100%;
    height: 180px;
    margin-top: 0;
    border: 0;
    border-radius: 0 !important;
    box-shadow: none;
  }
  .store-banners-container {
    margin: 0 0 20px;
    box-shadow: none;
  }
  .store-banners-slider {
    touch-action: pan-y;
  }
  .store-banners-slider,
  .store-banner-slide,
  .store-banner-slide img {
    border-radius: 0 !important;
    box-shadow: none !important;
  }
  .store-banner-nav-btn {
    display: none !important;
  }
  .store-banner-dots {
    bottom: 8px;
  }
  .shell {
    margin-top: 0;
    gap: 18px;
    padding: 0 0 24px;
  }
  .main-column { padding: 0; }
  .store-block {
    z-index: 1;
    display: block;
    min-height: 140px;
    margin: -32px 0 0;
    padding: 16px 18px 20px;
    border-radius: 18px 18px 0 0;
    background: var(--white);
    box-shadow: none;
    text-align: center;
  }
  .store-block:has(+ .store-banners-container[hidden]) {
    margin-bottom: 18px;
    border-radius: 18px;
    box-shadow: 0 1px 0 var(--line);
  }
  .store-logo {
    width: 88px;
    height: 88px;
    margin: 0 auto 12px;
    border: 4px solid var(--white);
    border-radius: 999px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
  }
  .store-info h1 { font-size: 1.36rem; margin-bottom: 10px; }
  .store-meta {
    justify-content: center;
    align-items: center;
    gap: 8px;
    font-size: .88rem;
    line-height: 1;
  }
  .store-meta .dot-status,
  .store-meta .dot:first-of-type {
    display: none !important;
  }
  .store-location {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #334155;
    font-weight: 500;
    line-height: 1;
  }
  .store-location svg {
    width: 15px;
    height: 15px;
    fill: #64748b;
    flex-shrink: 0;
    display: block;
  }
  .store-meta .dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #94a3b8;
    flex-shrink: 0;
    display: inline-block;
    align-self: center;
    margin: 0 1px;
  }
  .store-link {
    display: inline-flex;
    align-items: center;
    line-height: 1;
    color: var(--text, #1e293b);
    font-weight: 600;
  }
  .store-meta .status-open,
  .store-meta .status-closed {
    flex-basis: 100%;
    order: 5;
    margin-top: 5px;
    font-weight: 600;
    font-size: .88rem;
    line-height: 1.2;
  }
  .toolbar {
    grid-template-columns: minmax(0, 1fr) 44px;
    gap: 10px;
    align-items: center;
    margin: 0 8px 30px;
  }
  .select-wrap { display: block; }
  .select-btn {
    min-height: 40px;
    padding: 0 11px;
    font-size: .92rem;
  }
  .toolbar .search-wrap {
    width: 44px;
    height: 40px;
    justify-self: end;
  }
  .toolbar .search {
    min-height: 40px;
    height: 40px;
    padding: 0;
    color: transparent;
    caret-color: transparent;
  }
  .toolbar .search::placeholder { color: transparent; }
  .toolbar .search-icon {
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .mobile-cats { display: none; }
  .section { padding: 0 8px; }
  .footer {
    padding-left: 20px;
    padding-right: 20px;
  }
  /* Carrossel Destaques no Mobile: 2 cards inteiros + ~15% do 3º card */
  .destaques-nav-controls {
    display: none !important;
  }
  .destaques-carousel-wrap {
    overflow: visible;
    margin: 0 -8px;
    padding: 4px 8px;
  }
  .feature-carousel {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: auto;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    touch-action: pan-x pan-y;
    padding: 4px 2px 14px;
    align-items: stretch;
    -webkit-user-select: none;
    user-select: none;
  }
  .feature-carousel::-webkit-scrollbar {
    display: none;
  }
  .feature-carousel .feature-card,
  .feature-grid .feature-card {
    /* 2 cards completos + 2 gaps de 10px + ~25% do 3º card visível */
    flex: 0 0 calc((100% - 20px) / 2.25);
    width: calc((100% - 20px) / 2.25);
    max-width: calc((100% - 20px) / 2.25);
    scroll-snap-align: start;
    scroll-snap-stop: normal;
    box-sizing: border-box;
    min-height: 0;
    height: auto;
    padding: 8px 8px 12px;
    display: flex;
    flex-direction: column;
    -webkit-user-select: none;
    user-select: none;
  }
  .feature-card { min-height: 0; }
  .feature-card img {
    aspect-ratio: 1.37 / 1;
    height: auto;
    width: 100%;
    object-fit: cover;
    border-radius: 7px;
    -webkit-user-drag: none;
    user-drag: none;
    -webkit-user-select: none;
    user-select: none;
    pointer-events: none;
  }
  .feature-card .product-content {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 8px 2px 0;
    gap: 6px;
  }
  .feature-card h3 {
    font-size: 0.92rem;
    line-height: 1.24;
    margin-bottom: 2px;
    word-break: break-word;
  }
  .feature-card p {
    font-size: 0.78rem;
    line-height: 1.26;
    margin-bottom: 6px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .feature-card .price-line {
    margin-top: auto;
    padding-top: 4px;
    gap: 4px 6px;
    align-items: baseline;
    flex-wrap: wrap;
  }
  .feature-card .price {
    font-size: 0.96rem;
    font-weight: 700;
    white-space: nowrap;
  }
  .feature-card .old-price {
    font-size: 0.76rem;
    white-space: nowrap;
  }
  .feature-card .discount {
    font-size: 0.68rem;
    min-height: 18px;
    padding: 0 4px;
    line-height: 18px;
  }
  .feature-card .tag {
    font-size: 0.68rem;
    min-height: 18px;
    padding: 0 4px;
    line-height: 18px;
  }
  .product-grid { grid-template-columns: 1fr; }
  .compact-card { grid-template-columns: minmax(0, 1fr) 104px; min-height: 138px; padding: 13px; }
  .compact-card img { width: 96px; height: 96px; }
  .compact-card .product-content { min-height: 112px; }
  .product-card h3 { font-size: 1rem; }
  .product-card p { font-size: .9rem; }
  .product-modal[open] {
    display: block;
  }
  .modal {
    width: 100vw !important;
    max-width: 100vw !important;
    height: 100dvh !important;
    max-height: 100dvh !important;
    min-height: 100dvh !important;
    margin: 0 !important;
    inset: 0 !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    border-radius: 0 !important;
    border: 0 !important;
    background: var(--white);
    box-shadow: none !important;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }
  .modal::backdrop { background: rgba(8, 8, 8, .55); }
  .modal-media {
    width: 100%;
    min-width: 0;
    height: clamp(280px, 44dvh, 400px);
    min-height: 0;
    padding: 0;
    border-right: 0;
    border-bottom: 0;
    background: transparent;
    overflow: hidden;
  }
  .modal-image-frame {
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
    flex: 1 1 auto;
    border-radius: 0 !important;
    box-shadow: none;
  }
  .modal-panel {
    width: 100%;
    min-width: 0;
    min-height: 0;
    height: auto;
    border-radius: 18px 18px 0 0;
    background: var(--white);
    overflow: visible;
    margin-top: -16px;
    position: relative;
    z-index: 2;
    display: block;
    padding-bottom: calc(90px + max(12px, env(safe-area-inset-bottom, 12px))) !important;
  }
  .modal-head {
    padding: 18px 16px 16px;
    border-bottom: 0;
  }
  .product-close {
    position: fixed;
    top: max(14px, env(safe-area-inset-top) + 10px);
    right: max(14px, env(safe-area-inset-right) + 10px);
    z-index: 10;
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.16);
    color: #4b5563;
    width: 36px;
    height: 36px;
  }
  .modal-head h2 {
    margin: 0 42px 12px 0;
    font-size: 1.15rem;
    line-height: 1.3;
  }
  .modal-head .muted {
    margin: 0 0 18px;
    line-height: 1.45;
  }
  .modal-scroll {
    min-height: 0;
    overflow: visible;
    padding: 0;
    border-top: 1px solid var(--line);
  }
  .modal-scroll > * + * { margin-top: 0; }
  .option-box {
    border: 0;
    border-radius: 0;
  }
  .option-title {
    padding: 14px 16px;
    border-top: 0;
  }
  .option-row {
    min-height: 56px;
    padding: 10px 16px;
  }
  .option-choice { gap: 12px; }
  .option-circle {
    width: 25px;
    height: 25px;
    flex-basis: 25px;
  }
  .field { padding: 16px; }
  .modal-footer {
    position: fixed !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    display: grid !important;
    grid-template-columns: 112px 1fr !important;
    gap: 12px !important;
    align-items: center !important;
    padding: 12px 16px !important;
    padding-bottom: max(12px, env(safe-area-inset-bottom, 12px)) !important;
    background: #ffffff !important;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.08) !important;
    border-top: 1px solid var(--line, #e2e8f0) !important;
    z-index: 99 !important;
  }
  .info-sheet { min-height: min(520px, calc(100dvh - 24px)); }
  .info-panel { padding: 22px 24px 30px; }
  .info-about { gap: 18px; align-items: flex-start; }
  .contact-buttons a { min-width: 160px; }
  .whatsapp { bottom: 82px; width: 54px; height: 54px; }
  .mobile-bag.show + .whatsapp { bottom: 124px; }
}

@media (max-width: 520px) {
  .header-inner { width: 100%; }
  .hero-banner { margin-top: 0; height: 160px; border-width: 0; }
  .store-block { padding-bottom: 12px; }
  .toolbar { gap: 10px; }
  .compact-card { grid-template-columns: minmax(0, 1fr) 92px; gap: 10px; }
  .compact-card img { width: 86px; height: 86px; }
  .price-line { margin-top: 6px; }
  .footer { padding-bottom: 104px; }
}

/* ==========================================================================
   MODAL DE TAXA E ENTREGA POR ENDEREÇO REAL / GEOLOCALIZAÇÃO / MAPA
   ========================================================================== */
.delivery-sheet {
  max-width: 480px;
  width: min(94vw, 480px);
  border-radius: 18px;
  padding: 22px 24px 24px;
  box-shadow: 0 20px 45px -10px rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
}

.delivery-sheet .del-modal-close,
.delivery-sheet .close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #f1f5f9;
  border: 1px solid rgba(0, 0, 0, 0.05);
  color: #64748b;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer;
  padding: 0;
  transition: all 0.18s ease;
  z-index: 10;
}

.delivery-sheet .del-modal-close:hover,
.delivery-sheet .close:hover {
  background: #e2e8f0;
  color: #0f172a;
  transform: scale(1.05);
}

.delivery-sheet .del-modal-close svg,
.delivery-sheet .close svg {
  width: 15px;
  height: 15px;
  stroke: currentColor;
  stroke-width: 2.2;
  display: block;
}

.delivery-sheet h2 {
  font-size: 1.18rem;
  font-weight: 600;
  color: #0f172a;
  margin: 0 0 14px;
  letter-spacing: -0.02em;
}

.delivery-modal-tabs {
  display: flex;
  gap: 4px;
  margin: 0 0 14px;
  background: #f1f5f9;
  padding: 4px;
  border-radius: 10px;
}

.del-tab {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 8px 12px;
  border-radius: 8px;
  border: none;
  font-size: 0.86rem;
  font-weight: 500;
  color: #64748b;
  background: transparent;
  cursor: pointer;
  transition: all 0.18s ease;
}

.del-tab svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.del-tab.active {
  background: #ffffff;
  color: #0f172a;
  font-weight: 600;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
}

.btn-geo-loc {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
  font-size: 0.86rem;
  font-weight: 500;
  color: #334155;
  cursor: pointer;
  transition: all 0.18s ease;
}

.btn-geo-loc svg {
  width: 16px;
  height: 16px;
  color: #475569;
  flex-shrink: 0;
}

.btn-geo-loc:hover {
  background: #f1f5f9;
  border-color: #cbd5e1;
}

.btn-geo-loc.is-loading {
  opacity: 0.7;
  pointer-events: none;
}

.del-divider {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 14px 0 12px;
  color: #94a3b8;
  font-size: 0.75rem;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
}

.del-divider::before,
.del-divider::after {
  content: '';
  flex: 1;
  border-bottom: 1px solid #e2e8f0;
}

.del-divider span {
  padding: 0 10px;
}

.del-search-box {
  position: relative;
  margin-bottom: 12px;
}

.delivery-sheet .field {
  display: grid;
  gap: 5px;
  font-weight: normal;
  margin-bottom: 0;
}

.delivery-sheet .field span {
  font-size: 0.81rem;
  font-weight: 500;
  color: #475569;
  letter-spacing: -0.01em;
}

.del-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 3px;
}

.del-search-ico {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 17px;
  height: 17px;
  color: #94a3b8;
  pointer-events: none;
  z-index: 2;
}

.del-input-wrap [data-address-search-input],
.delivery-sheet .del-input-wrap input,
.delivery-sheet [data-address-search-input] {
  width: 100%;
  height: 44px;
  min-height: 44px;
  padding: 0 38px 0 42px !important;
  border-radius: 10px;
  border: 1px solid #cbd5e1;
  font-size: 0.88rem;
  font-weight: 400;
  color: #0f172a;
  background: #ffffff;
  outline: none;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.02);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.del-input-wrap [data-address-search-input]:focus,
.delivery-sheet .del-input-wrap input:focus,
.delivery-sheet [data-address-search-input]:focus {
  border-color: #0f172a;
  box-shadow: 0 0 0 3px rgba(15, 23, 42, 0.07);
}

.delivery-sheet input::placeholder {
  color: #94a3b8;
  font-weight: 400;
  font-size: 0.84rem;
  opacity: 1;
}

.del-spinner {
  position: absolute;
  right: 12px;
  width: 16px;
  height: 16px;
  border: 2px solid #e2e8f0;
  border-top-color: #0f172a;
  border-radius: 50%;
  animation: delSpin 0.7s linear infinite;
}

@keyframes delSpin {
  to { transform: rotate(360deg); }
}

.del-suggestions-dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  box-shadow: 0 10px 25px -4px rgba(0, 0, 0, 0.12);
  z-index: 1000;
  max-height: 220px;
  overflow-y: auto;
}

.del-suggestion-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 14px;
  border-bottom: 1px solid #f8fafc;
  cursor: pointer;
  text-align: left;
  transition: background 0.15s;
}

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

.del-suggestion-item:hover,
.del-suggestion-item:focus {
  background: #f1f5f9;
}

.del-sugg-icon {
  margin-top: 2px;
  color: #64748b;
  flex-shrink: 0;
}

.del-sugg-title {
  font-weight: 600;
  font-size: 0.88rem;
  color: #1e293b;
  line-height: 1.3;
}

.del-sugg-sub {
  font-size: 0.78rem;
  color: #64748b;
  margin-top: 2px;
  line-height: 1.3;
}

.del-selected-address-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  margin-bottom: 10px;
  font-size: 0.85rem;
  font-weight: 500;
  color: #1e293b;
}

.del-selected-address-bar svg {
  color: #0f172a;
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

.del-btn-edit-road {
  margin-left: auto;
  border: none;
  background: none;
  color: #2563eb;
  font-weight: 500;
  cursor: pointer;
  font-size: 0.8rem;
  text-decoration: none;
  padding: 3px 8px;
  border-radius: 6px;
  transition: background 0.15s;
}

.del-btn-edit-road:hover {
  background: #eff6ff;
  text-decoration: underline;
}

.delivery-sheet .del-confirm-fields {
  margin-top: 6px;
}

.delivery-sheet .del-fields-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 8px;
}

.delivery-sheet .del-confirm-fields .field input {
  width: 100%;
  height: 42px;
  min-height: 42px;
  padding: 0 12px !important;
  border-radius: 9px;
  border: 1px solid #cbd5e1;
  font-size: 0.86rem;
  font-weight: 400;
  color: #0f172a;
  background: #ffffff;
  outline: none;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.02);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.delivery-sheet .del-confirm-fields .field input:focus {
  border-color: #0f172a;
  box-shadow: 0 0 0 3px rgba(15, 23, 42, 0.07);
}

.del-map-toggle-wrap {
  margin: 10px 0 6px;
  text-align: center;
}

.btn-link-map {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: none;
  background: none;
  color: #64748b;
  font-size: 0.82rem;
  font-weight: 400;
  cursor: pointer;
  text-decoration: none;
  padding: 5px 10px;
  border-radius: 6px;
  transition: all 0.15s;
}

.btn-link-map svg {
  width: 15px;
  height: 15px;
}

.btn-link-map:hover {
  color: #0f172a;
  background: #f1f5f9;
}

.del-map-container {
  margin-top: 10px;
  padding: 10px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
}

.del-map-instructions {
  font-size: 0.82rem;
  color: #64748b;
  margin-bottom: 8px;
}

.delivery-sheet button[data-save-delivery],
.delivery-sheet button[data-confirm-pickup] {
  width: 100%;
  height: 44px;
  min-height: 44px;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  background: var(--black, #0f172a);
  color: #ffffff;
  border: none;
  cursor: pointer;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
  transition: all 0.2s ease;
}

.delivery-sheet button[data-save-delivery]:hover:not(:disabled),
.delivery-sheet button[data-confirm-pickup]:hover:not(:disabled) {
  opacity: 0.92;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.12);
}

.delivery-sheet button[data-save-delivery]:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  box-shadow: none;
  background: #94a3b8 !important;
}

.delivery-sheet input.input-error {
  border-color: #ef4444 !important;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15) !important;
  background: #fffafa !important;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.delivery-sheet button[data-save-delivery].btn-subtle-error {
  background: #dc2626 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 8px rgba(220, 38, 38, 0.25) !important;
  animation: delShake 0.35s ease;
}

@keyframes delShake {
  0%, 100% { transform: translateX(0); }
  20%, 60% { transform: translateX(-4px); }
  40%, 80% { transform: translateX(4px); }
}

.del-result-card {
  margin-top: 14px;
  padding: 14px 16px;
  border-radius: 12px;
  font-size: 0.92rem;
  line-height: 1.4;
  animation: delFadeIn 0.25s ease;
}

@keyframes delFadeIn {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}

.del-result-card.is-matched {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  color: #166534;
}

.del-result-card.is-below-min {
  background: #fffbeb;
  border: 1px solid #fde68a;
  color: #92400e;
}

.del-result-card.is-outside {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #991b1b;
}

.del-res-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 6px;
  padding-top: 8px;
  border-top: 1px dashed rgba(0, 0, 0, 0.1);
}

.del-res-stat {
  display: flex;
  flex-direction: column;
}

.del-res-stat span {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.8;
}

.del-res-stat strong {
  font-size: 1.05rem;
}

.pickup-card-highlight {
  padding: 16px;
  border-radius: 12px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  margin: 12px 0 16px;
}

.pickup-card-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.pickup-badge-free {
  background: #22c55e;
  color: #ffffff;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
}

.pickup-time-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #e2e8f0;
  color: #334155;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  margin-top: 8px;
}

/* =========================================================================
   ESTADO NEUTRO DE CARREGAMENTO (SKELETON / SHIMMER)
   Evita qualquer flash de dados antigos ou conteúdo desconfigurado
   ========================================================================= */
@keyframes storeSkeletonShimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.store-skeleton-pulse {
  background: linear-gradient(90deg, #f1f5f9 25%, #e2e8f0 50%, #f1f5f9 75%);
  background-size: 200% 100%;
  animation: storeSkeletonShimmer 1.5s infinite ease-in-out;
  border-radius: 6px;
  display: inline-block;
}

.banner-skeleton {
  width: 100%;
  height: 220px;
  background: linear-gradient(90deg, #f1f5f9 25%, #e2e8f0 50%, #f1f5f9 75%);
  background-size: 200% 100%;
  animation: storeSkeletonShimmer 1.5s infinite ease-in-out;
  border-radius: 12px;
}

.logo-skeleton {
  width: 80px;
  height: 80px;
  background: linear-gradient(90deg, #f1f5f9 25%, #e2e8f0 50%, #f1f5f9 75%);
  background-size: 200% 100%;
  animation: storeSkeletonShimmer 1.5s infinite ease-in-out;
  border-radius: 12px;
}

.menu-skeleton-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
  padding: 16px 0;
}

.card-skeleton {
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #f1f5f9;
  padding: 12px;
  display: flex;
  gap: 12px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

.card-skeleton-img {
  width: 90px;
  height: 90px;
  border-radius: 8px;
  background: linear-gradient(90deg, #f1f5f9 25%, #e2e8f0 50%, #f1f5f9 75%);
  background-size: 200% 100%;
  animation: storeSkeletonShimmer 1.5s infinite ease-in-out;
  flex-shrink: 0;
}

.card-skeleton-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: center;
}

.card-skeleton-line {
  height: 14px;
  border-radius: 4px;
  background: linear-gradient(90deg, #f1f5f9 25%, #e2e8f0 50%, #f1f5f9 75%);
  background-size: 200% 100%;
  animation: storeSkeletonShimmer 1.5s infinite ease-in-out;
}


