:root {
  --fonte: "Poppins", sans-serif;
  --cor-fundo: #faf4f2;
  --cor-texto: #2b1a1e;
  --cor-barra: #f6e4e8;
  --cor-barra-texto: #3a2228;
  --cor-detalhe: #c45c74;
  --cor-botao: #cc3d66;
  --cor-botao-hover: #a83254;
  --cor-enviar: #9a2048;
  --cor-header: #3a2228;
  --cor-submenu: #c45c74;
  --cor-banner: #e8b4bc;
  --cor-rose-soft: #f8ecee;
  --cor-rose-gold: #c9a06a;
  --cor-muted: #7a5c62;
  --radius: 8px;
  --shadow: 0 10px 28px rgba(58, 34, 40, 0.08);
  --ticker-h: 26px;
  --topbar-h: 52px;
  --search-h: 56px;
  --header-offset: calc(var(--ticker-h) + var(--topbar-h) + var(--search-h));
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { overflow-x: clip; }
body {
  font-family: var(--fonte);
  background-color: var(--cor-fundo);
  background-image: url("../img/whatsapp-bg.svg");
  background-repeat: repeat;
  background-size: 320px 320px;
  color: var(--cor-texto);
  padding-top: var(--header-offset);
  min-height: 100vh;
  overflow-x: clip;
}
img { max-width: 100%; display: block; }
button, input, select { font-family: inherit; }
a { color: inherit; text-decoration: none; }
.wrap { width: min(calc(100% - 24px), 1280px); margin: 0 auto; }

/* CabeÃ§alho sempre visÃ­vel ao rolar */
.header-pin {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1001;
  background: var(--cor-barra);
  box-shadow: 0 4px 18px rgba(58, 34, 40, .12);
}

/* Ticker */
.ticker {
  background: linear-gradient(90deg, #8f3450, #c45c74 50%, #8f3450);
  color: #fff; height: var(--ticker-h); overflow: hidden;
  font-size: 12px; display: flex; align-items: center; letter-spacing: .04em;
}
.ticker-track {
  display: flex; gap: 48px; white-space: nowrap;
  animation: ticker 28s linear infinite;
}
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* Top bar */
.topbar {
  background: var(--cor-barra);
  box-shadow: 0 4px 16px rgba(143, 52, 80, .12);
  min-height: var(--topbar-h);
}
.topbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 10px; min-height: var(--topbar-h); padding: 6px 4px;
}
.logo-mobile {
  display: flex; align-items: center; gap: 8px; min-width: 0; flex: 0 0 auto;
}
.logo-mobile span {
  display: none;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700; font-size: 18px; letter-spacing: .08em;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  color: var(--cor-header);
}
.logo-mobile img {
  width: 42px; height: 42px; border-radius: 50%; object-fit: contain; background: transparent;
  border: none; flex: 0 0 42px;
}
.social-desk { display: none; }
.top-actions { display: flex; align-items: center; gap: 6px; flex: 0 0 auto; margin-left: auto; }
.icon-btn {
  width: 40px; height: 40px; border: 1px solid var(--cor-botao); border-radius: 8px;
  background: var(--cor-botao); color: #fff; display: grid; place-items: center;
  cursor: pointer; flex: 0 0 auto; transition: background .2s, transform .15s;
}
.icon-btn:hover { background: var(--cor-botao-hover); }
.icon-btn.icon-wa {
  background: #25d366; border-color: #1dae52;
}
.icon-btn.icon-wa:hover { background: #1fb855; }
.icon-mobile-only { display: grid; }
.icon-desk-only { display: none; }
.cart-chip {
  display: inline-flex; align-items: center; gap: 7px;
  min-width: 124px; height: 40px; padding: 0 8px 0 6px;
  border: 1px solid var(--cor-botao); border-radius: 8px;
  background: var(--cor-botao); color: #fff; cursor: pointer;
  transition: background .2s;
}
.cart-chip:hover { background: var(--cor-botao-hover); }
.cart-qty {
  min-width: 22px; height: 22px; padding: 0 5px; border-radius: 6px;
  background: #fff; color: var(--cor-enviar);
  font-size: 10px; font-weight: 800; display: grid; place-items: center;
}
.cart-chip small { display: block; font-size: 7px; opacity: .78; }
.cart-chip strong { display: block; font-size: 10px; margin-top: 3px; }

.desktop-links { display: none; gap: 18px; font-size: 13px; font-weight: 500; white-space: nowrap; }
.desktop-links a { display: inline-flex; align-items: center; gap: 6px; }
.desktop-links a:hover { opacity: .75; }

/* Search (mobile) â€” dentro do header fixo, como no original */
.search-bar {
  background: var(--cor-barra); padding: 0 12px 10px;
  box-shadow: none;
}
.search-box {
  display: flex; align-items: center; background: #fff;
  border: 1px solid #ead0d4; border-radius: 8px; overflow: hidden;
}
.search-box input {
  flex: 1; border: 0; outline: 0; height: 46px; padding: 0 8px; font-size: 15px; background: transparent;
  min-width: 0;
}
.search-box button {
  height: 38px; margin-right: 4px; padding: 0 16px; border: 0; border-radius: 7px;
  background: var(--cor-botao); color: #fff; font-weight: 700; font-size: 11px; cursor: pointer;
  transition: background .2s; flex: 0 0 auto;
}
.search-box button:hover { background: var(--cor-botao-hover); }

/* Desktop header (hidden on mobile) */
.desktop-hero { display: none; background: #2f2f2f; color: #fff; border-bottom: 2px solid var(--cor-detalhe); }
.cat-nav { display: none; background: #2c181c; color: #fff; }
.hero-grid, .hero-search, .hero-wa, .logo-desk { display: none; }

.catalog-stage { background: transparent; }

/* Banner: same frame as content, full creative on mobile, catalog strip on PC */
.banner-wrap {
  position: relative;
  width: min(calc(100% - 24px), 1280px);
  margin: 8px auto 0;
}
.banner {
  background: #3a2228;
  line-height: 0;
  overflow: hidden;
  border-radius: 8px;
}
.banner picture, .banner img { width: 100%; display: block; }
.banner img {
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  max-height: none;
  object-fit: contain;
  object-position: center;
}
.story-float {
  position: absolute; right: 10px; bottom: -16px; z-index: 50;
  width: 70px; height: 70px;
}
.story-float.hidden { display: none; }
.story-circle {
  width: 70px; height: 70px; border-radius: 50%; padding: 0; border: 2.5px solid var(--cor-detalhe);
  overflow: hidden; cursor: pointer; background: #3a2228; position: relative;
  box-shadow: 0 6px 16px rgba(143, 52, 80, .32);
  animation: storyring 2.4s ease-in-out infinite;
}
.story-circle video, .story-circle img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.story-play {
  position: absolute; inset: 0; display: grid; place-items: center;
  color: #fff; font-size: 16px; background: rgba(58, 34, 40, .22);
  pointer-events: none; text-shadow: 0 2px 8px rgba(0,0,0,.45);
}
.story-close {
  position: absolute; top: -4px; left: -4px; z-index: 2;
  width: 20px; height: 20px; border: 0; border-radius: 50%;
  background: #fff; color: #666; font-size: 16px; line-height: 1; cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,.2);
}
@keyframes storyring {
  0%, 100% { box-shadow: 0 8px 22px rgba(143, 52, 80, .35), 0 0 0 0 rgba(196, 92, 116, .45); }
  50% { box-shadow: 0 8px 22px rgba(143, 52, 80, .35), 0 0 0 6px rgba(196, 92, 116, .18); }
}

/* Profile */
.profile {
  background: #fff; border-radius: 16px; padding: 14px; margin: 24px auto 8px;
  box-shadow: var(--shadow); max-width: 520px;
}
.profile-top { display: flex; gap: 12px; align-items: flex-start; }
.profile img { width: 60px; height: 60px; border-radius: 14px; object-fit: cover; flex: 0 0 60px; }
.profile h1 { margin: 0; font-size: 18px; font-family: "Cormorant Garamond", Georgia, serif; font-weight: 700; letter-spacing: .04em; color: var(--cor-header); }
.profile p { margin: 4px 0 0; font-size: 12px; color: var(--cor-muted); white-space: pre-line; }
.stats { display: flex; gap: 16px; margin-top: 8px; }
.stats strong { display: block; font-size: 14px; }
.stats span { font-size: 11px; color: var(--cor-muted); }
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.chip {
  font-size: 11px; font-weight: 700; padding: 6px 10px; border-radius: 999px;
  border: 1px solid #ead0d4; color: var(--cor-detalhe); background: var(--cor-rose-soft);
}

/* Categories â€” swipeable on mobile like FacilZap */
.cats-wrap {
  position: relative; margin: 8px 0;
  overflow: visible;
}
.cats-arrow { display: none; }
.cats {
  display: flex; gap: 12px; overflow-x: auto; overflow-y: hidden;
  padding: 12px 4px 18px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-x pan-y;
  overscroll-behavior-x: contain;
  cursor: grab;
  scroll-snap-type: x proximity;
}
.cats.is-dragging {
  cursor: grabbing; scroll-snap-type: none;
  scroll-behavior: auto;
}
.cats::-webkit-scrollbar { display: none; }
.cat {
  flex: 0 0 98px; text-align: center; cursor: pointer; color: #333;
  background: none; border: 0; padding: 0; font-family: inherit;
  scroll-snap-align: start;
  -webkit-user-select: none; user-select: none;
  touch-action: manipulation;
}
.cat img, .cat-circle, .cat-video-ring {
  width: 86px; height: 86px; border-radius: 50%; object-fit: cover; margin: 0 auto;
  border: 3px solid var(--cor-detalhe); background: var(--cor-rose-soft);
  box-shadow: 0 4px 12px rgba(196, 92, 116, .18);
  pointer-events: none;
}
.cat span {
  display: block; margin-top: 8px; font-size: 11px; font-weight: 700; line-height: 1.2;
  pointer-events: none;
}
.cat.active span { color: var(--cor-detalhe); }
.cat.active img { box-shadow: 0 0 0 3px var(--cor-rose-gold); }
.cat-video-ring {
  position: relative; overflow: hidden; display: grid; place-items: center;
  border-color: var(--cor-rose-gold);
  box-shadow: 0 0 0 3px var(--cor-detalhe);
  animation: storyring 2.4s ease-in-out infinite;
}
.cat-video-ring img { width: 100%; height: 100%; border: 0; box-shadow: none; margin: 0; }
.cat-video-ring i {
  position: absolute; color: #fff; font-size: 22px;
  text-shadow: 0 2px 8px rgba(0,0,0,.5);
}

/* Reviews */
.review-badge {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  background: #fff; border-radius: 12px; padding: 14px; margin: 8px auto 16px;
  max-width: 420px; box-shadow: 0 6px 18px rgba(0,0,0,.06); cursor: pointer;
}
.review-badge h5 { margin: 0; font-size: 14px; }
.review-badge span { font-size: 12px; color: var(--cor-muted); }

/* Toolbar */
.toolbar {
  display: flex; justify-content: center; align-items: center; gap: 8px;
  padding: 0 0 8px;
}
.toolbar select, .filter-btn {
  height: 36px; border: 0; border-radius: 8px; background: #fff;
  padding: 0 10px; font-weight: 700; font-size: 13px; box-shadow: 0 2px 8px rgba(0,0,0,.06);
  cursor: pointer;
}
.filter-btn { display: inline-flex; align-items: center; gap: 6px; }

.section-title {
  text-align: center; color: var(--cor-detalhe); font-size: 18px; margin: 24px 0 12px;
  letter-spacing: .08em; text-transform: uppercase; font-weight: 600;
}

/* Grid */
.grid {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px;
}
.card {
  background: #fff; border-radius: 10px; overflow: hidden;
  box-shadow: 0 6px 18px rgba(58, 34, 40, .06); display: flex; flex-direction: column;
  border: 1px solid #f0e4e6; transition: transform .22s ease, box-shadow .22s ease;
  min-width: 0;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(184, 74, 100, .16);
}
.card-img { position: relative; aspect-ratio: 1; background: var(--cor-rose-soft); overflow: hidden; }
.card-img img { width: 100%; height: 100%; object-fit: cover; cursor: pointer; }
.badge {
  position: absolute; top: 8px; left: 8px; background: var(--cor-rose-gold); color: #fff;
  font-size: 11px; padding: 3px 8px; border-radius: 4px; font-weight: 600;
}
.heart {
  position: absolute; top: 6px; right: 6px; width: 36px; height: 36px;
  border: 0; background: transparent; color: var(--cor-detalhe); font-size: 18px; cursor: pointer;
}
.heart.liked { color: #c45c74; }
.card-body { padding: 10px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.card-title { font-size: 13px; font-weight: 600; line-height: 1.3; min-height: 34px; cursor: pointer; }
.price { font-size: 16px; font-weight: 700; color: var(--cor-enviar); }
.old-price { font-size: 12px; color: #b09aa0; text-decoration: line-through; margin-right: 6px; }
.pay-label { font-size: 10px; color: var(--cor-muted); }
.quero {
  width: 100%; height: 38px; border: 0; border-radius: 6px; cursor: pointer;
  background: var(--cor-detalhe); color: #fff; font-weight: 600; font-size: 13px;
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  transition: background .2s; margin-top: auto;
}
.quero:hover { background: var(--cor-botao-hover); }
.quero:disabled { opacity: .55; cursor: not-allowed; }

.load-more {
  display: block; margin: 24px auto; padding: 12px 28px; border: 1px solid #ead0d4; border-radius: 8px;
  background: var(--cor-rose-soft); color: var(--cor-enviar); font-weight: 600; cursor: pointer;
}

/* Footer */
.footer { background: #f6ecee; margin-top: 0; border-top: 0; padding: 20px 0 calc(92px + env(safe-area-inset-bottom)); }
.trust {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
  background: transparent; border: 0; border-radius: 0; overflow: visible;
  margin-top: 0; box-shadow: none;
}
.trust-item {
  display: flex; gap: 12px; align-items: flex-start; padding: 16px 14px;
  border: 1px solid #ead0d4; border-radius: 14px; background: #fff;
  text-align: left; cursor: pointer; font-family: inherit; width: 100%; color: inherit;
  box-shadow: 0 4px 14px rgba(58, 34, 40, .06);
}
.trust-item + .trust-item { border-left: 1px solid #ead0d4; border-top: 1px solid #ead0d4; }
.trust-icon {
  width: 40px; height: 40px; border-radius: 12px; background: var(--cor-detalhe);
  color: #fff; display: grid; place-items: center; flex: 0 0 40px; font-size: 16px;
}
.trust-item strong { display: block; font-size: 14px; line-height: 1.25; color: var(--cor-header); }
.trust-item span { font-size: 12px; color: var(--cor-muted); line-height: 1.35; }
.footer-cols { display: none; padding: 28px 0; }
.footer-brand {
  display: flex; align-items: center; gap: 14px; margin: 0 0 18px; width: fit-content;
}
.footer-brand img {
  width: 68px; height: 68px; border-radius: 50%; object-fit: cover;
  border: 2px solid var(--cor-rose-gold); background: #fff;
  box-shadow: 0 6px 16px rgba(201, 160, 106, .22);
}
.footer-brand strong {
  display: block; font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 26px; font-weight: 700; letter-spacing: .08em; color: var(--cor-header);
}
.footer-brand small {
  display: block; margin-top: 2px; font-size: 11px; letter-spacing: .12em;
  text-transform: uppercase; color: var(--cor-detalhe);
}
.footer h3 { font-size: 14px; color: var(--cor-header); }
.footer a, .footer p { font-size: 12px; color: #6e5258; line-height: 1.6; }
.footer a:hover { color: var(--cor-detalhe); }
.footer-legal { font-size: 11px; color: #8a7278; border-top: 1px solid #ead0d4; padding-top: 16px; text-align: center; }

/* Testimonials â€” igual FacilZap do vÃ­deo */
#depoimentos { scroll-margin-top: calc(var(--header-offset) + 8px); }
.testimonials {
  --rev-band: #8f3450;
  background: linear-gradient(165deg, #9a3d5a 0%, #8f3450 45%, #7a2c44 100%);
  background-image: linear-gradient(165deg, #9a3d5a 0%, #8f3450 45%, #7a2c44 100%);
  color: #fff;
  padding: 36px 0 40px;
  margin-top: 28px;
  position: relative;
  isolation: isolate;
  overflow: visible;
  z-index: 1;
}
.testimonials .wrap { position: relative; z-index: 1; }
.testimonials .t-kicker {
  margin: 0 0 12px;
  font-size: 12px;
  letter-spacing: .1em;
  font-weight: 700;
  opacity: .98;
  text-transform: uppercase;
  font-family: var(--fonte);
}
.testimonials h2 {
  margin: 0;
  font-size: clamp(28px, 7.2vw, 34px);
  line-height: 1.2;
  font-weight: 700;
  font-family: var(--fonte);
  max-width: none;
  width: 100%;
  letter-spacing: -.01em;
  color: #fff;
}
.t-sub {
  margin: 10px 0 18px;
  font-size: 15px;
  opacity: .95;
  max-width: 36ch;
  line-height: 1.45;
  font-weight: 400;
  font-family: var(--fonte);
}
.t-score-bar {
  display: flex; align-items: center; gap: 14px;
  background: #fff; color: var(--cor-texto);
  border-radius: 16px; padding: 14px 18px; margin-bottom: 18px;
  box-shadow: 0 8px 20px rgba(0,0,0,.16);
  max-width: 380px;
}
.t-score-bar strong { font-size: 36px; line-height: 1; color: var(--cor-header); }
.t-score-bar small { display: block; margin-top: 4px; color: var(--cor-muted); font-size: 13px; }
.t-stars { color: #f5b301; letter-spacing: 2px; font-size: 15px; }

/* Carrossel: card completo + peek â€” setas sÃ³ no desktop */
.rev-slider-wrap {
  display: block;
  width: 100%;
  max-width: none;
  margin: 0 0 4px;
  padding: 4px 0 6px;
  box-sizing: border-box;
  overflow: visible;
}
.rev-slider {
  min-width: 0;
  overflow: visible;
}
.rev-track {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  overflow-y: visible;
  scroll-snap-type: x proximity;
  scroll-padding-left: 16px;
  scroll-padding-right: 16px;
  padding: 10px 16px 10px 16px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  overscroll-behavior-y: auto;
  touch-action: pan-x pan-y;
  cursor: grab;
}
.rev-track::-webkit-scrollbar { display: none; }
.rev-track.is-dragging { cursor: grabbing; scroll-snap-type: none; }
.rev-nav {
  display: none;
}
.rev-card {
  flex: 0 0 min(300px, calc(100vw - 48px));
  scroll-snap-align: start;
  scroll-margin-left: 16px;
  background: #fff; color: var(--cor-texto);
  border-radius: 18px;
  padding: 20px 18px 18px;
  box-shadow: 0 12px 28px rgba(0,0,0,.18);
  box-sizing: border-box;
  overflow: visible;
  min-height: 0;
  touch-action: pan-x pan-y;
}
.rev-card:first-child {
  margin-left: 0;
}
.rev-card-top {
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
  margin-bottom: 12px;
}
.rev-card-top strong { color: #6b7280; font-size: 13px; font-weight: 600; }
.rev-person { display: none; }
.rev-avatar { display: none; }
.rev-quote {
  margin: 0 0 14px;
  font-size: 17px;
  line-height: 1.35;
  font-weight: 700;
  color: #1f1216;
  overflow: visible;
}
.rev-meta { display: grid; gap: 2px; margin-bottom: 12px; }
.rev-meta strong { font-size: 14px; color: var(--cor-header); font-weight: 700; }
.rev-meta span { font-size: 12px; color: #9ca3af; }
.rev-verified {
  display: inline-flex; align-items: center; gap: 6px;
  color: #00a86b; background: transparent;
  border-radius: 0; padding: 0;
  font-size: 13px; font-weight: 600;
}
.rev-dots {
  display: flex; justify-content: center; align-items: center;
  gap: 6px; margin: 0 0 8px; padding: 0 12px;
  flex-wrap: nowrap; min-height: 0;
}
.rev-dots button {
  width: 10px; height: 10px; border: 0; background: transparent; padding: 0;
  cursor: pointer; display: grid; place-items: center; flex: 0 0 auto;
}
.rev-dots button::after {
  content: ""; width: 7px; height: 7px; border-radius: 50%;
  background: rgba(255,255,255,.4);
}
.rev-dots button.active::after { background: #fff; transform: scale(1.15); }
.t-all {
  width: calc(100% - 32px); max-width: 420px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
  border: 0; border-radius: 999px; padding: 15px 20px;
  background: #5a2232; color: #fff; font-weight: 700; font-size: 15px;
  cursor: pointer; font-family: inherit;
}
.t-all:hover { background: #3a2228; }

.rev-modal-summary {
  display: flex; align-items: center; gap: 12px;
  background: var(--cor-rose-soft); border-radius: 14px; padding: 14px;
  margin-bottom: 14px;
}
.rev-modal-summary strong { font-size: 32px; color: var(--cor-header); }
.rev-modal-summary small { display: block; color: var(--cor-muted); font-size: 12px; }
.rev-modal-list { display: grid; gap: 10px; }
.rev-card-list {
  flex: none; width: 100%; box-shadow: none;
  border: 1px solid #ead0d4; border-radius: 14px; padding: 12px;
}
.rev-card-list .rev-quote { min-height: 0; margin: 0 0 8px; font-size: 13px; }
.rev-list-row {
  display: grid; grid-template-columns: 1fr auto; gap: 10px; align-items: start;
}
.rev-list-main { min-width: 0; }
.rev-divider {
  height: 1px; background: #f0e4e6; margin: 10px 0 8px;
}
.rev-thumb {
  position: relative; width: 72px; height: 72px; border: 0; padding: 0;
  border-radius: 12px; overflow: hidden; cursor: pointer; background: #eee;
  flex: 0 0 72px;
}
.rev-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.rev-thumb-more {
  position: absolute; inset: 0; display: grid; place-items: center;
  background: rgba(0,0,0,.45); color: #fff; font-weight: 800; font-size: 16px;
}
.rev-load-more {
  width: 100%; margin-top: 12px; border: 1.5px solid var(--cor-enviar);
  background: #fff; color: var(--cor-enviar); border-radius: 999px;
  padding: 12px 14px; font-weight: 700; cursor: pointer; font-family: inherit;
}
.rev-load-more:hover { background: var(--cor-rose-soft); }
.rev-load-more[hidden] { display: none !important; }
.rev-close-btn {
  width: 100%; margin-top: 10px; border: 0; border-radius: 999px;
  padding: 12px; background: var(--cor-enviar); color: #fff;
  font-weight: 700; cursor: pointer; font-family: inherit;
}
.rev-modal-hint {
  margin: 10px 0 0; text-align: center; font-size: 11px; color: var(--cor-muted);
}
.photos-box { width: min(100%, 480px); }
.photos-by { margin: 0 16px 8px; font-size: 13px; color: var(--cor-muted); }
.photos-viewer {
  padding: 0 16px 16px; display: grid; gap: 10px;
}
.photos-viewer img {
  width: auto; max-width: 100%; margin: 0 auto; display: block; border-radius: 12px; object-fit: contain; max-height: 70vh;
  background: transparent;
}

.facilzap-credit {
  display: inline-block; margin-top: 8px; color: #9a7e84; font-size: 11px;
}

/* WhatsApp reviews: one FULL print at a time (no cut edges) */
.wa-slider {
  position: relative; display: flex; align-items: center; gap: 10px;
  margin: 8px auto 12px; overflow: visible; max-width: 420px;
}
.wa-viewport {
  flex: 1; min-width: 0;
  overflow: hidden; /* hide neighbors completely â€” no half cards */
  padding: 8px 0 12px;
}
.wa-track {
  display: flex;
  width: 100%;
  transition: transform .35s ease;
  will-change: transform;
}
.wa-nav {
  flex: 0 0 44px; width: 44px; height: 44px; border: 0; border-radius: 50%;
  background: #fff; color: #8f3450; font-size: 18px;
  box-shadow: 0 8px 20px rgba(0,0,0,.28); cursor: pointer;
  display: grid; place-items: center; z-index: 3;
}
.wa-nav:hover { background: #fff; }
.wa-nav:disabled { opacity: .35; cursor: default; }

.wa-print {
  flex: 0 0 100%;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding: 0 2px;
}
.wa-caption {
  margin: 10px 0 0; text-align: center; font-size: 11px; color: rgba(255,255,255,.88);
  font-weight: 600; letter-spacing: .02em;
}
.wa-dots {
  display: flex; justify-content: center; gap: 7px; margin: 4px 0 8px;
}
.wa-dots button {
  width: 8px; height: 8px; border-radius: 50%; border: 0;
  background: rgba(255,255,255,.35); padding: 0; cursor: pointer;
}
.wa-dots button.active { background: #fff; transform: scale(1.15); }

/* Full WhatsApp frame â€” grows with text, never clips messages */
.wa-phone {
  width: 100%;
  height: auto;
  min-height: 0;
  border-radius: 16px;
  overflow: visible;
  background: transparent;
  border: 0;
  box-shadow: none;
  display: flex; flex-direction: column;
  font-family: "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif;
  position: relative;
}
.wa-phone-frame {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  background: #efeae2;
  border: 1px solid rgba(0,0,0,.14);
  box-shadow:
    0 1px 0 rgba(255,255,255,.4) inset,
    0 12px 28px rgba(0,0,0,.24);
  display: flex; flex-direction: column;
}
.wa-notch { display: none; }
.wa-status {
  display: flex; justify-content: space-between; align-items: center;
  padding: 6px 12px 2px; background: #008069; color: #fff;
  font-size: 11px; font-weight: 600;
}
.wa-status-icons { display: inline-flex; align-items: center; gap: 4px; opacity: .95; }
.wa-header {
  display: flex; align-items: center; gap: 4px;
  background: #008069; color: #fff; padding: 2px 6px 8px 0;
  box-shadow: 0 1px 2px rgba(0,0,0,.18);
}
.wa-back {
  border: 0; background: transparent; color: #fff; width: 34px; height: 34px;
  display: grid; place-items: center; padding: 0; cursor: default; flex: 0 0 34px;
}
.wa-avatar {
  width: 36px; height: 36px; border-radius: 50%; object-fit: cover;
  background: #dfe5e7; flex: 0 0 36px;
}
.wa-avatar-fallback {
  width: 36px; height: 36px; border-radius: 50%; flex: 0 0 36px;
  display: grid; place-items: center; font-weight: 700; font-size: 14px;
  color: #fff; background: #6b7c85;
}
.wa-contact { flex: 1; min-width: 0; padding-left: 4px; }
.wa-contact strong {
  display: block; font-size: 15px; line-height: 1.15; font-weight: 500;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.wa-contact small {
  display: block; font-size: 11.5px; line-height: 1.2; opacity: .9; font-weight: 400;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.wa-actions {
  display: flex; align-items: center; gap: 12px; padding: 0 8px 0 4px;
  opacity: .96;
}
.wa-chat {
  flex: 1 1 auto; padding: 12px 14px 14px; overflow: visible; position: relative;
  background-color: #efeae2;
  background-image: url("../img/wa-chat-bg.svg");
  background-size: 260px auto; background-repeat: repeat;
  background-blend-mode: multiply;
  min-height: 0;
}
.wa-day { display: flex; justify-content: center; margin: 2px 0 10px; }
.wa-day span {
  background: #ffffff; color: #54656f; font-size: 11px; font-weight: 500;
  padding: 4px 10px; border-radius: 6px;
  box-shadow: 0 1px 0.5px rgba(11,20,26,.13);
}
.wa-row { display: flex; margin-bottom: 8px; padding: 0 6px; }
.wa-row-in { justify-content: flex-start; }
.wa-row-out { justify-content: flex-end; }
.wa-bubble {
  position: relative; max-width: 92%;
  padding: 8px 10px 5px 11px;
  box-shadow: 0 1px 0.5px rgba(11,20,26,.13);
  color: #111b21;
}
.wa-bubble p {
  margin: 0; font-size: 14px; line-height: 1.4; font-weight: 400;
  white-space: pre-wrap; word-break: break-word; overflow: visible;
}
.wa-in { background: #fff; border-radius: 0 8px 8px 8px; }
.wa-out { background: #d9fdd3; border-radius: 8px 0 8px 8px; }
.wa-bubble-photo {
  margin: -4px -6px 6px -7px;
  border-radius: 6px;
  overflow: hidden;
}
.wa-bubble-photo img {
  width: 100%;
  max-height: 230px;
  object-fit: cover;
  display: block;
  border-radius: 6px;
}
.wa-meta {
  display: flex; align-items: center; justify-content: flex-end; gap: 3px;
  margin-top: 3px; min-height: 14px;
}
.wa-meta span { font-size: 10.5px; color: #667781; line-height: 1; }
.wa-ticks { display: block; flex: 0 0 auto; }
.wa-tail {
  position: absolute; top: 0; width: 0; height: 0; display: block;
  border-style: solid;
}
.wa-tail-in {
  left: -6px;
  border-width: 0 6px 6px 0;
  border-color: transparent #fff transparent transparent;
}
.wa-tail-out {
  right: -6px;
  border-width: 0 0 6px 6px;
  border-color: transparent transparent transparent #d9fdd3;
}
.wa-composer {
  display: flex; align-items: center; gap: 6px;
  padding: 5px 6px 7px; background: #f0f2f5;
  border-top: 1px solid rgba(0,0,0,.04);
}
.wa-input {
  flex: 1; min-width: 0; height: 40px; border-radius: 21px; background: #fff;
  display: flex; align-items: center; gap: 8px; padding: 0 10px 0 8px;
  color: #8696a0; font-size: 14px;
  box-shadow: 0 1px 0.5px rgba(11,20,26,.06);
}
.wa-input span { flex: 1; }
.wa-mic {
  width: 40px; height: 40px; border: 0; border-radius: 50%;
  background: #008069; display: grid; place-items: center; flex: 0 0 40px;
}
.wa-modal-grid { display: grid; gap: 16px; }
.wa-modal-grid .wa-print { flex: none; width: 100%; max-width: 360px; margin: 0 auto; }
.wa-modal-grid .wa-caption { color: var(--cor-muted); }
.wa-modal-grid .wa-phone,
.wa-modal-grid .wa-phone-frame { min-height: 0; height: auto; }
.wa-mic { display: none; }
.t-all-legacy { display: none; }

/* Newsletter / contact â€” FacilZap style */
.news-card {
  margin: 22px 0; background: #fff; border: 1px solid #ead0d4; border-radius: 18px;
  padding: 22px 18px; display: grid; gap: 12px; justify-items: center; text-align: center;
  box-shadow: 0 8px 22px rgba(58, 34, 40, .08);
}
.news-ico {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--cor-rose-soft); color: var(--cor-enviar);
  display: grid; place-items: center; font-size: 22px;
}
.news-kicker { display: block; color: var(--cor-detalhe); font-size: 12px; font-weight: 800; letter-spacing: .1em; }
.news-copy h3 { margin: 8px 0 6px; font-size: 22px; color: var(--cor-header); line-height: 1.25; }
.news-copy p { margin: 0; font-size: 14px; color: var(--cor-muted); }
.news-cta {
  border: 0; border-radius: 12px; padding: 14px 22px; min-width: 200px; width: 100%;
  background: var(--cor-enviar); color: #fff; font-weight: 700;
  cursor: pointer; font-family: inherit; font-size: 15px;
}
.news-cta:hover { background: var(--cor-botao-hover); }
.news-card-top { display: flex; align-items: center; gap: 14px; text-align: left; width: 100%; }
.news-form {
  display: flex; flex-wrap: wrap; gap: 10px; width: 100%; margin-top: 4px;
}
.news-form input {
  flex: 1 1 160px; border: 1px solid #ead0d4; border-radius: 10px;
  padding: 12px 14px; font-size: 14px; font-family: inherit; outline: none;
  background: #fdf8f9; color: var(--cor-header);
}
.news-form input:focus { border-color: var(--cor-enviar); }
.news-form .wa-field {
  flex: 1 1 160px; display: flex; align-items: center; gap: 0;
  border: 1px solid #ead0d4; border-radius: 10px; background: #fdf8f9; overflow: hidden;
}
.news-form .wa-field .wa-ddi {
  padding: 0 10px; font-size: 13px; color: var(--cor-muted); white-space: nowrap; flex-shrink: 0;
}
.news-form .wa-field input {
  border: none; border-radius: 0; background: transparent; flex: 1; padding: 12px 10px 12px 0;
}
.news-form .news-cta { flex: 0 0 auto; min-width: 120px; width: auto; }
.news-disclaimer { font-size: 11px; color: var(--cor-muted); text-align: center; margin: 4px 0 0; width: 100%; }

.footer-identity {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  margin: 18px 0 8px; flex-wrap: wrap;
}
.verified-pill {
  display: inline-flex; align-items: center; gap: 6px; background: var(--cor-rose-soft);
  color: var(--cor-enviar); border-radius: 999px; padding: 8px 12px; font-size: 12px; font-weight: 700;
}
.footer-social { display: none; gap: 8px; }
.footer-social a {
  width: 38px; height: 38px; display: grid; place-items: center;
  border: 1px solid #ead0d4; border-radius: 8px; color: var(--cor-header);
}
.secure-line { color: var(--cor-detalhe) !important; font-weight: 600; }
.footer-acc { margin: 8px 0; }
.footer-acc details { background: transparent; border-bottom: 1px solid #ead0d4; }
.footer-acc summary {
  list-style: none; display: flex; align-items: center; gap: 12px;
  padding: 18px 4px; font-weight: 700; cursor: pointer; color: var(--cor-header);
  font-size: 16px; min-height: 54px;
}
.footer-acc summary::-webkit-details-marker { display: none; }
.footer-acc summary i { color: var(--cor-detalhe); width: 20px; font-size: 18px; }
.footer-acc summary::after {
  content: "\f107";
  font-family: FontAwesome;
  margin-left: auto;
  color: var(--cor-muted);
  font-size: 16px;
}
.footer-acc details[open] summary::after { content: "\f106"; }
.footer-acc p { margin: 0; padding: 0 8px 14px 36px; }
.footer-pills { display: flex; gap: 8px; flex-wrap: wrap; margin: 16px 0; }
.footer-pills a {
  flex: 1; min-width: 120px; text-align: center; border: 1px solid #ead0d4; background: #fff;
  border-radius: 999px; padding: 10px 12px; font-weight: 700; font-size: 13px;
}

/* Checkout bar */
.checkout-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 1100;
  background: #fff; border-top: 1px solid #ead0d4;
  display: flex; align-items: center; justify-content: space-between;
  gap: 10px; padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  box-shadow: 0 -8px 24px rgba(143, 52, 80, .1);
}
.checkout-bar strong { display: block; font-size: 13px; }
.checkout-bar small { color: var(--cor-muted); font-size: 11px; }
.checkout-actions { display: flex; gap: 8px; align-items: center; flex: 0 0 auto; }
.btn-finalizar {
  border: 0; border-radius: 10px; background: var(--cor-enviar); color: #fff;
  padding: 10px 16px; font-weight: 700; cursor: pointer; display: flex; align-items: center; gap: 8px;
  transition: background .2s; white-space: nowrap;
}
.btn-finalizar:hover { background: var(--cor-botao-hover); }
.progress { height: 4px; background: #f0e4e6; position: absolute; left: 0; right: 0; top: 0; }
.progress i { display: block; height: 100%; background: var(--cor-detalhe); width: 0; }


/* Overlay / drawers */
.overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.55); z-index: 1200;
  opacity: 0; visibility: hidden; transition: .2s;
}
.overlay.show { opacity: 1; visibility: visible; }
.drawer {
  position: fixed; top: 0; left: 0; bottom: 0; width: min(92vw, 390px);
  background: #3a2228; color: #fff; z-index: 1201; transform: translateX(-102%);
  transition: transform .3s cubic-bezier(.22,.8,.22,1); overflow: auto;
}
.drawer.show { transform: none; }
.drawer-header-new { background: var(--cor-detalhe); padding: 20px 16px 16px; border-bottom: 1px solid rgba(0,0,0,0.1); }
.dh-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.dh-brand { display: flex; align-items: center; gap: 12px; }
.dh-logo { width: 44px; height: 44px; border-radius: 50%; border: 2px solid rgba(255,255,255,0.2); }
.dh-text h2 { margin: 0; font-size: 14px; font-weight: 700; color: #fff; }
.dh-text p { margin: 2px 0 0; font-size: 11px; color: rgba(255,255,255,0.8); }
.dh-close { width: 32px; height: 32px; border-radius: 10px; background: rgba(255,255,255,0.2); color: #fff; border: none; font-size: 20px; display: flex; align-items: center; justify-content: center; cursor: pointer; }
.dh-search { position: relative; }
.dh-search i { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: var(--cor-detalhe); font-size: 14px; }
.dh-search input { width: 100%; height: 40px; border-radius: 12px; border: none; padding: 0 16px 0 38px; font-size: 13px; font-family: inherit; font-weight: 600; box-sizing: border-box; }
.dh-search input:focus { outline: none; box-shadow: 0 0 0 3px rgba(255,255,255,0.3); }

.drawer-body { background: #2c2c2e; padding: 20px 16px; min-height: calc(100% - 130px); }
.drawer-subtitle { font-size: 11px; font-weight: 700; color: #9ca3af; letter-spacing: .05em; margin: 0 0 12px; text-transform: uppercase; }
.quick-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 24px; }
.quick-card { background: #fff; border-radius: 14px; padding: 12px 8px; display: flex; flex-direction: column; align-items: center; gap: 8px; text-decoration: none; color: #1e293b; transition: .2s; }
.quick-card:hover { transform: translateY(-2px); }
.qc-icon { width: 32px; height: 32px; border-radius: 10px; background: var(--cor-rose-soft); color: var(--cor-detalhe); display: flex; align-items: center; justify-content: center; font-size: 14px; }
.quick-card span { font-size: 11px; font-weight: 700; text-align: center; }

.cat-list-new { list-style: none; margin: 0; padding: 0; }
.cat-list-new a { display: flex; align-items: center; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.05); text-decoration: none; color: #fff; }
.cat-list-new a:hover { background: rgba(255,255,255,0.05); }
.cat-list-new .cl-icon { width: 36px; height: 36px; border-radius: 12px; background: var(--cor-rose-soft); color: var(--cor-detalhe); display: flex; align-items: center; justify-content: center; font-size: 14px; margin-right: 12px; flex-shrink: 0; }
.cat-list-new .cl-name { flex: 1; font-size: 12px; font-weight: 700; text-transform: uppercase; }
.cat-list-new .cl-badge { background: #fff; color: #475569; font-size: 10px; font-weight: 700; padding: 2px 8px; border-radius: 10px; margin-right: 12px; }
.cat-list-new .cl-arrow { color: #9ca3af; font-size: 14px; }

.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; width: min(94vw, 420px);
  background: #fff; z-index: 1301; transform: translateX(102%);
  transition: transform .3s; display: flex; flex-direction: column;
}
.cart-drawer.show { transform: none; }
.cart-head, .modal-head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 16px; border-bottom: 1px solid #ead0d4; font-weight: 700;
  color: var(--cor-header); flex: 0 0 auto;
}
.cart-items { flex: 1; overflow: auto; padding: 12px; }
.cart-line {
  display: grid; grid-template-columns: 64px 1fr auto; gap: 10px;
  padding: 10px 0; border-bottom: 1px solid #f0f0f0;
}
.cart-line img { width: 64px; height: 64px; object-fit: cover; border-radius: 8px; background: var(--cor-rose-soft); }
.qty { display: flex; align-items: center; gap: 6px; }
.qty button {
  width: 26px; height: 26px; border-radius: 50%; border: 1px solid #ead0d4; background: var(--cor-rose-soft); cursor: pointer;
  color: var(--cor-enviar);
}
.cart-foot { padding: 14px; border-top: 1px solid #eee; padding-bottom: calc(14px + env(safe-area-inset-bottom)); }
.warn { background: #fdf2f4; color: #8f3450; padding: 8px 10px; border-radius: 8px; font-size: 12px; margin-bottom: 8px; border: 1px solid #ead0d4; }

.modal {
  position: fixed; inset: 0; z-index: 1400; display: none; align-items: flex-end; justify-content: center;
  background: rgba(0,0,0,.5); padding: 0;
}
.modal.show { display: flex; }
.modal-box {
  background: #fff; width: min(100%, 640px); max-height: min(92vh, 100dvh);
  overflow: auto; border-radius: 16px 16px 0 0; padding-bottom: calc(24px + env(safe-area-inset-bottom));
}
.modal-box.auth-box-split {
  width: min(100%, 820px);
}
.modal-box.auth-sheet {
  width: min(100%, 420px);
}
.modal-gallery { background: var(--cor-rose-soft); }
.modal-gallery img { width: 100%; aspect-ratio: 1; object-fit: cover; display: block; }
.thumbs { display: flex; gap: 8px; padding: 10px; overflow-x: auto; }
.thumbs img { width: 64px; height: 64px; object-fit: cover; border-radius: 8px; cursor: pointer; opacity: .7; flex: 0 0 auto; background: var(--cor-rose-soft); }
.thumbs img.active { opacity: 1; outline: 2px solid var(--cor-detalhe); }
.sizes { display: flex; flex-wrap: wrap; gap: 8px; padding: 0 16px; }
.size-btn {
  min-width: 44px; height: 36px; border: 1px solid #ead0d4; background: #fff;
  border-radius: 8px; cursor: pointer; font-weight: 600;
}
.size-btn.active { background: var(--cor-detalhe); color: #fff; border-color: var(--cor-detalhe); }
.modal-info { padding: 8px 16px 16px; }
.modal-info h3 { margin: 0 0 6px; font-size: 17px; line-height: 1.3; }
.modal-stock {
  margin: 0 0 10px; font-size: 12px; font-weight: 700;
  color: var(--cor-enviar); display: flex; flex-wrap: wrap; gap: 6px; align-items: center;
}
.modal-stock .stock-pill {
  display: inline-flex; align-items: center; gap: 5px;
  background: var(--cor-rose-soft); border: 1px solid #ead0d4;
  color: var(--cor-enviar); border-radius: 999px; padding: 4px 10px; font-size: 11px;
}
.modal-stock .stock-pill.low { background: #fff4e5; border-color: #f5c77e; color: #9a5b00; }
.modal-stock .stock-pill.out { background: #fde8e8; border-color: #f0b4b4; color: #a11; }
.modal-desc {
  margin: 0 0 14px; padding: 12px 12px;
  background: #fff; border: 1px solid #ead0d4; border-radius: 10px;
  font-size: 13px; line-height: 1.5; color: #4a353a;
}
.modal-desc strong { display: block; margin-bottom: 4px; color: var(--cor-header); font-size: 12px; letter-spacing: .04em; text-transform: uppercase; }
.modal-size-label { margin: 0 0 8px; font-size: 12px; color: var(--cor-muted); font-weight: 600; }
.size-btn.disabled, .size-btn:disabled {
  opacity: .4; text-decoration: line-through; cursor: not-allowed;
}
.card-stock {
  font-size: 11px; font-weight: 700; color: var(--cor-enviar); margin-top: 2px;
}
.card-stock.low { color: #9a5b00; }
.card-stock.out { color: #a11; }
.badge.out {
  background: #a11; left: auto; right: 8px; top: 8px;
}
.close-x { background: none; border: 0; font-size: 28px; cursor: pointer; line-height: 1; color: var(--cor-header); }
.cart-head .close-x,
.modal-head .close-x { color: var(--cor-header); }
.admin-head .close-x { color: #fff; }
.story-box { padding-bottom: 0; }
.story-box video { width: 100%; max-height: 72vh; background: #111; display: block; }

/* High Definition Image Zoom Lightbox */
.img-zoom-modal {
  position: fixed;
  inset: 0;
  z-index: 2200;
  background: rgba(0, 0, 0, 0.95);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.img-zoom-modal.show {
  display: flex !important;
}
.img-zoom-box {
  position: relative;
  max-width: 96vw;
  max-height: 94vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.img-zoom-close {
  position: absolute;
  top: -46px;
  right: 0px;
  color: #fff;
  font-size: 38px;
  cursor: pointer;
  z-index: 2202;
  text-shadow: 0 2px 12px rgba(0,0,0,0.9);
  background: none;
  border: 0;
  line-height: 1;
  padding: 4px 10px;
}
.img-zoom-close:hover {
  color: var(--cor-detalhe);
}
.img-zoom-content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100vw;
  height: 100vh;
}

.img-zoom-content img {
  width: 100%;
  height: 100%;
  max-width: 94vw;
  max-height: 84vh;
  object-fit: scale-down;
  border-radius: 8px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.7);
  transition: transform 0.25s ease;
  user-select: none;
}
.img-zoom-caption {
  color: #f0f0f0;
  font-size: 14px;
  margin-top: 12px;
  text-align: center;
  font-weight: 600;
  max-width: 85vw;
}
.wa-bubble-photo img, .modal-gallery img {
  cursor: pointer;
}

.toast {
  position: fixed; top: calc(var(--header-offset) + 12px); right: 12px; z-index: 2000;
  background: var(--cor-header); color: #fff; padding: 10px 14px; border-radius: 8px;
  font-size: 13px; opacity: 0; transform: translateY(-8px); transition: .2s; pointer-events: none;
}
.toast.show { opacity: 1; transform: none; }

.empty { text-align: center; color: #777; padding: 40px 16px; }

/* Tablet */
@media (min-width: 700px) {
  .grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
  .banner img {
    height: auto;
    max-height: none;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    object-position: center center;
  }
  .section-title { font-size: 20px; }
}

/* Desktop storefront â€” layout FacilZap PC (mobile intacto) */
@media (min-width: 1024px) {
  :root { --search-h: 0px; }
  .footer { padding-bottom: 88px; }
  .wrap { width: min(calc(100% - 48px), 1200px); }
  .logo-mobile, .icon-mobile-only, .search-bar, .profile { display: none; }
  .icon-desk-only { display: grid; }
  .social-desk {
    display: flex; align-items: center; gap: 4px; justify-self: start;
  }
  .social-desk a {
    width: 34px; height: 34px; display: grid; place-items: center;
    color: var(--cor-header); font-size: 18px; border-radius: 50%;
  }
  .social-desk a:hover { background: rgba(184, 74, 100, .12); color: var(--cor-botao); }
  .desktop-links { display: flex; }
  .topbar-inner {
    display: grid;
    grid-template-columns: minmax(140px, 1fr) auto minmax(140px, 1fr);
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    width: min(calc(100% - 48px), 1200px);
    padding-left: 0; padding-right: 0;
  }
  .top-actions { justify-self: end; }
  .cart-chip { min-width: 140px; height: 40px; }
  .cart-chip strong { font-size: 12px; }
  .cart-chip small { font-size: 8px; }

  .desktop-hero { display: block; width: 100%; }
  .hero-grid {
    display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 24px;
    max-width: 1200px; margin: 0 auto; padding: 10px 24px 14px;
  }
  .hero-search {
    display: flex; background: #fff; border-radius: 30px; overflow: hidden; height: 48px;
    max-width: 420px; align-items: center; padding: 0 4px 0 16px;
  }
  .hero-search-icon { color: #999; font-size: 16px; margin-right: 8px; }
  .hero-search input { flex: 1; border: 0; outline: 0; padding: 0; font-size: 14px; min-width: 0; }
  .hero-search button {
    margin: 0; border: 0; border-radius: 24px; background: var(--cor-botao);
    color: #fff; font-weight: 700; padding: 0 24px; cursor: pointer; height: 40px;
    transition: background .2s; flex: 0 0 auto;
  }
  .hero-search button:hover { background: var(--cor-botao-hover); }
  .logo-desk {
    display: block; width: 100px; height: 100px; border-radius: 50%; object-fit: contain;
    margin: 0 auto; background: transparent;
    box-shadow: none;
    position: relative; z-index: 2;
  }
  .hero-actions { display: flex; align-items: center; justify-content: flex-end; gap: 24px; }
  .hero-actions a { color: #fff; font-weight: 700; font-size: 15px; display: inline-flex; align-items: center; gap: 8px; text-decoration: none; }
  .hero-actions a i { font-size: 16px; }
  .hero-actions a:hover { color: var(--cor-detalhe); }

  .cat-nav {
    display: block;
    background: #2c181c;
    box-shadow: 0 6px 16px rgba(0,0,0,.12);
  }
  .cat-nav ul {
    display: flex; justify-content: center; align-items: stretch; list-style: none;
    margin: 0 auto; padding: 0; max-width: 1200px;
  }
  .cat-nav li { position: relative; }
  .cat-nav li + li { border-left: 1px solid rgba(255,255,255,.12); }
  .cat-nav a {
    display: flex; align-items: center; gap: 6px; color: #fff; font-weight: 700; font-size: 13px;
    padding: 13px 16px; letter-spacing: .03em; white-space: nowrap;
  }
  .cat-nav a:hover, .cat-nav a.active { background: rgba(196, 92, 116, .32); }
  .cat-nav .has-sub > a i { font-size: 12px; opacity: .85; }
  .cat-nav .sub {
    display: none; position: absolute; top: 100%; left: 0; min-width: 240px;
    background: #fff; color: var(--cor-texto); list-style: none; margin: 0; padding: 8px 0;
    box-shadow: 0 12px 28px rgba(0,0,0,.18); border-radius: 0 0 10px 10px; z-index: 30;
  }
  .cat-nav .has-sub:hover .sub,
  .cat-nav .has-sub.open .sub { display: block; }
  .cat-nav .sub li { border: 0; }
  .cat-nav .sub a {
    color: var(--cor-texto); font-weight: 600; font-size: 13px; letter-spacing: 0;
    padding: 10px 16px; text-transform: none;
  }
  .cat-nav .sub a:hover { background: var(--cor-rose-soft); color: var(--cor-botao); }

  /* Banner PC: Quadrado maior (680px) sem cortes */
  .banner-wrap {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 12px 0;
    background: var(--cor-banner);
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
  }
  .banner {
    width: 100%;
    max-width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    background: transparent;
    border-radius: 8px;
    line-height: 0;
    overflow: hidden;
  }
  .banner picture,
  .banner img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    display: block;
  }
  .banner img {
    width: 100% !important;
    height: 100% !important;
    max-height: none !important;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    object-position: center center;
    background: transparent;
  }
  .story-float {
    width: 120px; height: 120px;
    right: 16px;
    bottom: 12px; top: auto;
  }
  .story-circle { width: 120px; height: 120px; border-width: 3px; }
  .story-play { font-size: 18px; }
  .grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
  .trust {
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
  }
  .trust-item + .trust-item { border-top: 1px solid #ead0d4; }
  .footer-cols {
    display: grid; grid-template-columns: 1.15fr 1fr 1fr 1fr; gap: 28px; align-items: start;
    padding: 32px 0 8px;
  }
  .footer-social { display: flex; }
  .footer-acc, .footer-pills { display: none; }
  .footer-identity { margin-top: 8px; }
  .t-score-bar { max-width: 420px; }
  .testimonials {
    padding: 48px 0 44px;
  }
  .testimonials .wrap {
    width: min(calc(100% - 48px), 1200px);
    margin: 0 auto;
  }
  .testimonials h2 { max-width: none; font-size: 36px; }
  .t-sub { font-size: 16px; max-width: 42ch; }
  .testimonials .t-kicker { font-size: 13px; }
  /* ComentÃ¡rios PC: faixa de canto a canto + mais cards */
  .rev-slider-wrap {
    display: grid;
    grid-template-columns: 48px 1fr 48px;
    align-items: center;
    gap: 8px;
    max-width: none;
    width: 100%;
    margin: 0;
    padding: 16px 12px 12px;
    box-sizing: border-box;
  }
  .rev-nav {
    display: grid; place-items: center;
    width: 44px; height: 44px; border: 0; border-radius: 50%;
    background: #fff; color: var(--rev-band); font-size: 16px;
    box-shadow: 0 6px 16px rgba(0,0,0,.22); cursor: pointer;
  }
  .rev-nav:disabled { opacity: .35; cursor: default; }
  .rev-slider { overflow: visible; }
  .rev-track {
    padding: 12px 8px 16px;
    scroll-padding-left: 8px;
    scroll-padding-right: 8px;
    gap: 16px;
  }
  .rev-card {
    flex: 0 0 min(300px, 22vw);
    padding: 22px 20px 20px;
    scroll-margin-left: 8px;
  }
  .rev-quote { font-size: 16px; }
  .rev-dots { margin: 4px 0 12px; }
  .t-all { max-width: 480px; }
  .news-card {
    grid-template-columns: auto 1fr auto;
    text-align: left;
    justify-items: stretch;
    align-items: center;
    padding: 24px 26px;
  }
  .news-copy { justify-self: start; }
  .news-cta { justify-self: end; width: auto; min-width: 200px; }
  .modal { align-items: center; padding: 24px; }
  .modal-box { border-radius: 16px; max-height: 90vh; padding-bottom: 24px; }
  .checkout-bar { padding: 12px 28px; }
  .checkout-bar .icon-btn { background: var(--cor-botao); }
  .cats-arrow {
    display: grid; place-items: center; position: absolute; top: 36px;
    width: 40px; height: 40px; border: 0; border-radius: 50%;
    background: var(--cor-botao); color: #fff; z-index: 2; cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,.18);
  }
  .cats-arrow.prev { left: -6px; }
  .cats-arrow.next { right: -6px; }
  .cats-wrap { margin-top: 28px; }
  .cats { padding: 16px 40px 22px; gap: 18px; }
  .cat { flex: 0 0 108px; }
  .cat img, .cat-circle, .cat-video-ring { width: 92px; height: 92px; }
  .cat span { font-size: 12px; }
  .review-badge { max-width: 480px; }
}

@media (min-width: 1280px) {
  .cat-nav a { padding: 13px 18px; font-size: 14px; }
  .wrap { width: min(calc(100% - 48px), 1280px); }
  .topbar-inner { width: min(calc(100% - 48px), 1280px); max-width: 1280px; }
  .hero-grid { max-width: 1280px; }
  .cat-nav ul { max-width: 1280px; }
  
  .story-float { right: 16px; }
  .rev-card { flex: 0 0 310px; }
}

@media (max-width: 420px) {
  .cart-chip { min-width: 108px; height: 38px; }
  .icon-btn { width: 36px; height: 36px; }
  .top-actions { gap: 5px; }
  .checkout-bar { gap: 8px; padding: 8px 10px calc(8px + env(safe-area-inset-bottom)); }
  .checkout-bar strong { font-size: 12px; }
  .btn-finalizar { padding: 10px 12px; font-size: 12px; }
  .wa-slider { max-width: 360px; gap: 6px; }
  .wa-print { flex: 0 0 100%; }
  .wa-phone, .wa-phone-frame { min-height: 0; height: auto; border-radius: 16px; }
  .wa-nav { flex: 0 0 36px; width: 36px; height: 36px; font-size: 13px; }
  .wa-viewport { padding: 6px 0 10px; }
  .wa-modal-grid .wa-phone, .wa-modal-grid .wa-phone-frame { min-height: 0; height: auto; }
}

@media (min-width: 480px) and (max-width: 1023px) {
  .logo-mobile span { display: block; }
}

@media (max-width: 360px) {
  .grid { gap: 8px; }
  .card-title { font-size: 12px; }
  .quero { font-size: 12px; height: 36px; }
}

/* Auth + Admin */
.account-btn {
  position: relative;
  gap: 0;
}
.account-btn.logged {
  background: rgba(255,255,255,.12);
  color: #fff;
}
.account-btn.is-admin {
  outline: 2px solid var(--cor-detalhe);
}
.account-label {
  display: none;
  font-size: 10px;
  font-weight: 600;
  max-width: 54px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.admin-chip {
  background: var(--cor-detalhe);
  color: #fff;
}
.auth-box { padding: 0 0 8px; }
.auth-box .modal-head.auth-sheet-head {
  background: transparent;
  color: var(--cor-header);
  border-bottom: 0;
  padding: 8px 12px 0;
  min-height: 40px;
}
.auth-box .modal-head.auth-sheet-head .close-x {
  color: var(--cor-header);
  font-size: 30px;
  opacity: .7;
}
.auth-sheet {
  width: min(100%, 420px);
}
.auth-sheet-title {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 4px 16px 8px;
}
.auth-sheet-title h3 {
  margin: 0 0 4px;
  font-size: 20px;
  color: var(--cor-header);
}
.auth-sheet-title p {
  margin: 0;
  font-size: 13px;
  color: var(--cor-muted);
}
.auth-wa-ico {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #efe4e8;
  color: var(--cor-enviar);
  font-size: 20px;
  flex: 0 0 auto;
}
.wa-field {
  display: flex;
  align-items: stretch;
  border: 1px solid #ead0d4;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
}
.wa-ddi {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0 10px;
  background: #faf4f5;
  border-right: 1px solid #ead0d4;
  font-size: 13px;
  font-weight: 600;
  color: var(--cor-header);
  white-space: nowrap;
}
.wa-field input {
  border: 0 !important;
  border-radius: 0 !important;
}
.auth-btn-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.auth-admin-link {
  text-align: center;
  font-size: 12px;
  margin: 0 16px 12px;
}
.auth-admin-link a {
  color: var(--cor-muted);
  text-decoration: underline;
}
.auth-form, .account-session {
  padding: 8px 16px 16px;
  display: grid;
  gap: 12px;
}
.auth-form label, .admin-form label {
  display: grid;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--cor-header);
}
.auth-form input,
.admin-form input,
.admin-form textarea,
.admin-toolbar input {
  width: 100%;
  border: 1px solid #ead0d4;
  border-radius: 10px;
  padding: 11px 12px;
  font: inherit;
  font-weight: 400;
  background: #fff;
}
.auth-form input:disabled {
  background: #f5f5f5;
  color: #777;
}
.auth-error {
  margin: 0 16px;
  color: #a11;
  font-size: 13px;
  min-height: 0;
}
.auth-error:empty { display: none; }
.btn-auth {
  border: 0;
  border-radius: 10px;
  padding: 12px 14px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
}
.btn-auth.primary {
  background: var(--cor-enviar);
  color: #fff;
}
.btn-auth.ghost {
  background: #f3ecee;
  color: var(--cor-header);
  border: 1px solid #ead0d4;
}
.btn-auth.danger, .btn-logout-acc {
  color: #c0392b;
}
.auth-actions-row {
  display: grid;
  gap: 8px;
}
.acc-hero { padding: 0 0 4px; }
.acc-kicker {
  margin: 0 0 4px;
  font-size: 11px;
  letter-spacing: .08em;
  font-weight: 700;
  color: var(--cor-enviar);
}
.acc-hero h3 {
  margin: 0 0 4px;
  font-size: 24px;
  color: var(--cor-header);
}
.acc-sub {
  margin: 0;
  font-size: 13px;
  color: var(--cor-muted);
}
.acc-back {
  border: 0;
  background: none;
  color: var(--cor-enviar);
  font-weight: 600;
  padding: 0 0 8px;
  cursor: pointer;
  font-family: inherit;
}
.acc-profile {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: #faf4f5;
  border-radius: 14px;
}
.acc-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #efe4e8;
  color: var(--cor-enviar);
  display: grid;
  place-items: center;
  font-weight: 700;
  flex: 0 0 auto;
}
.acc-profile-text {
  display: grid;
  gap: 2px;
  flex: 1;
  min-width: 0;
}
.acc-profile-text small { color: var(--cor-muted); font-size: 11px; }
.acc-profile-text strong { color: var(--cor-header); font-size: 15px; }
.acc-badge {
  background: #e8f8ef;
  color: #1a7a45;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 999px;
  white-space: nowrap;
}
.acc-wa-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border: 1px solid #ead0d4;
  border-radius: 14px;
  background: #fff;
}
.acc-wa-card i { color: #25d366; font-size: 22px; }
.acc-wa-card div { display: grid; gap: 2px; flex: 1; }
.acc-wa-card strong { font-size: 12px; color: var(--cor-header); }
.acc-wa-card span { font-size: 13px; color: var(--cor-muted); }
.acc-dot {
  width: 8px; height: 8px; border-radius: 50%; background: #25d366; flex: 0 0 auto;
}
.acc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.acc-tile {
  text-align: left;
  border: 1px solid #ead0d4;
  background: #fff;
  border-radius: 14px;
  padding: 14px 12px;
  cursor: pointer;
  display: grid;
  gap: 6px;
  color: var(--cor-header);
}
.acc-tile i { color: var(--cor-enviar); font-size: 18px; }
.acc-tile span { font-size: 11px; color: var(--cor-muted); line-height: 1.3; }
.btn-logout-acc {
  width: 100%;
  border: 1px solid #f0b4b4;
  background: #fff;
  border-radius: 12px;
  padding: 12px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
}
.acc-foot {
  margin: 0;
  text-align: center;
  font-size: 11px;
  color: var(--cor-muted);
}
.ops-box { width: min(100%, 360px); text-align: center; }
.ops-body { padding: 8px 20px 20px; display: grid; gap: 10px; justify-items: center; }
.ops-ico {
  width: 56px; height: 56px; border-radius: 50%;
  border: 2px solid #7eb6e8; color: #3b8fd4;
  display: grid; place-items: center; font-size: 22px;
}
.ops-body h3 { margin: 0; font-size: 22px; color: var(--cor-header); }
.ops-body p { margin: 0; font-size: 14px; color: #555; line-height: 1.45; }
.admin-hint {
  font-size: 12px;
  color: var(--cor-muted);
  margin: 0;
}
.admin-panel {
  position: fixed;
  inset: 0;
  z-index: 2100;
  display: none;
  background: rgba(26, 12, 16, .45);
  padding: 12px;
}
.admin-panel.show { display: flex; }
.admin-shell {
  margin: auto;
  width: min(920px, 100%);
  max-height: min(94vh, 100dvh);
  background: #fffafb;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 18px 50px rgba(58, 34, 40, .28);
}
.admin-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  background: var(--cor-header);
  color: #fff;
}
.admin-head .close-x {
  color: #fff;
  opacity: 1;
}
.admin-head span {
  display: block;
  font-size: 12px;
  opacity: .75;
}
.admin-body {
  overflow: auto;
  padding: 16px;
}
.admin-home {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
}
.admin-tile {
  text-align: left;
  border: 1px solid #ead0d4;
  background: #fff;
  border-radius: 14px;
  padding: 16px;
  cursor: pointer;
  display: grid;
  gap: 6px;
  color: var(--cor-header);
}
.admin-tile i { color: var(--cor-detalhe); font-size: 20px; }
.admin-tile span { font-size: 12px; color: var(--cor-muted); }
.admin-toolbar {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 14px;
}
.admin-toolbar input { flex: 1; }
.admin-product-list { display: grid; gap: 8px; }
.admin-product-row {
  display: grid;
  grid-template-columns: 52px 1fr auto;
  gap: 10px;
  align-items: center;
  border: 1px solid #ead0d4;
  background: #fff;
  border-radius: 12px;
  padding: 8px;
  cursor: pointer;
  text-align: left;
  width: 100%;
}
.admin-product-row img {
  width: 52px; height: 52px; object-fit: cover; border-radius: 8px; background: var(--cor-rose-soft);
}
.admin-product-row strong { display: block; font-size: 13px; color: var(--cor-header); }
.admin-product-row small { color: var(--cor-muted); font-size: 11px; }
.admin-form { display: grid; gap: 12px; max-width: 640px; }
.admin-form fieldset {
  border: 1px solid #ead0d4;
  border-radius: 12px;
  padding: 12px;
}
.admin-stock-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(88px, 1fr));
  gap: 8px;
}
.admin-stock-item {
  display: grid;
  gap: 4px;
  font-size: 11px;
}
.admin-check {
  display: flex !important;
  align-items: center;
  gap: 8px;
  grid-template-columns: none !important;
}
.admin-check input { width: auto; }
.admin-clients { display: grid; gap: 8px; }
.admin-client-row {
  border: 1px solid #ead0d4;
  border-radius: 12px;
  padding: 12px;
  background: #fff;
  display: grid;
  gap: 2px;
  font-size: 13px;
}
.admin-client-row span { color: var(--cor-muted); font-size: 12px; }

@media (min-width: 900px) {
  .account-btn { width: auto; padding: 0 10px; border-radius: 999px; }
  .auth-sheet {
    border-radius: 16px;
  }
}

/* â”€â”€ Modal InformaÃ§Ãµes da Loja â”€â”€ */
#infoModal .modal-box { max-height: 88vh; display: flex; flex-direction: column; padding: 0; overflow: hidden; }
#infoModal .modal-head { flex: 0 0 auto; padding: 16px 16px 12px; border-bottom: 1px solid #ead0d4; }
#infoBody { flex: 1; overflow-y: auto; padding: 16px; }
.info-sub { font-size: 13px; color: var(--cor-muted); margin: 0 0 14px; }
.info-store-card {
  display: flex; align-items: flex-start; gap: 12px;
  background: #fdf8f9; border: 1px solid #ead0d4; border-radius: 14px;
  padding: 14px; margin-bottom: 14px;
}
.info-logo { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; border: 2px solid var(--cor-rose-gold); flex-shrink: 0; }
.info-store-main { flex: 1; display: flex; flex-direction: column; gap: 3px; }
.info-store-name { font-size: 15px; font-weight: 700; color: var(--cor-header); }
.info-store-loc { font-size: 12px; color: var(--cor-muted); }
.info-since { font-size: 11px; color: var(--cor-detalhe); font-weight: 600; }
.info-follow-btn {
  flex-shrink: 0; border: 1.5px solid var(--cor-detalhe); border-radius: 8px;
  padding: 6px 12px; font-size: 13px; font-weight: 700; color: var(--cor-detalhe);
  text-decoration: none; white-space: nowrap; align-self: flex-start;
}
.info-follow-btn:hover { background: var(--cor-rose-soft); }
.info-stats-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 16px;
}
.info-stat {
  display: flex; flex-direction: column; align-items: center; padding: 14px 8px;
  background: #fdf8f9; border: 1px solid #ead0d4; border-radius: 12px;
}
.info-stat strong { font-size: 22px; font-weight: 800; color: var(--cor-header); }
.info-stat span { font-size: 12px; color: var(--cor-muted); margin-top: 2px; }
.info-section-title { font-size: 14px; font-weight: 700; color: var(--cor-header); margin: 0 0 10px; }
.info-data-list { display: flex; flex-direction: column; gap: 0; border: 1px solid #ead0d4; border-radius: 14px; overflow: hidden; margin-bottom: 16px; }
.info-data-item {
  display: flex; align-items: flex-start; gap: 12px; padding: 12px 14px;
  border-bottom: 1px solid #ead0d4; background: #fff;
}
.info-data-item:last-child { border-bottom: none; }
.info-data-icon {
  width: 32px; height: 32px; border-radius: 8px; background: var(--cor-rose-soft);
  color: var(--cor-detalhe); display: grid; place-items: center; font-size: 14px; flex-shrink: 0;
}
.info-data-item small { display: block; font-size: 10px; color: var(--cor-muted); font-weight: 700; letter-spacing: .05em; text-transform: uppercase; margin-bottom: 2px; }
.info-data-item a, .info-data-item span { font-size: 13px; color: var(--cor-header); font-weight: 500; }
.info-data-item a { color: var(--cor-detalhe); text-decoration: underline; }
.info-data-row2 { display: grid; grid-template-columns: 1fr 1fr; }
.info-data-row2 .info-data-item { border-right: 1px solid #ead0d4; border-bottom: 1px solid #ead0d4; }
.info-data-row2 .info-data-item:last-child { border-right: none; }
.info-stats-row2 { margin-bottom: 20px; }
.info-footer-btns {
  display: flex; gap: 10px; padding-top: 4px; padding-bottom: 4px;
}
.info-social-btn {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px; border-radius: 12px; font-weight: 700; font-size: 14px;
  text-decoration: none; border: none; cursor: pointer;
}
.info-ig { background: #f3e9fc; color: #7c3aed; }
.info-ig:hover { background: #ede0fa; }
.info-wa { background: #dcfce7; color: #16a34a; }
.info-wa:hover { background: #d0f5e0; }

/* â”€â”€ Formas de Entrega Modal â”€â”€ */
.entrega-subtitle { font-size: 13px; color: #64748b; margin: -10px 0 20px; }
.entrega-section { border: 1px solid #e2e8f0; border-radius: 12px; padding: 16px; margin-bottom: 16px; }
.entrega-sec-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.entrega-sec-header h4 { margin: 0; font-size: 14px; color: var(--cor-header); display: flex; align-items: center; gap: 8px; }
.entrega-sec-header h4 i { color: var(--cor-detalhe); font-size: 16px; }
.badge-count { background: #f1f5f9; color: #64748b; font-size: 11px; font-weight: 700; padding: 4px 8px; border-radius: 20px; }
.entrega-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media(max-width: 600px) { .entrega-grid-2 { grid-template-columns: 1fr; } }
.entrega-card { border: 1px solid #e2e8f0; border-radius: 8px; display: flex; align-items: center; justify-content: center; padding: 16px; min-height: 60px; text-align: center; }
.entrega-card.with-text { justify-content: flex-start; align-items: flex-start; gap: 12px; padding: 12px; text-align: left; }
.ec-icon { width: 32px; height: 32px; border-radius: 8px; background: #fdfafb; color: var(--cor-detalhe); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 14px; border: 1px solid #fceef1; }
.ec-text strong { display: block; font-size: 11px; color: #1e293b; margin-bottom: 4px; text-transform: uppercase; font-weight: 700; }
.ec-text p { font-size: 11px; color: #64748b; margin: 0; line-height: 1.4; }
.logo-fz { color: #10b981; font-weight: 800; font-size: 14px; }
.logo-cor { color: #eab308; font-weight: 800; font-size: 14px; }
.logo-me { color: #3b82f6; font-weight: 800; font-size: 14px; }
.logo-sf { color: #22c55e; font-weight: 800; font-size: 14px; }

.termos-box { border: 1px solid #d8b4fe; border-radius: 12px; padding: 20px; font-size: 13px; color: #475569; line-height: 1.6; background: #fff; }

/* â”€â”€ Checkout Wizard â”€â”€ */
.wiz-page {
  position: fixed; inset: 0; background: #f8fafc; z-index: 2000;
  display: flex; flex-direction: column; overflow-y: auto;
  opacity: 0; visibility: hidden; transition: .3s;
}
.wiz-page.show { opacity: 1; visibility: visible; }
.wiz-body { max-width: 800px; margin: 0 auto; padding: 32px 20px; width: 100%; box-sizing: border-box; }
.wiz-progress { display: flex; align-items: center; justify-content: space-between; margin-bottom: 32px; background: #fff; padding: 16px 24px; border-radius: 12px; border: 1px solid #e2e8f0; }
.wiz-step { display: flex; flex-direction: column; align-items: center; gap: 8px; position: relative; z-index: 2; width: 60px; }
.wiz-circle { width: 32px; height: 32px; border-radius: 50%; background: #e2e8f0; color: #64748b; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 14px; transition: .3s; }
.wiz-step p { font-size: 11px; color: #64748b; font-weight: 600; text-transform: uppercase; margin: 0; text-align: center; line-height: 1.2; }
.wiz-step.active .wiz-circle { background: var(--cor-detalhe); color: #fff; }
.wiz-step.active p { color: var(--cor-header); }
.wiz-step.done .wiz-circle { background: var(--cor-detalhe); color: #fff; }
.wiz-step.done .wiz-circle span { display: none; }
.wiz-step .wiz-circle i { display: none; }
.wiz-step.done .wiz-circle i { display: block; }
.wiz-line { flex: 1; height: 3px; background: #e2e8f0; margin: 0 -10px; position: relative; top: -10px; z-index: 1; transition: .3s; }
.wiz-line.active { background: var(--cor-detalhe); }
@media(max-width: 600px) { .wiz-progress { padding: 12px; } .wiz-step p { font-size: 9px; } .wiz-circle { width: 26px; height: 26px; font-size: 12px; } .wiz-line { top: -7px; margin: 0 -5px; } }

.wiz-panels { background: #fff; border-radius: 12px; border: 1px solid #e2e8f0; padding: 24px; box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05); }
.wiz-panel { display: none; }
.wiz-panel.active { display: block; animation: fadeUp .3s; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

.wiz-title { font-size: 18px; font-weight: 700; color: #1e293b; margin: 0 0 20px; display: flex; align-items: center; gap: 8px; }
.wiz-title i { color: var(--cor-detalhe); }
.wiz-form { display: flex; flex-direction: column; gap: 16px; margin-bottom: 24px; }
.wiz-row { display: flex; gap: 16px; }
@media(max-width: 600px) { .wiz-row { flex-direction: column; gap: 16px; } }
.wiz-field { display: flex; flex-direction: column; gap: 6px; }
.wiz-field label { font-size: 13px; font-weight: 600; color: #475569; }
.wiz-field input { padding: 12px; border: 1px solid #cbd5e1; border-radius: 8px; font-size: 14px; color: #1e293b; transition: .2s; }
.wiz-field input:focus { outline: none; border-color: var(--cor-detalhe); box-shadow: 0 0 0 3px var(--cor-rose-soft); }

.wiz-options { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.wiz-opt-label { display: flex; align-items: center; gap: 16px; padding: 16px; border: 1px solid #cbd5e1; border-radius: 8px; cursor: pointer; transition: .2s; }
.wiz-opt-label:hover { border-color: var(--cor-detalhe); background: #fdfafb; }
.wiz-opt-label input[type="radio"] { width: 18px; height: 18px; accent-color: var(--cor-detalhe); }
.wiz-opt-info { flex: 1; }
.wiz-opt-info strong { display: block; font-size: 14px; color: #1e293b; margin-bottom: 2px; }
.wiz-opt-info p { font-size: 13px; color: #64748b; margin: 0; }
.wiz-opt-price { font-size: 15px; font-weight: 700; color: #10b981; }

.wiz-actions { display: flex; gap: 16px; border-top: 1px solid #e2e8f0; padding-top: 24px; margin-top: 24px; }
.wiz-btn-back { padding: 12px 20px; border: 1px solid #cbd5e1; background: #fff; color: #475569; font-weight: 600; border-radius: 8px; cursor: pointer; transition: .2s; display: flex; align-items: center; gap: 8px; }
.wiz-btn-back:hover { background: #f1f5f9; }
.wiz-next { flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px; }

.wiz-review-blocks { display: flex; flex-direction: column; gap: 16px; margin-bottom: 24px; }
.wiz-review-item { border: 1px solid #e2e8f0; border-radius: 8px; padding: 16px; }
.wiz-ri-head { display: flex; justify-content: space-between; margin-bottom: 8px; font-weight: 700; color: #1e293b; font-size: 14px; }
.wiz-ri-head i { color: #10b981; margin-right: 6px; }
.wiz-ri-head button { background: none; border: none; color: var(--cor-detalhe); font-size: 12px; font-weight: 700; text-decoration: underline; cursor: pointer; }
.wiz-ri-body { font-size: 13px; color: #475569; line-height: 1.5; }

.wiz-box { background: #f8fafc; border: 1px dashed #cbd5e1; border-radius: 8px; padding: 16px; margin-bottom: 16px; }
.wiz-box-title { font-size: 14px; font-weight: 700; color: #1e293b; margin: 0 0 12px; display: flex; align-items: center; gap: 8px; }
.wiz-coupon { display: flex; gap: 8px; }
.wiz-coupon input { flex: 1; padding: 10px 12px; border: 1px solid #cbd5e1; border-radius: 6px; font-size: 13px; }
.wiz-coupon button { padding: 0 16px; background: var(--cor-detalhe); color: #fff; border: none; border-radius: 6px; font-weight: 700; cursor: pointer; }
#wzObs { width: 100%; border: 1px solid #cbd5e1; border-radius: 6px; padding: 12px; font-size: 13px; font-family: inherit; resize: vertical; min-height: 60px; box-sizing: border-box; }

.wiz-final-summary { border: 1px solid #e2e8f0; border-radius: 8px; padding: 16px; margin-bottom: 24px; background: #fff; }
.wiz-fs-row { display: flex; justify-content: space-between; font-size: 14px; color: #475569; margin-bottom: 8px; }
.wiz-fs-total { display: flex; justify-content: space-between; align-items: center; margin-top: 16px; padding-top: 16px; border-top: 1px solid #e2e8f0; font-size: 16px; font-weight: 700; color: #1e293b; }
.wiz-fs-total strong { font-size: 24px; color: var(--cor-detalhe); font-weight: 800; }

/* â”€â”€ PÃ¡gina Checkout PIX â”€â”€ */
.cp-page {
  position: fixed; inset: 0; background: #f8fafc; z-index: 2000;
  display: flex; flex-direction: column; overflow-y: auto;
  opacity: 0; visibility: hidden; transition: .3s;
}
.cp-page.show { opacity: 1; visibility: visible; }
.cp-header {
  background: #fff; border-bottom: 1px solid #e2e8f0;
  padding: 14px 24px; display: flex; justify-content: space-between; align-items: center;
}
.cp-brand { display: flex; align-items: center; gap: 14px; }
.cp-brand img { width: 44px; height: 44px; border-radius: 8px; border: 1px solid #e2e8f0; }
.cp-brand h2 { font-size: 16px; margin: 0; color: #1e293b; font-weight: 700; }
.cp-brand p { font-size: 12px; margin: 0; color: #64748b; }
.cp-secure { font-size: 13px; color: #10b981; font-weight: 600; border: 1px solid #10b981; padding: 6px 12px; border-radius: 20px; }
.cp-body { max-width: 1040px; margin: 0 auto; padding: 32px 20px; width: 100%; box-sizing: border-box; }
.cp-alerts { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.cp-alert {
  background: #fefce8; border: 1px solid #fef08a; border-radius: 8px;
  padding: 12px 16px; display: flex; gap: 12px; align-items: flex-start; color: #854d0e; font-size: 13px; position: relative;
}
.cp-alert i { color: #ca8a04; margin-top: 2px; }
.cp-alert strong { display: block; color: #713f12; margin-bottom: 2px; }
.cp-alert-close { position: absolute; right: 12px; top: 12px; background: none; border: none; font-size: 18px; cursor: pointer; color: #a16207; }
.cp-content { display: flex; gap: 24px; align-items: flex-start; }
@media(max-width: 800px) { .cp-content { flex-direction: column; } }
.cp-main {
  flex: 1; background: #fff; border-radius: 12px; border: 1px solid #e2e8f0;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05); padding: 24px;
}
.cp-main-head { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 24px; }
.cp-main-head h3 { font-size: 20px; font-weight: 800; color: #1e293b; margin: 0 0 4px; }
.cp-main-head p { font-size: 13px; color: #64748b; margin: 0; }
.cp-order-badge { background: #f1f5f9; padding: 8px 12px; border-radius: 8px; text-align: right; font-size: 10px; font-weight: 700; color: #64748b; letter-spacing: 1px; }
.cp-order-badge strong { display: block; font-size: 14px; color: #1e293b; margin-top: 2px; }
.cp-pix-box {
  background: #f8fafc; border: 1px solid #e2e8f0; border-radius: 12px;
  padding: 24px; display: flex; gap: 24px; align-items: center; margin-bottom: 16px;
}
@media(max-width: 600px) { .cp-pix-box { flex-direction: column; text-align: center; } }
.cp-qr { width: 180px; height: 180px; background: #fff; border: 1px solid #cbd5e1; border-radius: 8px; padding: 8px; flex-shrink: 0; }
.cp-pix-info h4 { font-size: 16px; font-weight: 700; color: #1e293b; margin: 0 0 8px; }
.cp-pix-info p { font-size: 13px; color: #64748b; margin: 0 0 16px; line-height: 1.4; }
.cp-pix-info input {
  width: 100%; background: #fff; border: 1px solid #cbd5e1; border-radius: 6px;
  padding: 10px 12px; font-size: 11px; font-family: monospace; color: #475569;
  margin-bottom: 12px; word-break: break-all;
}
.cp-btn-outline {
  display: block; width: fit-content; margin: 0 auto;
  border: 1px solid var(--cor-detalhe); color: var(--cor-detalhe); background: transparent;
  padding: 8px 16px; font-weight: 600; font-size: 13px; border-radius: 6px; cursor: pointer; transition: .2s;
}
.cp-btn-outline:hover { background: var(--cor-rose-soft); }
.cp-pix-total { font-size: 13px; color: #475569; }
.cp-pix-total strong { font-size: 15px; color: #1e293b; }
.cp-upload-area { text-align: center; border-top: 1px dashed #cbd5e1; padding-top: 24px; margin-top: 24px; }
.cp-upload-area p { font-size: 13px; color: #475569; margin: 0 0 16px; }
.cp-file-row { display: flex; flex-direction: column; align-items: center; gap: 8px; margin-bottom: 24px; }
.cp-btn-upload {
  border: 1px solid #cbd5e1; background: #fff; color: #475569;
  padding: 10px 20px; font-size: 14px; font-weight: 600; border-radius: 8px; cursor: pointer;
  display: flex; align-items: center; gap: 8px; transition: .2s;
}
.cp-btn-upload:hover { background: #f1f5f9; }
#cpFileName { font-size: 12px; color: #64748b; font-weight: 600; }
.cp-btn-solid {
  display: block; width: 100%; background: var(--cor-detalhe); color: #fff;
  border: none; padding: 14px; font-size: 14px; font-weight: 700; border-radius: 8px;
  cursor: pointer; transition: .2s; margin-bottom: 12px;
}
.cp-btn-solid:hover { background: var(--cor-botao-hover); }
.cp-btn-outline-alt {
  display: block; width: 100%; background: transparent; color: var(--cor-detalhe);
  border: 1px solid var(--cor-detalhe); padding: 14px; font-size: 14px; font-weight: 700; border-radius: 8px;
  cursor: pointer; transition: .2s;
}
.cp-btn-outline-alt:hover { background: var(--cor-rose-soft); }

.cp-sidebar {
  width: 320px; background: #fff; border-radius: 12px; border: 1px solid #e2e8f0;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05); padding: 24px; flex-shrink: 0;
}
@media(max-width: 800px) { .cp-sidebar { width: 100%; } }
.cp-sidebar h3 { font-size: 16px; font-weight: 800; color: #1e293b; margin: 0 0 20px; }
.cp-summary-lines { border-bottom: 1px solid #e2e8f0; padding-bottom: 16px; margin-bottom: 16px; }
.cp-summary-lines div { display: flex; justify-content: space-between; font-size: 13px; color: #475569; margin-bottom: 8px; }
.cp-summary-lines div strong { color: #1e293b; }
.cp-summary-total { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; }
.cp-summary-total span { font-size: 14px; color: #475569; }
.cp-summary-total strong { font-size: 20px; color: var(--cor-detalhe); font-weight: 800; }
.cp-trust-list { list-style: none; padding: 0; margin: 0 0 24px; }
.cp-trust-list li { display: flex; gap: 10px; font-size: 11px; color: #64748b; margin-bottom: 12px; align-items: flex-start; }
.cp-trust-list i { color: #cbd5e1; font-size: 14px; margin-top: 1px; }
.cp-btn-back {
  display: block; width: 100%; background: #f8fafc; color: #475569;
  border: 1px solid #e2e8f0; padding: 12px; font-size: 13px; font-weight: 600; border-radius: 8px;
  cursor: pointer; transition: .2s;
}
.cp-btn-back:hover { background: #f1f5f9; }
/* Estilos para o Cálculo de Frete Profissional */
.frete-card {
  display: flex;
  align-items: center;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 12px;
  cursor: pointer;
  transition: all 0.2s;
  background: #fff;
}
.frete-card:hover {
  border-color: #cbd5e1;
  background: #f8fafc;
}
.frete-card:has(input:checked),
.frete-card input:checked + .fc-content {
  border-color: var(--cor-detalhe);
  background: #fcf6f8;
}
.frete-card input[type="radio"] {
  margin: 0 16px 0 0;
  transform: scale(1.2);
  accent-color: var(--cor-detalhe);
  flex-shrink: 0;
}
.fc-content {
  display: flex;
  align-items: center;
  flex: 1;
  gap: 16px;
}
.fc-logo {
  width: 48px;
  height: 32px;
  object-fit: contain;
  border-radius: 4px;
  background: #fff;
  flex-shrink: 0;
}
.fc-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.fc-info strong {
  font-size: 13px;
  color: #1e293b;
}
.fc-info span {
  font-size: 11px;
  color: #64748b;
}
.fc-price {
  font-weight: 700;
  font-size: 14px;
  color: #0f172a;
  flex-shrink: 0;
}
@media (max-width: 480px) {
  .frete-card { padding: 12px; }
  
  .fc-price { font-size: 13px; }
}

.mySwiperCats {
  padding: 16px 40px 22px;
  overflow: hidden;
  width: 100%;
}
@media (max-width: 480px) {
  .mySwiperCats { padding: 12px 4px 18px; }
}

/* Swiper fixes */
.mySwiperCats { padding: 16px 10px 22px !important; }
.swiper-wrapper.cats { gap: 0 !important; } /* Swiper uses spaceBetween */
.swiper-slide { display: flex; justify-content: center; align-items: flex-start !important; }
.cats-arrow { z-index: 9999; display: grid !important; }
.cats-arrow.swiper-button-disabled { opacity: 0.5; cursor: not-allowed; }
.swiper-button-next::after, .swiper-button-prev::after { display: none !important; }
@media (max-width: 768px) {
  .cats-arrow { display: none !important; }
}

/* Fix circle alignment */
.swiper-wrapper.cats { align-items: flex-start !important; }
.swiper-slide { align-items: flex-start !important; display: flex; justify-content: center; }
.cat { display: flex; flex-direction: column; align-items: center; }

@media (min-width: 768px) {
  .cat { flex: 0 0 130px !important; max-width: 130px; }
  .cat img, .cat-circle, .cat-video-ring { width: 110px !important; height: 110px !important; }
  .cat span { font-size: 13px !important; margin-top: 10px !important; }
  .cats-wrap { width: 100% !important; max-width: 100% !important; padding: 0 12px; box-sizing: border-box; margin: 0 auto !important; }
}

@media (min-width: 768px) {
  .cats-wrap { display: none !important; }
}


/* --- TOQUES DE ELEGÂNCIA --- */

/* 1. Seleção de texto na cor da marca (ao invés do azul padrão) */
::selection {
  background: var(--cor-detalhe);
  color: #fff;
}

/* 2. Rolagem suave para toda a página */
html {
  scroll-behavior: smooth;
}

/* 3. Efeito de zoom elegante nas fotos das categorias ao passar o mouse (PC) */
.cat-circle img {
  transition: transform 0.4s ease;
}
.cat-link:hover .cat-circle img {
  transform: scale(1.1);
}

/* 4. Barra de rolagem personalizada e fina (para PC) */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #fdf5f6;
}
::-webkit-scrollbar-thumb {
  background: var(--cor-rose-escuro);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--cor-detalhe);
}

/* 5. Fundo translúcido (efeito de vidro / glassmorphism) no menu inferior (mobile) e header */
.header {
  background: rgba(253, 245, 246, 0.95) !important;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.mobile-nav {
  background: rgba(255, 255, 255, 0.92) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(184, 74, 100, 0.1);
}

/* 6. Brilho sutil contínuo nos botões principais (Finalizar pedido / Comprar) */
@keyframes shine {
  0% { left: -100%; opacity: 0; }
  20% { left: 100%; opacity: 0.6; }
  100% { left: 100%; opacity: 0; }
}
.btn-finalizar, .quero, .btn-buscar {
  position: relative;
  overflow: hidden;
}
.btn-finalizar::after, .quero::after, .btn-buscar::after {
  content: "";
  position: absolute;
  top: 0; left: -100%;
  width: 50%; height: 100%;
  background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0) 100%);
  transform: skewX(-25deg);
  animation: shine 5s infinite;
}


/* --- CORRECAO FRETE MOBILE --- */
.frete-card {
  box-sizing: border-box;
  overflow: hidden;
}
.fc-content {
  min-width: 0;
}
.fc-info {
  min-width: 0;
}
.fc-info strong {
  white-space: normal;
  word-wrap: break-word;
  line-height: 1.2;
}
.fc-info span, .fc-info small {
  font-size: 11.5px;
  color: #64748b;
  white-space: normal;
  line-height: 1.3;
  display: block;
}
.fc-price {
  white-space: nowrap;
  font-size: 13.5px !important;
}
@media (max-width: 400px) {
  .fc-content { gap: 8px; }
  .frete-card { padding: 12px 10px; }
  .frete-card input[type="radio"] { margin-right: 8px; }
}


/* --- ATACADO: TAMANHOS E BARRA FLUTUANTE --- */
.sizes-wholesale {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 12px 0;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 8px;
  background: #f8fafc;
}
.size-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
}
.size-row-left {
  display: flex;
  flex-direction: column;
}
.size-row-num {
  font-weight: 700;
  font-size: 15px;
  color: #1e293b;
}
.size-row-stock {
  font-size: 11px;
  color: #64748b;
}
.size-qty-ctrl {
  display: flex;
  align-items: center;
  gap: 12px;
}
.size-qty-ctrl button {
  width: 32px;
  height: 32px;
  border-radius: 4px;
  border: none;
  background: var(--cor-botao);
  color: #fff;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.size-qty-ctrl button:disabled {
  background: #cbd5e1;
  cursor: not-allowed;
}
.size-qty-ctrl span {
  font-weight: bold;
  width: 20px;
  text-align: center;
  font-size: 15px;
}

/* Floating Cart */
.floating-cart {
  display: none !important;
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 32px);
  max-width: 500px;
  background: var(--cor-botao);
  border-radius: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  z-index: 9999;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  color: #fff;
}
.floating-cart.hidden {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 50px);
}
.fc-info-wrap {
  display: flex;
  flex-direction: column;
}
.fc-count {
  font-size: 12px;
  opacity: 0.9;
  font-weight: 500;
}
.fc-total {
  font-size: 16px;
  font-weight: 700;
}
.fc-btn {
  background: rgba(255,255,255,0.2);
  border: 1px solid rgba(255,255,255,0.4);
  color: #fff;
  padding: 10px 16px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s;
}
.fc-btn:hover {
  background: rgba(255,255,255,0.3);
}





.modal-cart-success {
  position: absolute;
  bottom: calc(100% + 10px);
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border: 1px solid var(--cor-detalhe);
  padding: 16px;
  border-radius: 8px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  color: var(--cor-texto);
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 9999;
  box-sizing: border-box;
}
.modal-cart-success.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.modal-cart-success-btns {
  display: flex;
  gap: 8px;
  justify-content: center;
  width: 100%;
}
.modal-cart-success button {
  background: var(--cor-botao);
  color: #fff;
  padding: 10px 12px;
  border-radius: 6px;
  border: none;
  font-weight: bold;
  font-size: 13px;
  cursor: pointer;
  flex: 1;
  transition: background 0.2s;
}
.modal-cart-success button.btn-continue {
  background: #f1f5f9;
  color: #475569;
  border: 1px solid #cbd5e1;
}
.modal-cart-success button:hover {
  filter: brightness(0.9);
}

/* Custom Header Buttons - Reference Image Style */
.custom-account-btn {
  background: var(--cor-botao) !important;
  border: none !important;
  border-radius: 12px !important;
  width: 44px !important;
  height: 44px !important;
  color: #fff !important;
  font-size: 18px !important;
}
.custom-cart-btn {
  background: var(--cor-botao) !important;
  border: none !important;
  border-radius: 12px !important;
  height: 44px !important;
  padding: 0 15px 0 8px !important;
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
}
.custom-cart-qty {
  background: rgba(255,255,255,0.95) !important;
  color: var(--cor-botao) !important;
  border-radius: 8px !important;
  width: 28px !important;
  height: 28px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 14px !important;
  font-weight: 800 !important;
}
.custom-cart-texts {
  display: flex !important;
  flex-direction: column !important;
  text-align: left !important;
  line-height: 1.1 !important;
}
.custom-cart-texts small {
  font-size: 10px !important;
  font-weight: 500 !important;
  color: rgba(255,255,255,0.9) !important;
}
.custom-cart-texts strong {
  font-size: 14px !important;
  font-weight: 800 !important;
  color: #fff !important;
}
.custom-cart-icon {
  font-size: 18px !important;
  color: #fff !important;
  margin-left: 5px !important;
}
@media (max-width: 420px) {
  .custom-account-btn { width: 38px !important; height: 38px !important; font-size: 16px !important; }
  .custom-cart-btn { height: 38px !important; gap: 8px !important; padding: 0 10px 0 5px !important; }
  .custom-cart-qty { width: 24px !important; height: 24px !important; font-size: 12px !important; }
  .custom-cart-texts small { font-size: 9px !important; }
  .custom-cart-texts strong { font-size: 12px !important; }
  .custom-cart-icon { font-size: 14px !important; }
}

/* Increase WhatsApp Icon Sizes */
.social-desk a, .footer-social a {
  width: 48px !important;
  height: 48px !important;
  font-size: 26px !important;
}
.footer-social a i, .social-desk a i {
  font-size: 26px !important;
}

/* Fake Sales Notification */
.fake-sale-popup {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px 12px 12px;
  max-width: 380px;
  z-index: 9999;
  transform: translateY(150%);
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  border: 1px solid #e2e8f0;
}
.fake-sale-popup.show {
  transform: translateY(0);
  opacity: 1;
}
.fake-sale-img {
  width: 65px;
  height: 65px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}
.fake-sale-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.fake-sale-header {
  font-size: 12px;
  color: #16a34a;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
}
.fake-sale-title {
  font-size: 13px;
  color: var(--cor-texto);
  line-height: 1.3;
  margin: 0;
  font-weight: 500;
}
.fake-sale-time {
  font-size: 11px;
  color: #64748b;
}
.fake-sale-close {
  position: absolute;
  top: 6px;
  right: 8px;
  background: none;
  border: none;
  font-size: 18px;
  color: #94a3b8;
  cursor: pointer;
  line-height: 1;
}
@media (max-width: 768px) {
  .fake-sale-popup {
    bottom: 80px;
    left: 10px;
    right: 10px;
    max-width: none;
  }
}
