/* ═══════════════════════════════════════════════════════════════════
   MEGA BRILHO — LOJA — shop.css v2
   Mobile-first com cara de app · ícones Lucide · logos oficiais · mascote Rodriguinho
   ═══════════════════════════════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Comfortaa:wght@400;600;700&family=Poppins:wght@400;500;600;700;800&display=swap');

:root {
  --shop-blue:        #150577;
  --shop-blue-mid:    #1f0b9e;
  --shop-blue-soft:   #ebe9ff;
  --shop-blue-dark:   #0a0240;
  --shop-red:         #AB1715;
  --shop-red-hover:   #8f1210;
  --shop-yellow:      #FFC700;
  --shop-yellow-soft: #fff8d9;
  --shop-green:       #16a34a;
  --shop-green-soft:  #dcfce7;
  --shop-whatsapp:    #25d366;
  --shop-ink:         #1a1a1a;
  --shop-text:        #333;
  --shop-text-soft:   #666;
  --shop-text-mute:   #999;
  --shop-line:        #ececec;
  --shop-bg:          #f5f6fa;
  --shop-card:        #ffffff;
  --shop-radius:      14px;
  --shop-radius-sm:   10px;
  --shop-radius-lg:   20px;
  --shop-shadow-sm:   0 1px 3px rgba(21,5,119,.06), 0 1px 2px rgba(21,5,119,.04);
  --shop-shadow-md:   0 4px 16px rgba(21,5,119,.08);
  --shop-shadow-lg:   0 12px 40px rgba(21,5,119,.12);
  --shop-font-display: 'Gate', 'Comfortaa', sans-serif;
  --shop-font-sub:     'Comfortaa', sans-serif;
  --shop-font-body:    'Poppins', sans-serif;
  --shop-tab-h:       64px;
  --shop-header-h:    56px;
  --shop-ease:        cubic-bezier(.4, 0, .2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--shop-font-body);
  background: var(--shop-bg); color: var(--shop-text);
  line-height: 1.5; -webkit-font-smoothing: antialiased;
  padding-bottom: var(--shop-tab-h); overflow-x: hidden;
}
@media (min-width: 768px) { body { padding-bottom: 0; } }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
a { color: inherit; text-decoration: none; }
input, select, textarea { font-family: inherit; }

/* Lucide icons — defaults */
[data-lucide] { width: 20px; height: 20px; stroke-width: 2; flex-shrink: 0; }
.shop-icon-lg [data-lucide] { width: 24px; height: 24px; }
.shop-icon-xl [data-lucide] { width: 32px; height: 32px; }

/* View Transitions */
@view-transition { navigation: auto; }
::view-transition-old(root) { animation: shop-fade-out .22s var(--shop-ease) both; }
::view-transition-new(root) { animation: shop-fade-in .28s var(--shop-ease) both; }
@keyframes shop-fade-out { to { opacity: 0; transform: translateX(-12px); } }
@keyframes shop-fade-in  { from { opacity: 0; transform: translateX(12px); } }

.shop-mock-frame {
  background: var(--shop-yellow); color: var(--shop-blue);
  padding: 6px 12px; font-size: 11px;
  font-weight: 700; text-align: center;
  letter-spacing: .5px; text-transform: uppercase;
}

/* ═══ HEADER MOBILE ═══════════════════════════════════════════════ */
.shop-app-header {
  position: sticky; top: 0; z-index: 50;
  height: var(--shop-header-h);
  background: var(--shop-blue); color: #fff;
  display: flex; align-items: center;
  padding: 0 12px; gap: 10px;
  box-shadow: var(--shop-shadow-sm);
}
.shop-app-header .shop-logo-mb {
  height: 36px; width: auto; flex-shrink: 0;
}
.shop-search-mini {
  flex: 1; background: rgba(255,255,255,.15);
  border-radius: 999px; padding: 8px 14px;
  font-size: 13px; color: rgba(255,255,255,.85);
  display: flex; align-items: center; gap: 8px; border: none;
  text-align: left;
}
.shop-icon-btn {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  color: #fff; position: relative;
  border-radius: 10px; transition: background .2s var(--shop-ease);
}
.shop-icon-btn:active { background: rgba(255,255,255,.15); }
.shop-icon-btn [data-lucide] { width: 22px; height: 22px; }
.shop-icon-btn .shop-badge {
  position: absolute; top: 2px; right: 2px;
  background: var(--shop-yellow); color: var(--shop-blue);
  font-size: 10px; font-weight: 800;
  border-radius: 999px; min-width: 18px; height: 18px;
  padding: 0 5px; display: grid; place-items: center; line-height: 1;
}
.shop-app-header.shop-page-header {
  background: #fff; color: var(--shop-ink);
  border-bottom: 1px solid var(--shop-line); box-shadow: none;
}
.shop-page-header .shop-icon-btn { color: var(--shop-ink); }
.shop-page-header .shop-page-title {
  font-family: var(--shop-font-sub); font-weight: 700;
  font-size: 16px; flex: 1; text-align: center;
}

/* ═══ HEADER DESKTOP ══════════════════════════════════════════════ */
.shop-desk-header { display: none; }
@media (min-width: 768px) {
  .shop-app-header { display: none; }
  .shop-desk-header {
    display: block; background: #fff;
    border-bottom: 1px solid var(--shop-line);
    position: sticky; top: 0; z-index: 50;
  }
  .shop-desk-top {
    background: var(--shop-blue); color: #fff;
    font-size: 12px; padding: 8px 0; text-align: center; letter-spacing: .3px;
    display: flex; align-items: center; justify-content: center; gap: 6px;
  }
  .shop-desk-top span { color: var(--shop-yellow); font-weight: 700; }
  .shop-desk-top [data-lucide] { width: 14px; height: 14px; }
  .shop-desk-main {
    max-width: 1280px; margin: 0 auto;
    padding: 14px 32px;
    display: grid; grid-template-columns: auto 1fr auto;
    gap: 32px; align-items: center;
  }
  .shop-desk-logo-img { height: 64px; width: auto; }
  .shop-desk-search {
    display: flex; background: var(--shop-bg);
    border-radius: 12px; border: 2px solid transparent;
    transition: border-color .2s, background .2s;
  }
  .shop-desk-search:focus-within { border-color: var(--shop-blue); background: #fff; }
  .shop-desk-search input {
    flex: 1; border: none; padding: 12px 18px;
    font-size: 14px; background: transparent; outline: none;
  }
  .shop-desk-search button {
    background: var(--shop-blue); color: #fff;
    padding: 0 22px; border-radius: 0 10px 10px 0;
    font-weight: 600; margin: 2px;
    display: flex; align-items: center; gap: 6px;
  }
  .shop-desk-actions { display: flex; gap: 8px; align-items: center; }
  .shop-desk-action {
    display: flex; align-items: center; gap: 8px;
    padding: 8px 14px; border-radius: 10px;
    color: var(--shop-ink); font-size: 13px;
    font-weight: 500; transition: background .2s; position: relative;
  }
  .shop-desk-action:hover { background: var(--shop-bg); }
  .shop-desk-action .shop-badge { position: absolute; top: 0; right: 0; }
  .shop-desk-nav { border-top: 1px solid var(--shop-line); background: #fff; }
  .shop-desk-nav-inner {
    max-width: 1280px; margin: 0 auto;
    padding: 0 32px;
    display: flex; gap: 28px;
    height: 48px; align-items: center;
  }
  .shop-desk-nav a {
    font-size: 13px; font-weight: 600;
    color: var(--shop-text-soft); text-transform: uppercase;
    letter-spacing: .5px; height: 100%;
    display: flex; align-items: center; gap: 6px;
    transition: color .2s;
  }
  .shop-desk-nav a:hover { color: var(--shop-blue); }
  .shop-desk-nav a.shop-promo-link { color: var(--shop-red); }
  .shop-desk-nav a [data-lucide] { width: 16px; height: 16px; }
}

/* ═══ TAB BAR MOBILE ══════════════════════════════════════════════ */
.shop-tabbar {
  position: fixed; bottom: 0; left: 0; right: 0;
  height: var(--shop-tab-h);
  background: #fff; border-top: 1px solid var(--shop-line);
  display: grid; grid-template-columns: repeat(4, 1fr);
  z-index: 40; padding-bottom: env(safe-area-inset-bottom);
}
.shop-tabbar a {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 3px;
  font-size: 10px; font-weight: 600;
  color: var(--shop-text-mute); position: relative;
  transition: color .2s var(--shop-ease);
}
.shop-tabbar a [data-lucide] { width: 22px; height: 22px; }
.shop-tabbar a.active { color: var(--shop-blue); }
.shop-tabbar a.active::before {
  content: ''; position: absolute; top: 0;
  width: 28px; height: 3px;
  background: var(--shop-blue); border-radius: 0 0 3px 3px;
}
.shop-tabbar a .shop-badge {
  position: absolute; top: 8px; right: calc(50% - 22px);
  background: var(--shop-red); color: #fff;
  font-size: 9px; font-weight: 800;
  border-radius: 999px; min-width: 16px; height: 16px;
  padding: 0 4px; display: grid; place-items: center; line-height: 1;
}
@media (min-width: 768px) {
  .shop-tabbar { display: none !important; }
}

/* ═══ CONTAINERS ══════════════════════════════════════════════════ */
.shop-container { max-width: 1280px; margin: 0 auto; padding: 16px; }
@media (min-width: 768px) { .shop-container { padding: 32px; } }

.shop-section { margin-bottom: 28px; }
.shop-section-head {
  display: flex; align-items: baseline; justify-content: space-between;
  margin-bottom: 14px;
}
.shop-section-head h2 {
  font-family: var(--shop-font-sub); font-weight: 700;
  font-size: 18px; color: var(--shop-ink);
}
.shop-section-head a {
  font-size: 12px; color: var(--shop-blue); font-weight: 600;
  display: flex; align-items: center; gap: 4px;
}
.shop-section-head a [data-lucide] { width: 14px; height: 14px; }
@media (min-width: 768px) { .shop-section-head h2 { font-size: 24px; } }

/* ═══ MASCOTE RODRIGUINHO ═════════════════════════════════════════ */
.shop-mascot {
  display: block; width: auto;
  flex-shrink: 0; user-select: none;
  -webkit-user-drag: none;
}
.shop-mascot-sm { height: 80px; }
.shop-mascot-md { height: 140px; }
.shop-mascot-lg { height: 200px; }
.shop-mascot-xl { height: 280px; }

/* Bubble do mascote */
.shop-mascot-bubble {
  background: #fff;
  border-radius: 18px;
  padding: 14px 16px;
  box-shadow: var(--shop-shadow-md);
  position: relative;
  font-size: 14px;
  color: var(--shop-ink);
  max-width: 280px;
}
.shop-mascot-bubble::before {
  content: '';
  position: absolute;
  left: -8px; top: 24px;
  border-style: solid;
  border-width: 8px 12px 8px 0;
  border-color: transparent #fff transparent transparent;
  filter: drop-shadow(-2px 1px 1px rgba(21,5,119,.06));
}
.shop-mascot-bubble strong { color: var(--shop-blue); }

/* Painel "vazio" com mascote */
.shop-empty-state {
  text-align: center;
  padding: 40px 20px;
  background: #fff;
  border-radius: var(--shop-radius);
  box-shadow: var(--shop-shadow-sm);
}
.shop-empty-state .shop-mascot { margin: 0 auto 16px; }
.shop-empty-state h2 {
  font-family: var(--shop-font-sub);
  font-size: 20px; font-weight: 700;
  color: var(--shop-ink);
  margin-bottom: 6px;
}
.shop-empty-state p {
  font-size: 13px; color: var(--shop-text-soft);
  margin-bottom: 18px; max-width: 320px;
  margin-left: auto; margin-right: auto;
  line-height: 1.5;
}

/* ═══ PROMOSETE HERO ══════════════════════════════════════════════ */
.shop-promo-hero {
  background:
    radial-gradient(circle at 80% 20%, rgba(255,199,0,.25), transparent 50%),
    linear-gradient(135deg, var(--shop-red) 0%, #d11f1c 60%, var(--shop-red-hover) 100%);
  border-radius: var(--shop-radius-lg);
  padding: 22px 20px; color: #fff;
  position: relative; overflow: hidden;
  margin-bottom: 18px; box-shadow: var(--shop-shadow-md);
}
.shop-promo-hero::before {
  content: ''; position: absolute; top: -40px; right: -40px;
  width: 180px; height: 180px;
  background: var(--shop-yellow); opacity: .1; border-radius: 50%;
}
.shop-promo-hero::after {
  content: ''; position: absolute; bottom: -60px; left: -30px;
  width: 220px; height: 220px;
  border: 30px solid rgba(255,255,255,.05); border-radius: 50%;
}
.shop-promo-eyebrow {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--shop-yellow); color: var(--shop-blue);
  padding: 4px 12px; border-radius: 999px;
  font-size: 11px; font-weight: 800;
  letter-spacing: .8px; text-transform: uppercase;
  margin-bottom: 12px;
}
.shop-promo-eyebrow [data-lucide] { width: 14px; height: 14px; }
.shop-promo-title {
  font-family: var(--shop-font-display);
  font-size: 36px; font-weight: 800;
  line-height: 1; letter-spacing: -1px;
  margin-bottom: 6px;
  text-shadow: 0 2px 8px rgba(0,0,0,.15);
}
.shop-promo-title span { color: var(--shop-yellow); }
.shop-promo-sub {
  font-size: 13px; opacity: .95;
  margin-bottom: 16px; max-width: 280px;
}
@media (min-width: 768px) {
  .shop-promo-hero { padding: 40px 48px; }
  .shop-promo-title { font-size: 56px; }
  .shop-promo-sub { font-size: 16px; max-width: 480px; }
}

.shop-countdown { display: flex; gap: 8px; position: relative; z-index: 1; }
.shop-countdown-unit {
  background: rgba(0,0,0,.25);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 12px; padding: 8px 10px;
  min-width: 56px; text-align: center;
}
.shop-countdown-num {
  font-family: var(--shop-font-display);
  font-size: 22px; font-weight: 800;
  line-height: 1; display: block;
  font-variant-numeric: tabular-nums;
}
.shop-countdown-lbl {
  font-size: 9px; opacity: .8;
  text-transform: uppercase; letter-spacing: .5px;
}

/* ═══ PRODUCT GRID + CARDS ════════════════════════════════════════ */
.shop-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px;
}
@media (min-width: 480px) { .shop-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 768px) { .shop-grid { grid-template-columns: repeat(4, 1fr); gap: 18px; } }
@media (min-width: 1024px) { .shop-grid.shop-grid-promo { grid-template-columns: repeat(7, 1fr); gap: 12px; } }

.shop-card {
  background: var(--shop-card);
  border-radius: var(--shop-radius);
  overflow: hidden; position: relative;
  display: flex; flex-direction: column;
  box-shadow: var(--shop-shadow-sm);
  transition: transform .25s var(--shop-ease), box-shadow .25s var(--shop-ease);
}
.shop-card:active { transform: scale(.98); }
@media (min-width: 768px) {
  .shop-card:hover { transform: translateY(-4px); box-shadow: var(--shop-shadow-md); }
}
.shop-card-img {
  aspect-ratio: 1; background: var(--shop-bg);
  position: relative; overflow: hidden;
}
.shop-card-img svg, .shop-card-img img {
  width: 100%; height: 100%;
  object-fit: contain; padding: 12px;
}
.shop-ribbon {
  position: absolute; top: 0; left: 0;
  background: var(--shop-red); color: #fff;
  font-family: var(--shop-font-display);
  font-weight: 800; font-size: 13px;
  padding: 5px 14px 5px 8px;
  z-index: 2;
  clip-path: polygon(0 0, 100% 0, calc(100% - 8px) 50%, 100% 100%, 0 100%);
}
.shop-ribbon-promo7 { background: var(--shop-yellow); color: var(--shop-blue); }
.shop-tag-promo7 {
  position: absolute; top: 8px; right: 8px;
  background: var(--shop-blue); color: var(--shop-yellow);
  font-family: var(--shop-font-sub);
  font-weight: 700; font-size: 9px;
  padding: 4px 8px; border-radius: 999px;
  letter-spacing: .5px; z-index: 2;
}
.shop-card-body {
  padding: 12px; display: flex;
  flex-direction: column; gap: 4px; flex: 1;
}
.shop-card-brand {
  font-size: 10px; color: var(--shop-text-mute);
  text-transform: uppercase; letter-spacing: .5px;
  font-weight: 600;
}
.shop-card-name {
  font-size: 13px; font-weight: 600;
  color: var(--shop-ink); line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden; min-height: 34px;
}
.shop-price { display: flex; flex-direction: column; margin-top: 4px; }
.shop-price-old {
  font-size: 11px; color: var(--shop-text-mute);
  text-decoration: line-through; font-weight: 500;
}
.shop-price-now {
  font-family: var(--shop-font-display);
  font-size: 22px; font-weight: 800;
  color: var(--shop-red); line-height: 1;
  letter-spacing: -.5px;
}
.shop-price-now .shop-price-cents { font-size: 14px; vertical-align: top; }
.shop-price-installment {
  font-size: 10px; color: var(--shop-text-soft); margin-top: 2px;
}
.shop-card-btn {
  margin-top: 8px;
  background: var(--shop-blue); color: #fff;
  border-radius: 10px; padding: 9px;
  font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .5px;
  display: flex; align-items: center; justify-content: center; gap: 6px;
  transition: background .2s;
}
.shop-card-btn [data-lucide] { width: 14px; height: 14px; }
.shop-card-btn:active { background: var(--shop-blue-mid); }
@media (min-width: 768px) { .shop-card-btn:hover { background: var(--shop-blue-mid); } }
.shop-card.shop-card-promo7 .shop-card-btn {
  background: var(--shop-yellow); color: var(--shop-blue);
}
.shop-card.shop-card-promo7 .shop-card-btn:active { background: #e0ad00; }
.shop-stock-low {
  font-size: 10px; color: var(--shop-red); font-weight: 700;
  display: flex; align-items: center; gap: 4px;
}
.shop-stock-low [data-lucide] { width: 12px; height: 12px; }

/* ═══ CATEGORIA — CARDS COM FOTO ══════════════════════════════════ */
.shop-cat-card-photo {
  background: var(--shop-card);
  border-radius: var(--shop-radius);
  overflow: hidden;
  box-shadow: var(--shop-shadow-sm);
  position: relative;
  transition: transform .25s var(--shop-ease);
  text-align: left;
  display: block;
}
.shop-cat-card-photo:active { transform: scale(.97); }
@media (min-width: 768px) {
  .shop-cat-card-photo:hover { transform: translateY(-4px); box-shadow: var(--shop-shadow-md); }
}
.shop-cat-card-photo .shop-cat-img {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--shop-blue-soft), #fff);
  position: relative; overflow: hidden;
}
.shop-cat-card-photo .shop-cat-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.shop-cat-card-photo .shop-cat-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(21,5,119,.7) 100%);
}
.shop-cat-card-photo .shop-cat-info {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 12px 14px; color: #fff; z-index: 1;
}
.shop-cat-card-photo .shop-cat-info strong {
  display: block; font-family: var(--shop-font-sub);
  font-weight: 700; font-size: 15px;
  margin-bottom: 2px;
}
.shop-cat-card-photo .shop-cat-info span {
  font-size: 11px; opacity: .85;
}

/* ═══ COMBO BANNER ════════════════════════════════════════════════ */
.shop-combo-banner {
  background: linear-gradient(95deg, var(--shop-yellow) 0%, #ffd84d 100%);
  border-radius: var(--shop-radius);
  padding: 14px 16px;
  display: flex; align-items: center; gap: 12px;
  margin: 14px 0; position: relative; overflow: hidden;
}
.shop-combo-banner::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 100% 50%, rgba(21,5,119,.08), transparent 60%);
  pointer-events: none;
}
.shop-combo-banner [data-lucide] {
  color: var(--shop-blue); width: 28px; height: 28px;
  flex-shrink: 0; z-index: 1;
}
.shop-combo-text { flex: 1; z-index: 1; }
.shop-combo-text strong {
  display: block; font-family: var(--shop-font-sub);
  font-weight: 700; font-size: 13px;
  color: var(--shop-blue); margin-bottom: 2px;
}
.shop-combo-text span { font-size: 12px; color: var(--shop-blue); opacity: .85; line-height: 1.4; }

/* ═══ NUDGES ══════════════════════════════════════════════════════ */
.shop-nudge {
  background: var(--shop-blue-soft);
  border-left: 4px solid var(--shop-blue);
  border-radius: var(--shop-radius-sm);
  padding: 12px 14px; font-size: 12px;
  color: var(--shop-blue);
  display: flex; align-items: center; gap: 10px;
  margin: 12px 0; line-height: 1.4;
}
.shop-nudge [data-lucide] {
  width: 22px; height: 22px;
  flex-shrink: 0; color: var(--shop-blue);
}
.shop-nudge strong { font-weight: 700; }
.shop-nudge.shop-nudge-success {
  background: var(--shop-green-soft);
  border-color: var(--shop-green); color: #166534;
}
.shop-nudge.shop-nudge-success [data-lucide] { color: var(--shop-green); }
.shop-nudge.shop-nudge-warn {
  background: var(--shop-yellow-soft);
  border-color: #d4a800; color: #6b4d00;
}
.shop-nudge.shop-nudge-warn [data-lucide] { color: #b88800; }

/* ═══ PDP ═════════════════════════════════════════════════════════ */
.shop-pdp-gallery {
  background: #fff; aspect-ratio: 1;
  position: relative; overflow: hidden;
}
@media (min-width: 768px) {
  .shop-pdp-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
  .shop-pdp-gallery { border-radius: var(--shop-radius-lg); }
}
.shop-pdp-gallery svg, .shop-pdp-gallery img {
  width: 100%; height: 100%; object-fit: contain; padding: 32px;
}
.shop-pdp-thumbs {
  display: flex; gap: 8px;
  padding: 12px 16px; overflow-x: auto;
  background: #fff; border-bottom: 1px solid var(--shop-line);
}
.shop-pdp-thumbs button {
  width: 56px; height: 56px;
  border-radius: 8px; background: var(--shop-bg);
  flex-shrink: 0; border: 2px solid transparent;
  overflow: hidden; padding: 4px;
}
.shop-pdp-thumbs button.active { border-color: var(--shop-blue); }
.shop-pdp-thumbs button svg, .shop-pdp-thumbs button img { width: 100%; height: 100%; }
.shop-pdp-info { background: #fff; padding: 18px 16px; }
@media (min-width: 768px) { .shop-pdp-info { padding: 0; background: transparent; } }
.shop-pdp-brand {
  font-size: 11px; color: var(--shop-text-mute);
  text-transform: uppercase; letter-spacing: 1px;
  font-weight: 600; margin-bottom: 4px;
}
.shop-pdp-title {
  font-family: var(--shop-font-sub);
  font-weight: 700; font-size: 22px;
  color: var(--shop-ink); line-height: 1.2; margin-bottom: 6px;
}
@media (min-width: 768px) { .shop-pdp-title { font-size: 28px; } }
.shop-pdp-sku {
  font-size: 11px; color: var(--shop-text-mute); margin-bottom: 14px;
  display: flex; align-items: center; gap: 6px;
}
.shop-pdp-sku [data-lucide] { width: 14px; height: 14px; color: var(--shop-yellow); }
.shop-pdp-price { margin-bottom: 14px; }
.shop-pdp-price .shop-price-old { font-size: 13px; }
.shop-pdp-price .shop-price-now { font-size: 38px; }
.shop-pdp-price .shop-price-now .shop-price-cents { font-size: 20px; }
.shop-pdp-discount-badge {
  display: inline-block;
  background: var(--shop-red); color: #fff;
  font-size: 12px; font-weight: 700;
  padding: 3px 10px; border-radius: 999px;
  margin-left: 8px; vertical-align: middle;
}
.shop-pdp-section {
  border-top: 1px solid var(--shop-line);
  padding: 16px; background: #fff;
}
@media (min-width: 768px) { .shop-pdp-section { padding: 16px 0; } }
.shop-pdp-section h3 {
  font-family: var(--shop-font-sub); font-weight: 700;
  font-size: 14px; margin-bottom: 8px; color: var(--shop-ink);
  display: flex; align-items: center; gap: 8px;
}
.shop-pdp-section h3 [data-lucide] { width: 18px; height: 18px; color: var(--shop-blue); }
.shop-pdp-section p { font-size: 13px; color: var(--shop-text); line-height: 1.6; }
.shop-cep-row { display: flex; gap: 8px; }
.shop-cep-row input {
  flex: 1; border: 1px solid var(--shop-line);
  padding: 10px 12px; border-radius: 10px; font-size: 13px;
}
.shop-cep-row button {
  background: var(--shop-blue); color: #fff;
  padding: 10px 16px; border-radius: 10px;
  font-weight: 600; font-size: 12px;
}
.shop-pdp-bar {
  position: fixed;
  bottom: var(--shop-tab-h); left: 0; right: 0;
  background: #fff; border-top: 1px solid var(--shop-line);
  padding: 10px 14px; display: flex; gap: 10px;
  z-index: 30;
  box-shadow: 0 -4px 16px rgba(0,0,0,.06);
  padding-bottom: max(10px, env(safe-area-inset-bottom));
}
@media (min-width: 768px) {
  .shop-pdp-bar { position: static; box-shadow: none; padding: 0; margin-top: 16px; border: none; }
}
.shop-qty {
  display: flex; align-items: center;
  background: var(--shop-bg);
  border-radius: 10px; overflow: hidden;
}
.shop-qty button {
  width: 36px; height: 40px;
  font-size: 18px; font-weight: 700;
  color: var(--shop-blue);
}
.shop-qty input {
  width: 36px; text-align: center;
  border: none; background: transparent;
  font-weight: 700; font-size: 14px;
  -moz-appearance: textfield;
}
.shop-qty input::-webkit-outer-spin-button,
.shop-qty input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.shop-qty.shop-qty-sm button { width: 28px; height: 32px; font-size: 14px; }
.shop-qty.shop-qty-sm input { width: 28px; font-size: 13px; }
.shop-buy-btn {
  flex: 1; background: var(--shop-red); color: #fff;
  border-radius: 10px;
  font-weight: 700; font-size: 14px;
  text-transform: uppercase; letter-spacing: .5px;
  padding: 0 16px;
  display: flex; align-items: center; justify-content: center; gap: 6px;
}
.shop-buy-btn:active { background: var(--shop-red-hover); }
.shop-buy-btn [data-lucide] { width: 18px; height: 18px; }

/* ═══ CART ════════════════════════════════════════════════════════ */
.shop-cart-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 16px; }
.shop-cart-item {
  background: #fff; border-radius: var(--shop-radius);
  padding: 12px; display: grid;
  grid-template-columns: 70px 1fr auto;
  gap: 12px; align-items: center;
  box-shadow: var(--shop-shadow-sm); position: relative;
}
.shop-cart-item.shop-cart-gift {
  background: var(--shop-green-soft);
  border: 1.5px dashed var(--shop-green);
}
.shop-cart-item-img {
  width: 70px; height: 70px;
  background: var(--shop-bg);
  border-radius: 10px;
  display: grid; place-items: center;
  overflow: hidden; padding: 6px;
}
.shop-cart-item-img svg, .shop-cart-item-img img { width: 100%; height: 100%; object-fit: contain; }
.shop-cart-item-info { min-width: 0; }
.shop-cart-item-name {
  font-size: 13px; font-weight: 600;
  color: var(--shop-ink); line-height: 1.3;
  margin-bottom: 4px;
  display: -webkit-box;
  -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden;
}
.shop-cart-item-price {
  font-size: 14px; font-weight: 800;
  color: var(--shop-red);
  font-family: var(--shop-font-display);
}
.shop-gift-badge {
  display: inline-flex; align-items: center; gap: 4px;
  background: var(--shop-green); color: #fff;
  font-size: 10px; font-weight: 800;
  padding: 2px 8px; border-radius: 999px;
  letter-spacing: .5px; text-transform: uppercase;
  margin-bottom: 4px;
}
.shop-gift-badge [data-lucide] { width: 10px; height: 10px; }
.shop-cart-item-actions {
  display: flex; flex-direction: column;
  align-items: flex-end; gap: 8px;
}
.shop-cart-remove {
  font-size: 11px; color: var(--shop-text-mute);
  display: flex; align-items: center; gap: 3px;
}
.shop-cart-remove [data-lucide] { width: 12px; height: 12px; }
.shop-cart-remove:active { color: var(--shop-red); }

.shop-cart-summary {
  background: #fff; border-radius: var(--shop-radius);
  padding: 16px; box-shadow: var(--shop-shadow-sm);
  margin-bottom: 16px;
}
.shop-summary-row {
  display: flex; justify-content: space-between;
  padding: 6px 0; font-size: 13px; color: var(--shop-text);
}
.shop-summary-row.shop-summary-discount { color: var(--shop-green); font-weight: 600; }
.shop-summary-row.shop-summary-total {
  border-top: 1px solid var(--shop-line);
  margin-top: 8px; padding-top: 12px;
  font-size: 16px; font-weight: 700; color: var(--shop-ink);
}
.shop-summary-row.shop-summary-total .shop-amount {
  font-family: var(--shop-font-display);
  font-size: 22px; color: var(--shop-red);
}

.shop-cta {
  background: var(--shop-red); color: #fff;
  width: 100%; padding: 14px;
  border-radius: 12px;
  font-weight: 700; font-size: 14px;
  text-transform: uppercase; letter-spacing: .5px;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.shop-cta:active { background: var(--shop-red-hover); }
.shop-cta [data-lucide] { width: 18px; height: 18px; }
.shop-cta.shop-cta-secondary {
  background: #fff; color: var(--shop-blue);
  border: 2px solid var(--shop-blue);
}

@media (min-width: 768px) {
  .shop-cart-layout { display: grid; grid-template-columns: 1fr 380px; gap: 32px; align-items: start; }
  .shop-cart-summary { position: sticky; top: 130px; }
}

/* ═══ CHECKOUT ════════════════════════════════════════════════════ */
.shop-stepper {
  display: flex; gap: 4px; margin-bottom: 18px;
  background: #fff; border-radius: 999px; padding: 4px;
  box-shadow: var(--shop-shadow-sm);
}
.shop-step {
  flex: 1; text-align: center;
  padding: 8px 4px;
  font-size: 11px; font-weight: 600;
  color: var(--shop-text-mute);
  border-radius: 999px;
  transition: all .2s var(--shop-ease);
}
.shop-step.active { background: var(--shop-blue); color: #fff; }
.shop-step.done { color: var(--shop-green); }

.shop-form-card {
  background: #fff; border-radius: var(--shop-radius);
  padding: 16px; margin-bottom: 12px;
  box-shadow: var(--shop-shadow-sm);
}
.shop-form-card h3 {
  font-family: var(--shop-font-sub); font-weight: 700;
  font-size: 15px; margin-bottom: 12px;
  color: var(--shop-ink);
  display: flex; align-items: center; gap: 8px;
}
.shop-form-card h3::before {
  content: ''; width: 6px; height: 22px;
  background: var(--shop-red); border-radius: 3px;
}
.shop-field { display: flex; flex-direction: column; gap: 4px; margin-bottom: 12px; }
.shop-field label {
  font-size: 11px; color: var(--shop-text-soft);
  font-weight: 600; text-transform: uppercase; letter-spacing: .3px;
}
.shop-field input, .shop-field select {
  border: 1.5px solid var(--shop-line);
  padding: 12px 14px; border-radius: 10px;
  font-size: 14px; background: #fff;
  transition: border-color .2s;
}
.shop-field input:focus, .shop-field select:focus { outline: none; border-color: var(--shop-blue); }
.shop-fields-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.shop-fields-row.shop-cep-grid { grid-template-columns: 1fr 100px; }
.shop-fields-row.shop-3col { grid-template-columns: 1fr 1fr 1fr; }

.shop-radio-group { display: flex; flex-direction: column; gap: 8px; }
.shop-radio-card {
  display: flex; align-items: center; gap: 12px;
  padding: 12px; border: 2px solid var(--shop-line);
  border-radius: var(--shop-radius-sm);
  cursor: pointer;
  transition: all .2s var(--shop-ease);
  background: #fff;
}
.shop-radio-card.checked {
  border-color: var(--shop-blue);
  background: var(--shop-blue-soft);
}
.shop-radio-card-icon {
  width: 40px; height: 40px;
  background: var(--shop-bg);
  border-radius: 10px;
  display: grid; place-items: center;
  flex-shrink: 0; color: var(--shop-blue);
}
.shop-radio-card-icon [data-lucide] { width: 22px; height: 22px; }
.shop-radio-card.checked .shop-radio-card-icon {
  background: var(--shop-blue); color: #fff;
}
.shop-radio-card-text { flex: 1; }
.shop-radio-card-text strong {
  display: block; font-size: 14px;
  font-weight: 700; color: var(--shop-ink); margin-bottom: 2px;
}
.shop-radio-card-text span { font-size: 12px; color: var(--shop-text-soft); line-height: 1.3; }
.shop-radio-card-price {
  font-family: var(--shop-font-display);
  font-weight: 800; font-size: 14px;
  color: var(--shop-red);
}
.shop-radio-card-price.shop-free { color: var(--shop-green); }

/* Address card (logado, com endereços salvos) */
.shop-address-card {
  border: 2px solid var(--shop-line);
  border-radius: var(--shop-radius-sm);
  padding: 12px; background: #fff;
  display: grid; grid-template-columns: auto 1fr auto; gap: 12px; align-items: start;
  cursor: pointer; transition: all .2s var(--shop-ease);
}
.shop-address-card.checked {
  border-color: var(--shop-blue); background: var(--shop-blue-soft);
}
.shop-address-card .shop-radio-card-icon { align-self: center; }
.shop-address-info strong {
  display: flex; align-items: center; gap: 6px;
  font-size: 14px; font-weight: 700; color: var(--shop-ink); margin-bottom: 4px;
}
.shop-address-fav-tag {
  background: var(--shop-yellow); color: var(--shop-blue);
  font-size: 9px; font-weight: 800;
  padding: 2px 6px; border-radius: 999px;
  letter-spacing: .5px;
}
.shop-address-info p { font-size: 12px; color: var(--shop-text-soft); line-height: 1.4; }
.shop-address-actions {
  display: flex; flex-direction: column; gap: 4px; align-items: flex-end;
}
.shop-address-actions button {
  font-size: 11px; color: var(--shop-blue); font-weight: 600;
  padding: 4px 6px;
}

.shop-add-address-btn {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  width: 100%; padding: 12px;
  border: 2px dashed var(--shop-line);
  border-radius: var(--shop-radius-sm);
  font-size: 13px; font-weight: 600; color: var(--shop-blue);
  background: transparent;
  transition: all .2s;
}
.shop-add-address-btn:hover { border-color: var(--shop-blue); background: var(--shop-blue-soft); }

@media (min-width: 768px) {
  .shop-checkout-layout { display: grid; grid-template-columns: 1fr 380px; gap: 32px; align-items: start; }
  .shop-checkout-layout > aside { position: sticky; top: 130px; }
}

/* ═══ CONTA ═══════════════════════════════════════════════════════ */
.shop-account-hero {
  background: linear-gradient(135deg, var(--shop-blue) 0%, var(--shop-blue-mid) 100%);
  color: #fff;
  padding: 24px 16px 28px;
  margin: -16px -16px 16px;
  border-radius: 0 0 var(--shop-radius-lg) var(--shop-radius-lg);
  position: relative; overflow: hidden;
}
.shop-account-hero::before {
  content: ''; position: absolute; top: -40px; right: -40px;
  width: 160px; height: 160px;
  background: var(--shop-yellow); opacity: .1; border-radius: 50%;
}
@media (min-width: 768px) {
  .shop-account-hero { margin: 0 0 24px; border-radius: var(--shop-radius-lg); padding: 32px; }
}
.shop-account-hero .shop-greeting { font-size: 13px; opacity: .8; margin-bottom: 4px; }
.shop-account-hero h1 {
  font-family: var(--shop-font-sub); font-weight: 700;
  font-size: 24px; margin-bottom: 16px;
}
.shop-account-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px;
  position: relative; z-index: 1;
}
.shop-account-stat {
  background: rgba(255,255,255,.12);
  border-radius: 10px; padding: 10px; text-align: center;
  backdrop-filter: blur(4px);
}
.shop-account-stat strong {
  display: block;
  font-family: var(--shop-font-display);
  font-size: 22px; font-weight: 800;
}
.shop-account-stat span {
  font-size: 10px; opacity: .85;
  text-transform: uppercase; letter-spacing: .3px;
}

.shop-order-card {
  background: #fff; border-radius: var(--shop-radius);
  padding: 14px; margin-bottom: 10px;
  box-shadow: var(--shop-shadow-sm);
  transition: transform .2s var(--shop-ease);
}
.shop-order-card:active { transform: scale(.99); }
.shop-order-head {
  display: flex; justify-content: space-between;
  align-items: flex-start; margin-bottom: 10px;
}
.shop-order-num { font-size: 11px; color: var(--shop-text-mute); margin-bottom: 2px; }
.shop-order-date { font-size: 12px; color: var(--shop-text-soft); }
.shop-status {
  font-size: 10px; font-weight: 800;
  text-transform: uppercase; letter-spacing: .5px;
  padding: 4px 10px; border-radius: 999px;
  display: inline-flex; align-items: center; gap: 4px;
}
.shop-status [data-lucide] { width: 12px; height: 12px; }
.shop-status-recebido  { background: var(--shop-blue-soft); color: var(--shop-blue); }
.shop-status-confirmado{ background: #fef3c7; color: #92400e; }
.shop-status-saiu      { background: #ffedd5; color: #9a3412; }
.shop-status-pronto    { background: #ffedd5; color: #9a3412; }
.shop-status-entregue  { background: var(--shop-green-soft); color: #166534; }
.shop-status-cancelado { background: #fee2e2; color: #991b1b; }
.shop-order-items {
  display: flex; gap: 6px; margin-bottom: 10px; overflow-x: auto;
}
.shop-order-thumb {
  width: 44px; height: 44px;
  background: var(--shop-bg); border-radius: 8px;
  flex-shrink: 0; padding: 4px;
}
.shop-order-thumb svg, .shop-order-thumb img { width: 100%; height: 100%; }
.shop-order-foot {
  display: flex; justify-content: space-between;
  align-items: center; padding-top: 10px;
  border-top: 1px solid var(--shop-line);
}
.shop-order-total {
  font-family: var(--shop-font-display);
  font-weight: 800; font-size: 16px; color: var(--shop-ink);
}

.shop-timeline { padding: 16px; background: #fff; border-radius: var(--shop-radius); box-shadow: var(--shop-shadow-sm); }
.shop-timeline-item { display: flex; gap: 14px; position: relative; padding-bottom: 18px; }
.shop-timeline-item:not(:last-child)::before {
  content: ''; position: absolute;
  left: 13px; top: 28px; bottom: 0;
  width: 2px; background: var(--shop-line);
}
.shop-timeline-item.done:not(:last-child)::before { background: var(--shop-green); }
.shop-timeline-dot {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--shop-line);
  display: grid; place-items: center;
  flex-shrink: 0; z-index: 1;
  color: #fff;
}
.shop-timeline-dot [data-lucide] { width: 14px; height: 14px; }
.shop-timeline-item.done .shop-timeline-dot { background: var(--shop-green); }
.shop-timeline-item.current .shop-timeline-dot {
  background: var(--shop-red);
  animation: shop-ping 1.8s var(--shop-ease) infinite;
}
@keyframes shop-ping {
  0%   { box-shadow: 0 0 0 0 rgba(171,23,21,.5); }
  70%  { box-shadow: 0 0 0 12px rgba(171,23,21,0); }
  100% { box-shadow: 0 0 0 0 rgba(171,23,21,0); }
}
.shop-timeline-content { padding-top: 4px; }
.shop-timeline-title { font-size: 14px; font-weight: 700; color: var(--shop-ink); margin-bottom: 2px; }
.shop-timeline-item.pending .shop-timeline-title { color: var(--shop-text-mute); }
.shop-timeline-time { font-size: 11px; color: var(--shop-text-soft); }

/* Conta — Dados do cliente / Endereços */
.shop-data-card {
  background: #fff; border-radius: var(--shop-radius);
  padding: 16px; margin-bottom: 10px;
  box-shadow: var(--shop-shadow-sm);
}
.shop-data-card .shop-data-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 0; border-bottom: 1px solid var(--shop-line);
}
.shop-data-card .shop-data-row:last-child { border-bottom: none; }
.shop-data-card .shop-data-row > div:first-child { flex: 1; min-width: 0; }
.shop-data-row .shop-data-label {
  font-size: 11px; color: var(--shop-text-mute);
  text-transform: uppercase; letter-spacing: .3px;
  font-weight: 600; margin-bottom: 2px;
}
.shop-data-row .shop-data-value {
  font-size: 14px; color: var(--shop-ink); font-weight: 500;
  word-break: break-word;
}
.shop-data-edit {
  font-size: 12px; color: var(--shop-blue); font-weight: 600;
  padding: 4px 8px; display: flex; align-items: center; gap: 4px;
  flex-shrink: 0;
}
.shop-data-edit [data-lucide] { width: 14px; height: 14px; }

.shop-section-title-row {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 10px; margin-top: 24px;
}
.shop-section-title-row h2 {
  font-family: var(--shop-font-sub); font-weight: 700;
  font-size: 16px; color: var(--shop-ink);
  display: flex; align-items: center; gap: 8px;
}
.shop-section-title-row h2 [data-lucide] { color: var(--shop-blue); }
.shop-section-title-row button {
  font-size: 12px; color: var(--shop-blue); font-weight: 600;
  display: flex; align-items: center; gap: 4px;
}
.shop-section-title-row button [data-lucide] { width: 14px; height: 14px; }

/* ═══ AUTH ════════════════════════════════════════════════════════ */
.shop-auth-tabs {
  display: flex; gap: 4px;
  background: #fff; border-radius: 999px; padding: 4px;
  margin-bottom: 16px; box-shadow: var(--shop-shadow-sm);
}
.shop-auth-tab {
  flex: 1; text-align: center;
  padding: 10px; font-size: 13px; font-weight: 600;
  color: var(--shop-text-mute); border-radius: 999px;
  transition: all .2s;
}
.shop-auth-tab.active { background: var(--shop-blue); color: #fff; }

.shop-auth-welcome {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; padding: 12px 0 20px;
}
.shop-auth-welcome .shop-mascot { margin-bottom: -10px; }
.shop-auth-welcome .shop-mascot-bubble {
  margin-top: 8px; max-width: 320px;
}
.shop-auth-welcome .shop-mascot-bubble::before {
  left: 50%; top: -8px; transform: translateX(-50%);
  border-width: 0 8px 12px 8px;
  border-color: transparent transparent #fff transparent;
}

/* ═══ BOTTOM SHEET ════════════════════════════════════════════════ */
.shop-sheet-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.4);
  opacity: 0; pointer-events: none;
  visibility: hidden;
  transition: opacity .25s var(--shop-ease), visibility 0s linear .25s;
  z-index: 100;
}
.shop-sheet-overlay.open {
  opacity: 1; pointer-events: auto;
  visibility: visible;
  transition: opacity .25s var(--shop-ease), visibility 0s linear 0s;
}
.shop-sheet {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #fff;
  border-radius: 24px 24px 0 0;
  padding: 16px 20px 28px;
  z-index: 101;
  transform: translateY(100%);
  visibility: hidden;
  pointer-events: none;
  transition: transform .35s var(--shop-ease), visibility 0s linear .35s;
  box-shadow: 0 -8px 32px rgba(0,0,0,.15);
  max-height: 85vh; overflow-y: auto;
}
.shop-sheet.open {
  transform: translateY(0);
  visibility: visible;
  pointer-events: auto;
  transition: transform .35s var(--shop-ease), visibility 0s linear 0s;
}
.shop-sheet-handle {
  width: 40px; height: 4px;
  background: var(--shop-line);
  border-radius: 4px; margin: 0 auto 16px;
}
.shop-sheet-success { text-align: center; padding: 16px 0 24px; }
.shop-sheet-check {
  width: 56px; height: 56px;
  background: var(--shop-green); color: #fff;
  border-radius: 50%; display: grid; place-items: center;
  margin: 0 auto 12px;
  animation: shop-pop .4s var(--shop-ease);
}
.shop-sheet-check [data-lucide] { width: 28px; height: 28px; stroke-width: 3; }
@keyframes shop-pop { 0% { transform: scale(0); } 60% { transform: scale(1.15); } 100% { transform: scale(1); } }
.shop-sheet h3 {
  font-family: var(--shop-font-sub);
  font-size: 18px; margin-bottom: 4px; color: var(--shop-ink);
}
.shop-sheet p { font-size: 13px; color: var(--shop-text-soft); }
.shop-sheet-actions { display: flex; flex-direction: column; gap: 10px; }
@media (min-width: 768px) {
  .shop-sheet { max-width: 480px; left: 50%; transform: translate(-50%, 100%); border-radius: 24px; bottom: 32px; }
  .shop-sheet.open { transform: translate(-50%, 0); }
  .shop-sheet-actions { flex-direction: row; }
  .shop-sheet-actions button { flex: 1; }
}

/* ═══ FOOTER (padrão institucional adaptado) ══════════════════════ */
.shop-footer {
  background: var(--shop-blue);
  color: #fff;
  margin-top: 32px;
}
.shop-footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 32px 16px 20px;
}
@media (min-width: 768px) { .shop-footer-inner { padding: 48px 32px 24px; } }
.shop-footer-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 24px; margin-bottom: 24px;
}
@media (min-width: 768px) { .shop-footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 32px; } }
.shop-footer-logo {
  height: 70px; width: auto; margin-bottom: 12px;
}
.shop-footer-tagline {
  font-size: 13px; opacity: .85; line-height: 1.6; margin-bottom: 14px; max-width: 380px;
}
.shop-footer-links {
  display: flex; flex-wrap: wrap; gap: 6px 10px;
  font-size: 12px; opacity: .9;
}
.shop-footer-links a { color: var(--shop-yellow); font-weight: 600; }
.shop-footer-links a:hover { text-decoration: underline; }
.shop-footer-links span { opacity: .5; }
.shop-footer-h {
  font-family: var(--shop-font-sub); font-weight: 700;
  font-size: 13px; text-transform: uppercase; letter-spacing: .8px;
  margin-bottom: 12px; color: var(--shop-yellow);
}
.shop-footer-phone {
  font-family: var(--shop-font-display);
  font-size: 22px; font-weight: 800;
  margin-bottom: 4px;
}
.shop-footer-hours { font-size: 12px; opacity: .8; margin-bottom: 12px; }
.shop-footer-btn {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.1);
  color: #fff; padding: 8px 14px; border-radius: 8px;
  font-size: 12px; font-weight: 600; margin-bottom: 8px;
  transition: background .2s; border: 1px solid rgba(255,255,255,.15);
}
.shop-footer-btn:hover { background: rgba(255,255,255,.2); }
.shop-footer-btn [data-lucide] { width: 14px; height: 14px; }
.shop-footer-btn.shop-footer-btn-wpp {
  background: var(--shop-whatsapp); border-color: var(--shop-whatsapp);
}
.shop-footer-btn.shop-footer-btn-wpp:hover { background: #1ebe5a; }
.shop-footer-addr {
  font-size: 12px; opacity: .9; line-height: 1.5; margin-bottom: 12px;
}
.shop-footer-addr strong {
  display: block; color: var(--shop-yellow);
  font-size: 13px; margin-bottom: 2px; font-weight: 700;
}
.shop-footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 16px;
  display: flex; flex-direction: column; gap: 4px;
  align-items: center; text-align: center;
  font-size: 11px; opacity: .8;
}
.shop-footer-bottom p { margin: 0; }
.shop-footer-credits { opacity: .7; }
.shop-footer-colab-link {
  margin-top: 8px !important;
}
.shop-footer-colab-link a {
  display: inline-flex; align-items: center; gap: 5px;
  color: rgba(255,255,255,.55);
  font-size: 11px; font-weight: 500;
  padding: 5px 10px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 999px;
  transition: color .15s, border-color .15s, background .15s;
}
.shop-footer-colab-link a:hover {
  color: var(--shop-yellow);
  border-color: rgba(255,199,0,.4);
  background: rgba(255,199,0,.05);
}
.shop-footer-colab-link a [data-lucide] { width: 11px; height: 11px; }

/* ═══ FAB WHATSAPP ═════════════════════════════════════════════════ */
.shop-fab-wpp {
  position: fixed;
  bottom: calc(var(--shop-tab-h) + 16px);
  right: 16px;
  width: 56px; height: 56px;
  background: var(--shop-whatsapp);
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(37,211,102,.4);
  z-index: 35;
  display: grid; place-items: center;
  color: #fff;
  transition: transform .25s var(--shop-ease), box-shadow .25s var(--shop-ease);
}
.shop-fab-wpp:hover, .shop-fab-wpp:active {
  transform: scale(1.08);
  box-shadow: 0 12px 32px rgba(37,211,102,.5);
}
.shop-fab-wpp [data-lucide] { width: 28px; height: 28px; stroke-width: 2; }
@media (min-width: 768px) {
  .shop-fab-wpp { bottom: 24px; right: 24px; }
}

/* ═══ INSTALL BANNER ══════════════════════════════════════════════ */
.shop-install-banner {
  position: fixed;
  bottom: calc(var(--shop-tab-h) + 12px);
  left: 12px; right: 12px;
  background: var(--shop-blue); color: #fff;
  border-radius: 14px; padding: 12px 14px;
  display: none; align-items: center; gap: 10px;
  box-shadow: var(--shop-shadow-lg);
  z-index: 35;
  animation: shop-slide-up .4s var(--shop-ease);
}
@keyframes shop-slide-up { from { transform: translateY(120%); } to { transform: translateY(0); } }
.shop-install-banner.show { display: flex; }
.shop-install-banner img { height: 40px; width: auto; }
.shop-install-banner-text { flex: 1; font-size: 12px; line-height: 1.3; }
.shop-install-banner-text strong { display: block; font-size: 13px; margin-bottom: 2px; }
.shop-install-banner-btn {
  background: var(--shop-yellow); color: var(--shop-blue);
  font-size: 12px; font-weight: 700;
  padding: 8px 14px; border-radius: 8px;
}
.shop-install-banner-close { color: rgba(255,255,255,.7); padding: 4px 8px; }
.shop-install-banner-close [data-lucide] { width: 18px; height: 18px; }
@media (min-width: 768px) { .shop-install-banner { display: none !important; } }

/* ═══ UTILS ═══════════════════════════════════════════════════════ */
.shop-bullet-list { list-style: none; padding: 0; }
.shop-bullet-list li {
  padding: 8px 0; border-bottom: 1px solid var(--shop-line);
  font-size: 13px; display: flex; justify-content: space-between;
}
.shop-bullet-list li:last-child { border: none; }
.shop-hidden { display: none !important; }
