:root {
  --black: #020202;
  --gold: #b89735;
  --green: #26b85a;
  --line: #e5e5e5;
  --text: #111;
  --muted: #6f6f6f;
}

* { box-sizing: border-box; }

html {
  background: #050505;
}

body {
  margin: 0;
  font-family: "Public Sans", Arial, Helvetica, sans-serif;
  color: var(--text);
  background: #f7f7f7;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select { font: inherit; }

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.site-header {
  background: var(--black);
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 20;
}

.header-main {
  min-height: 118px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 18px 50px 10px;
}

.search {
  width: min(250px, 100%);
  height: 43px;
  border: 1px solid #fff;
  display: flex;
  align-items: center;
  position: relative;
  transition: border-color 150ms ease, box-shadow 150ms ease;
}

.search:focus-within {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184,151,53,.28);
}

.search-suggest:not([hidden]) {
  animation: mb-search-suggest-in 160ms ease-out both;
}

@keyframes mb-search-suggest-in {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .search-suggest:not([hidden]) {
    animation: none;
  }
}

.search-suggest {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  width: max(280px, 100%);
  background: #fff;
  color: var(--text);
  border: 1px solid var(--line);
  box-shadow: 0 12px 28px rgba(0,0,0,.14);
  z-index: 40;
  padding: 6px 0;
}

.search-suggest-titulo {
  display: block;
  padding: 6px 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
}

.search-suggest-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  color: var(--text);
  text-decoration: none;
}

.search-suggest-item:hover {
  background: #f7f7f7;
}

.search-suggest-item img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  background: #f7f7f7;
  flex: none;
}

.search-suggest-item span {
  font-size: 13px;
}

.search input {
  width: 100%;
  border: 0;
  outline: 0;
  color: #fff;
  background: transparent;
  padding: 0 12px;
  font-size: 12px;
  font-weight: 700;
}

.search input::placeholder { color: #fff; opacity: 1; }

.search button {
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  position: relative;
  cursor: pointer;
}

.search button::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1.8px solid #fff;
  border-radius: 50%;
}

.search button::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 1.8px;
  background: #fff;
  right: 10px;
  bottom: 12px;
  transform: rotate(45deg);
}

.logo img {
  width: 120px;
  margin: 0 auto;
}

.header-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 28px;
  position: relative;
}

.account-icon,
.cart-icon {
  width: 24px;
  height: 28px;
  border: 0;
  background: transparent;
  position: relative;
  cursor: pointer;
  color: #fff;
}

.account-icon::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 0;
  width: 10px;
  height: 10px;
  border: 1.6px solid #fff;
  border-radius: 50%;
}

.account-icon::after {
  content: "";
  position: absolute;
  left: 1px;
  bottom: 1px;
  width: 20px;
  height: 11px;
  border: 1.6px solid #fff;
  border-radius: 12px 12px 0 0;
}

.cart-icon::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 8px;
  width: 14px;
  height: 16px;
  border: 1.6px solid #fff;
  border-radius: 2px;
}

.cart-icon::after {
  content: "";
  position: absolute;
  left: 8px;
  top: 3px;
  width: 8px;
  height: 8px;
  border: 1.6px solid #fff;
  border-bottom: 0;
  border-radius: 9px 9px 0 0;
}

.cart-icon span {
  position: absolute;
  left: 9px;
  top: 12px;
  font-size: 10px;
  line-height: 1;
}

.nav {
  display: flex;
  gap: 34px;
  padding: 0 64px 34px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.chevron { font-size: 15px; font-weight: 400; }

.hero a {
  display: block;
  position: relative;
  background: #050505;
  overflow: hidden;
}

.hero a::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.32), rgba(0,0,0,.05) 48%, rgba(0,0,0,.18));
  pointer-events: none;
}

.hero img {
  width: 100%;
  height: clamp(320px, 43vw, 560px);
  max-height: 560px;
  object-fit: cover;
  object-position: center top;
}

.hero-cta {
  position: absolute;
  left: clamp(42px, 6.5vw, 88px);
  bottom: clamp(26px, 7vw, 62px);
  border: 0;
  color: #fff;
  padding: 0;
  font-size: clamp(14px, 1.45vw, 18px);
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0;
  background: transparent;
  text-shadow: 0 2px 10px rgba(0,0,0,.4);
  z-index: 1;
  animation: hero-buy-pulse 2.7s ease-in-out infinite;
  transform-origin: left center;
}

@keyframes hero-buy-pulse {
  0%, 100% {
    transform: scale(1);
    opacity: .92;
  }
  50% {
    transform: scale(1.09);
    opacity: 1;
  }
}

.featured-juliana {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 390px);
  gap: 44px;
  align-items: center;
  background:
    linear-gradient(180deg, #d2d2d2 0%, #e7e7e7 58%, #f7f7f7 100%);
  border-top: 1px solid rgba(184,151,53,.4);
  color: #151515;
  padding: 48px 7vw 72px;
}

.eyebrow {
  color: var(--gold);
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.featured-copy h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(34px, 5vw, 66px);
  font-weight: 700;
  line-height: .95;
}

.featured-copy p {
  max-width: 660px;
  color: #333;
  font-size: 18px;
  line-height: 1.55;
  margin: 22px 0;
}

.benefit-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  margin: 0 0 26px;
  padding: 0;
}

.benefit-pills li {
  border: 1px solid rgba(184,151,53,.82);
  color: #2b2517;
  background: rgba(255,255,255,.28);
  padding: 9px 12px;
  font-size: 13px;
}

.featured-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 12px;
  font-weight: 700;
}

.btn-primary {
  background: #050505;
  color: #fff;
}

.btn-secondary {
  border: 1px solid var(--gold);
  color: #2d240f;
  background: rgba(255,255,255,.18);
}

.featured-badge {
  display: inline-block;
  margin-bottom: 12px;
  padding: 5px 12px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  color: #6b551c;
  background: rgba(184,151,53,.14);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.featured-media-wrap {
  position: relative;
}

.featured-media {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.18);
  overflow: hidden;
}

.featured-media img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 430px;
  object-fit: contain;
  /* 300ms = metade de TRANSICAO_MS (600) em iniciarVitrineJuliana() — o JS troca o src exatamente
     quando o fade-out termina (uma fase de 300ms), depois remove a classe para o fade-in (mais
     300ms). Se este valor não bater com o JS, a troca corta o fade no meio (visto em produção). */
  transition: opacity 300ms ease, transform 300ms ease;
}

.featured-media img.is-swapping {
  opacity: 0;
  transform: translateX(10px) scale(1.015);
}

.featured-progress {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 12px;
  height: 3px;
  border-radius: 999px;
  background: rgba(0,0,0,.14);
  overflow: hidden;
}

.featured-progress-bar {
  height: 100%;
  width: 0%;
  background: var(--gold);
  border-radius: 999px;
}

.featured-counter {
  position: absolute;
  right: 12px;
  top: 12px;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(0,0,0,.55);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
}

/* Entrada escalonada da vitrine (uma única vez, ao entrar no viewport). Visível por padrão —
   só fica oculto quando o JS marca .featured-juliana-pending (evita conteúdo invisível caso o
   JS falhe ou não rode). */
.featured-juliana-pending .featured-media-wrap,
.featured-juliana-pending .featured-badge,
.featured-juliana-pending .featured-copy h1,
.featured-juliana-pending .featured-copy p,
.featured-juliana-pending .featured-actions {
  opacity: 0;
  transform: translateY(16px);
}

.featured-juliana-in .featured-media-wrap {
  animation: mb-juliana-reveal 520ms ease-out 40ms both;
}

.featured-juliana-in .featured-badge {
  animation: mb-juliana-reveal 480ms ease-out 160ms both;
}

.featured-juliana-in .featured-copy h1 {
  animation: mb-juliana-reveal 480ms ease-out 240ms both;
}

.featured-juliana-in .featured-copy p {
  animation: mb-juliana-reveal 480ms ease-out 320ms both;
}

.featured-juliana-in .featured-actions {
  animation: mb-juliana-reveal 480ms ease-out 400ms both;
}

@keyframes mb-juliana-reveal {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .featured-media-wrap,
  .featured-badge,
  .featured-copy h1,
  .featured-copy p,
  .featured-actions {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }

  .featured-media img {
    transition: opacity 200ms ease !important;
  }

  .featured-media img.is-swapping {
    transform: none !important;
  }
}

.category-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: end;
  gap: 42px;
  padding: 58px 9vw 36px;
}

.category-card {
  display: block;
  position: relative;
  overflow: hidden;
}

.category-card img {
  width: 100%;
  max-height: 360px;
  object-fit: contain;
  transition: transform 320ms ease;
}

.category-card:hover img {
  transform: scale(1.045);
}

.category-card:active {
  transform: scale(0.985);
}

.category-card-arrow {
  position: absolute;
  right: 12px;
  bottom: 12px;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255,255,255,.88);
  color: #151515;
  font-size: 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,.16);
  transition: transform 220ms ease, background-color 220ms ease;
}

.category-card:hover .category-card-arrow {
  transform: translateX(3px);
  background: #fff;
}

.section { padding: 56px 6vw 70px; }

.section h1 {
  margin: 0 0 26px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 18px;
}

.product-grid,
.grid-products {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 46px 22px;
}

.grid-products {
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 28px 16px;
}

.product-card a {
  display: block;
  position: relative;
  background: #f7f7f7;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.product-card:hover > a {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(0,0,0,.08);
}

.product-card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  height: auto;
  object-fit: contain;
  padding: 10px;
  transition: transform 220ms ease, opacity 400ms ease;
}

.product-card img.is-swapping {
  opacity: 0.15;
  transform: translateX(5px);
}

@media (prefers-reduced-motion: reduce) {
  .product-card img {
    transition: none;
  }

  .product-card img.is-swapping {
    opacity: 1;
    transform: none;
  }
}

.product-card.is-esgotado img {
  opacity: .55;
}

.product-card-esgotado {
  position: absolute;
  right: 10px;
  top: 10px;
  background: var(--black);
  color: #fff;
  padding: 5px 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  z-index: 2;
}

.product-card-fotos {
  position: absolute;
  right: 10px;
  bottom: 10px;
  background: rgba(0,0,0,.62);
  color: #fff;
  padding: 3px 7px;
  font-size: 10px;
  font-weight: 600;
  border-radius: 3px;
  z-index: 2;
}

.product-card:hover img {
  transform: scale(1.025);
}

.product-card h2 {
  margin: 13px 0 5px;
  font-size: 14px;
  font-weight: 400;
  min-height: 36px;
}

.product-card p {
  margin: 0;
  font-size: 14px;
}

.old-price {
  color: var(--muted);
  text-decoration: line-through;
  margin-right: 7px;
}

.card-cta {
  display: block;
  margin-top: 10px;
  padding: 10px 0;
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  border: 1px solid var(--gold);
  color: #2d240f;
  background: rgba(255,255,255,.5);
  transition: background 180ms ease;
}

.product-card:hover .card-cta {
  background: rgba(184,151,53,.14);
}

.discount,
.sale-flag {
  position: absolute;
  left: 10px;
  top: 10px;
  background: #fff;
  color: #111;
  padding: 5px 8px;
  font-size: 11px;
  font-weight: 700;
  z-index: 2;
}

.about-banner {
  position: relative;
  min-height: 520px;
  overflow: hidden;
}

.about-banner img {
  width: 100%;
  min-height: 520px;
  object-fit: cover;
}

.about-text {
  position: absolute;
  inset: auto 7vw 56px auto;
  max-width: 520px;
  color: #fff;
  text-shadow: 0 2px 18px rgba(0,0,0,.45);
}

.about-text h2 {
  font-size: 30px;
  margin: 0 0 16px;
}

.about-text p {
  font-size: 16px;
  line-height: 1.55;
}

.footer {
  background: #020202;
  color: #cfcfcf;
  display: grid;
  grid-template-columns: 1fr 1fr 1.25fr;
  gap: 48px;
  padding: 48px 7vw 42px;
  min-height: 260px;
}

.footer h3 {
  margin: 0 0 18px;
  color: #fff;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.footer a,
.footer p {
  display: block;
  margin: 0 0 16px;
  font-size: 13px;
  font-weight: 700;
}

.socials {
  display: flex;
  gap: 34px;
  color: #fff;
  font-size: 25px;
}

.payments {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.payments span {
  min-width: 44px;
  text-align: center;
  background: #0643bf;
  color: #80a7ff;
  padding: 8px 10px;
  border-radius: 2px;
  font-size: 11px;
  font-weight: 700;
}

.payments.compact {
  justify-content: flex-start;
  margin-top: 14px;
}

.whatsapp {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: transparent;
  color: #fff;
  z-index: 25;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,.22));
  transition: transform 160ms ease, filter 160ms ease;
}

.whatsapp:hover {
  transform: translateY(-2px) scale(1.03);
  filter: drop-shadow(0 14px 24px rgba(0,0,0,.26));
}

.whatsapp img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform-origin: 58% 62%;
  animation: whatsapp-call 4.8s ease-in-out infinite;
}

@keyframes whatsapp-call {
  0%, 78%, 100% {
    transform: rotate(0deg) scale(1);
  }
  82% {
    transform: rotate(-7deg) scale(1.04);
  }
  86% {
    transform: rotate(7deg) scale(1.04);
  }
  90% {
    transform: rotate(-5deg) scale(1.03);
  }
  94% {
    transform: rotate(4deg) scale(1.02);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-cta,
  .whatsapp,
  .whatsapp img {
    animation: none !important;
    transition: none !important;
  }
}

.products-page {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 30px;
  padding: 30px 18px 72px;
}

.filters h1 {
  font-size: 24px;
  font-weight: 400;
}

.filters h2 {
  font-size: 19px;
  font-weight: 400;
  margin-top: 34px;
}

.filter-block {
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
}

.filter-block h3 {
  font-size: 12px;
  text-transform: uppercase;
}

.filter-block label {
  display: block;
  margin: 12px 0;
  font-size: 14px;
}

.price-inputs {
  display: flex;
  gap: 4px;
}

.price-inputs input {
  width: 58px;
  padding: 8px;
  border: 1px solid #bbb;
}

.price-inputs button,
.change-cep {
  border: 1px solid var(--green);
  color: var(--green);
  background: #fff;
  padding: 8px 12px;
}

.list-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 24px;
}

.list-top select {
  min-width: 180px;
  border: 1px solid #bbb;
  padding: 10px;
}

.product-page {
  display: grid;
  grid-template-columns: minmax(420px, 52vw) minmax(360px, 440px);
  gap: 30px;
  align-items: start;
  min-width: 0;
}

.gallery-area {
  position: relative;
  padding: 18px 0 42px 18px;
  min-width: 0;
}

.large-product-photo {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 620px;
  object-fit: contain;
  margin: 0 auto;
  padding: 12px;
  box-sizing: border-box;
}

.gallery-main {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f6f6f6;
  margin-bottom: 8px;
  overflow: hidden;
  min-width: 0;
}

.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.9);
  box-shadow: 0 4px 14px rgba(0,0,0,.18);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  z-index: 3;
  color: var(--text);
}

.gallery-arrow-prev { left: 10px; }
.gallery-arrow-next { right: 10px; }
.gallery-arrow:hover { background: #fff; }

.gallery-counter {
  position: absolute;
  right: 12px;
  bottom: 12px;
  background: rgba(0,0,0,.62);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 3px;
  z-index: 3;
}

.gallery-thumbs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 4px 0 0;
  scrollbar-width: thin;
}

.gallery-thumb {
  flex: none;
  width: 56px;
  height: 56px;
  padding: 0;
  border: 2px solid transparent;
  background: #f6f6f6;
  cursor: pointer;
  opacity: .7;
}

.gallery-thumb.active {
  border-color: var(--gold);
  opacity: 1;
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-info-sticky {
  position: sticky;
  top: 150px;
  align-self: start;
  padding: 30px 24px 50px 0;
}

.mb-sticky-buy-bar {
  display: none;
}

.breadcrumb,
.product-category {
  color: #777;
  font-size: 13px;
}

.product-category {
  display: block;
  margin-top: 16px;
}

.product-info-sticky h1 {
  margin: 18px 0 14px;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.18;
}

.product-benefit {
  color: #333;
  font-size: 16px;
  line-height: 1.55;
  margin: 0 0 18px;
}

.price-line,
.cart-line,
.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--line);
  padding: 22px 0;
}

.price-line {
  justify-content: flex-start;
  gap: 14px;
  border-top: 0;
  border-bottom: 1px solid var(--line);
  font-size: 19px;
}

.price-line strong {
  font-size: 28px;
}

.variant { margin: 22px 0; }

.variant span {
  font-size: 11px;
  text-transform: lowercase;
}

.thumbs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.thumb {
  width: 54px;
  height: 54px;
  border: 1px solid #111;
  background: var(--swatch, #111);
  cursor: pointer;
}

.thumb.active { outline: 2px solid #111; outline-offset: 3px; }

.product-actions {
  display: grid;
  gap: 10px;
}

.buy-btn,
.green-btn,
.continue {
  width: 100%;
  display: block;
  border: 0;
  background: var(--green);
  color: #fff;
  text-align: center;
  padding: 17px;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-size: 13px;
  cursor: pointer;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.buy-btn:hover,
.green-btn:hover,
.continue:hover {
  transform: translateY(-1px);
}

.buy-now {
  background: #111;
}

.buy-now:hover {
  background: #000;
}

.add-cart {
  border: 1px solid var(--green);
}

.add-cart:hover,
.green-btn:hover,
.continue:hover {
  background: #1da450;
}

.trust-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin: 18px 0 4px;
}

.trust-block div {
  border: 1px solid #d8d8d8;
  padding: 13px 14px;
}

.trust-block strong {
  display: block;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.trust-block span {
  display: block;
  color: #666;
  font-size: 13px;
  line-height: 1.45;
  margin-top: 5px;
}

.product-detail {
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}

.product-detail summary {
  cursor: pointer;
  font-size: 14px;
}

.cep-row {
  position: relative;
  margin-top: 14px;
}

.cep-row input {
  width: 100%;
  height: 54px;
  border: 1px solid #999;
  padding: 0 16px;
}

.cep-row a,
.cep-row span {
  position: absolute;
  right: 14px;
  top: 18px;
  color: #777;
  font-size: 13px;
}

.description {
  font-size: 14px;
  line-height: 1.65;
}

.description h2,
.description h3 { font-size: 15px; }

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  z-index: 90;
  display: none;
}

.overlay.open { display: block; }

.cart-drawer {
  position: fixed;
  top: 0;
  right: -430px;
  width: min(420px, 100%);
  height: 100vh;
  z-index: 100;
  background: #fff;
  padding: 28px;
  overflow: auto;
  box-shadow: -10px 0 30px rgba(0,0,0,.18);
  transition: right .25s ease;
}

.cart-drawer.open { right: 0; }

.close {
  float: right;
  border: 0;
  background: transparent;
  font-size: 32px;
  cursor: pointer;
}

.cart-drawer h2 {
  clear: both;
  text-align: center;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin: 42px 0;
}

.empty {
  text-align: center;
  color: #777;
}

.cart-product,
.cart-item,
.summary-product {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: start;
}

.cart-product p,
.cart-item p {
  color: #777;
  margin: 6px 0;
}

.cart-thumb,
.cart-item img {
  width: 64px;
  height: 72px;
  object-fit: contain;
  background: #f7f7f7;
}

.qty {
  display: inline-flex;
  border: 1px solid #bbb;
  margin-top: 18px;
}

.qty button {
  width: 36px;
  height: 34px;
  border: 0;
  background: #fff;
}

.qty button:disabled {
  color: #bbb;
  cursor: not-allowed;
}

.qty span { padding: 8px 18px; }

.more {
  display: block;
  text-align: center;
  margin-top: 22px;
}

.cart-page-full {
  min-height: 100vh;
  padding: 36px 20px;
  background: #f6f6f6;
}

.mini-logo img {
  width: 120px;
  margin: 0 auto 28px;
}

.cart-box {
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  padding: 30px;
}

.cart-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
}

.cart-head h1 {
  margin: 0;
  font-size: 24px;
  font-weight: 400;
}

.cart-item {
  grid-template-columns: 80px minmax(0, 1fr) auto;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}

.cart-item img {
  width: 80px;
  height: 92px;
}

.checkout-body { background: #fff; }

.checkout-header {
  background: #020202;
  padding: 18px 0;
}

.checkout-header img {
  width: 118px;
  margin: 0 auto;
}

.checkout-page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 34px 24px 70px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 36px;
}

.checkout-head {
  display: grid;
  gap: 6px;
  margin-bottom: 26px;
}

.checkout-kicker {
  color: #8a6a18;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.checkout-head h1 {
  margin: 0;
  color: #111;
  font-size: clamp(26px, 3.4vw, 34px);
  font-weight: 400;
  letter-spacing: -0.02em;
}

.checkout-head p {
  margin: 0;
  max-width: 480px;
  color: #666;
  font-size: 14px;
  line-height: 1.5;
}

.checkout-quick-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
  margin-top: 10px;
}

.checkout-quick-nav-link {
  color: #8a6a18;
  font-size: 12px;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.checkout-quick-nav-link:hover {
  color: #111;
}

.order-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  margin-bottom: 22px;
  border: 1px solid rgba(17, 17, 17, 0.10);
  border-radius: 14px;
  background: #fafafa;
}

.order-toggle span {
  color: #666;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.order-toggle strong {
  font-size: 20px;
  color: #111;
}

.steps-line {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 22px 0 28px;
}

.step {
  text-align: center;
  padding: 8px 4px;
  border-bottom: 2px solid var(--line);
  color: #999;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.step.active,
.step.done {
  color: #111;
  border-bottom-color: #111;
}

.coupon {
  width: 100%;
  border: 1px solid rgba(17, 17, 17, 0.18);
  border-radius: 10px;
  background: #fff;
  color: #333;
  padding: 12px;
  margin-bottom: 8px;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.checkout-form { margin-top: 34px; }

.checkout-form h2.checkout-section-title,
.shipping-options h2 {
  margin: 30px 0 16px;
  font-size: 28px;
  font-weight: 400;
}

.checkout-form h2.checkout-section-title:first-child {
  margin-top: 0;
}

.checkout-form input {
  width: 100%;
  height: 62px;
  border: 1px solid #999;
  padding: 0 18px;
  margin-bottom: 18px;
}

.checkout-fields-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 16px;
}

.checkout-fields-grid--3 {
  grid-template-columns: 1fr 1fr 1fr;
}

.mb-shipping-static-note {
  margin: -4px 0 16px;
  padding: 10px 12px;
  border: 1px solid rgba(184, 148, 53, 0.20);
  border-radius: 12px;
  background: rgba(184, 148, 53, 0.08);
  color: #6c5a24;
  font-size: 12.5px;
  line-height: 1.4;
}

.newsletter {
  display: block;
  margin-bottom: 32px;
  color: #777;
}

.checkout-summary {
  padding: 24px;
  height: max-content;
  position: sticky;
  top: 90px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.06);
}

.checkout-summary-title {
  margin: 0 0 18px;
  color: #8a6a18;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.checkout-summary .cart-total strong {
  font-size: 22px;
  color: #111;
}

.checkout-summary .summary-product {
  grid-template-columns: 70px 1fr;
  margin-bottom: 26px;
}

.summary-product img {
  width: 70px;
  height: 88px;
  object-fit: contain;
  background: #f7f7f7;
}

.summary-product span {
  display: block;
  margin-top: 6px;
  color: #777;
}

.shipping-options.hidden { display: none; }
.payment-return-step.hidden { display: none; }
.payment-test-step.hidden { display: none; }
.payment-demo-step.hidden { display: none; }
.payment-demo-notice.hidden { display: none; }
.checkout-main.hidden { display: none; }
.checkout-summary.hidden { display: none; }
.shipping-actions.hidden { display: none; }
.frete-outras-lista.hidden { display: none; }

.shipping-options label {
  display: grid;
  grid-template-columns: 26px 1fr auto;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.shipping-options small { color: #777; }

@media (max-width: 860px) {
  .header-main {
    min-height: auto;
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .search {
    width: 100%;
    order: 2;
  }

  .header-actions { justify-content: center; }

  .nav {
    overflow-x: auto;
    gap: 24px;
    padding: 0 20px 22px;
    white-space: nowrap;
  }

  .featured-juliana,
  .products-page,
  .product-page,
  .checkout-page,
  .footer {
    grid-template-columns: 1fr;
  }

  .category-strip {
    gap: 14px;
    padding: 28px 22px 20px;
  }

  .category-card img {
    max-height: 190px;
  }

  .category-card {
    font-size: 14px;
  }

  .product-grid,
  .grid-products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 12px;
  }

  .product-card h2 {
    font-size: 13px;
    min-height: auto;
  }

  .section {
    padding-left: 22px;
    padding-right: 22px;
  }

  .hero-cta {
    left: 28px;
    right: auto;
    bottom: 18px;
    text-align: left;
  }

  .featured-juliana {
    padding: 34px 22px;
  }

  .featured-copy h1 {
    font-size: 38px;
  }

  .featured-copy p {
    font-size: 16px;
  }

  .featured-media {
    order: -1;
  }

  .hero img {
    height: min(58vw, 270px);
    max-height: 270px;
    object-position: center top;
  }

  .featured-media img {
    max-height: 340px;
  }

  .large-product-photo {
    max-height: min(44vh, 220px);
    padding: 10px;
  }

  .gallery-area .large-product-photo:not(:first-of-type) {
    display: none;
  }

  .product-info-sticky {
    display: flex;
    flex-direction: column;
    position: static;
    padding: 16px 22px 28px;
  }

  .product-actions { order: 1; }
  .variant { order: 2; }
  .trust-block { order: 3; }
  .product-detail { order: 4; }
  .description { order: 5; }

  .mb-sticky-buy-bar {
    display: flex;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 60;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 12px 16px;
    background: linear-gradient(180deg, rgba(2, 2, 2, 0.92), rgba(2, 2, 2, 0.98));
    border-top: 1px solid rgba(184, 148, 53, 0.30);
    box-shadow: 0 -12px 30px rgba(0, 0, 0, 0.20);
    transition: transform 220ms ease, opacity 220ms ease;
  }

  .mb-sticky-buy-bar--hidden {
    transform: translateY(100%);
    opacity: 0;
    pointer-events: none;
  }

  .mb-sticky-buy-info {
    display: grid;
    gap: 2px;
    min-width: 0;
    color: #fff;
  }

  .mb-sticky-buy-info strong {
    overflow: hidden;
    color: #fff;
    font-size: 12.5px;
    font-weight: 800;
    white-space: nowrap;
    text-overflow: ellipsis;
  }

  .mb-sticky-buy-info span {
    color: #d6b45d;
    font-size: 14px;
    font-weight: 900;
  }

  .mb-sticky-buy-cta {
    display: inline-flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    min-width: 152px;
    height: 46px;
    padding: 0 20px;
    border-radius: 999px;
    background: #111;
    color: #fff;
    text-decoration: none;
    font-size: 11.5px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: background-color 160ms ease, transform 160ms ease;
  }

  .mb-sticky-buy-cta:hover {
    background: #000;
    transform: translateY(-1px);
  }

  body.has-sticky-buy .whatsapp {
    bottom: 86px;
  }

  .product-info-sticky h1 {
    margin: 10px 0;
    font-size: 23px;
  }

  .product-benefit {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .price-line {
    padding: 12px 0;
  }

  .price-line strong {
    font-size: 24px;
  }

  .variant {
    margin: 12px 0;
  }

  .thumb {
    width: 42px;
    height: 42px;
  }

  .gallery-area { padding: 10px 0 12px; }

  .about-text {
    position: static;
    color: #111;
    text-shadow: none;
    padding: 24px;
  }

  .about-banner img { min-height: auto; }

  .checkout-summary {
    position: static;
    top: auto;
  }

  .checkout-fields-grid,
  .checkout-fields-grid--3 {
    grid-template-columns: 1fr;
  }

  .cart-head,
  .list-top {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }
}

/* =========================================================
   Maria Bolsas - Envio pelos Correios único no checkout
   Aplicado somente em sites/novo.
   ========================================================= */

.single-shipping-note {
  display: grid;
  gap: 4px;
  margin: 10px 0 12px;
  padding: 12px 14px;
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.035);
}

.single-shipping-note strong {
  color: #111;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.single-shipping-note span {
  color: #555;
  font-size: 13px;
  line-height: 1.35;
}

.correios-only-checkout {
  display: grid;
  gap: 14px;
  padding: clamp(18px, 3vw, 26px);
  border: 1px solid rgba(212, 175, 55, 0.20);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(250,248,242,0.96));
  box-shadow: 0 16px 38px rgba(0,0,0,0.08);
}

.correios-only-checkout.hidden {
  display: none !important;
}

.checkout-payment-status {
  margin: 14px 0 0;
  padding: 12px 14px;
  border: 1px solid rgba(17,17,17,.08);
  background: #f7f7f7;
  color: #444;
  font-size: 13px;
  line-height: 1.5;
  text-align: center;
}

.checkout-payment-status.hidden {
  display: none;
}

.checkout-payment-status.checkout-status-error {
  border-color: rgba(178,30,30,.35);
  background: rgba(178,30,30,.06);
  color: #9a1f1f;
}

.shipping-head {
  display: grid;
  gap: 5px;
}

.shipping-head span {
  color: #b89435;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.shipping-head h2 {
  margin: 0;
  color: #111;
  font-size: clamp(24px, 3.2vw, 38px);
  line-height: 1;
  letter-spacing: -0.04em;
}

.shipping-head p {
  margin: 0;
  max-width: 520px;
  color: #666;
  font-size: 14px;
  line-height: 1.45;
}

/* ===== Área de cálculo de frete (mobile-first) ===== */

.frete-calc-area {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.frete-form {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 10px;
}

.frete-form label {
  flex: 1 1 220px;
  display: grid;
  gap: 6px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #666;
}

.frete-form input {
  height: 54px;
  border: 1px solid #999;
  border-radius: 10px;
  padding: 0 16px;
  font-size: 16px;
  color: #111;
  text-transform: none;
  letter-spacing: normal;
  font-weight: 400;
}

.frete-form button {
  flex: 0 0 auto;
  height: 54px;
  padding: 0 20px;
  border: 1px solid #111;
  border-radius: 10px;
  background: #111;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
}

.frete-status {
  margin: 0;
  font-size: 13px;
  color: #777;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Consulta real de frete pode levar vários segundos (API externa) — sem isso, o texto sozinho
   parece tela travada durante a espera. */
.frete-status.is-loading {
  color: #111;
  font-weight: 700;
}

.frete-status.is-loading::before {
  content: "";
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 2px solid #ccc;
  border-top-color: #111;
  animation: frete-status-spin 0.7s linear infinite;
}

@keyframes frete-status-spin {
  to { transform: rotate(360deg); }
}

.shipping-options-list {
  display: grid;
  gap: 10px;
}

.shipping-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  width: 100%;
  min-height: 64px;
  padding: 14px 18px;
  border: 1.5px solid #ddd;
  border-radius: 14px;
  background: #fff;
  text-align: left;
  cursor: pointer;
  transition: border-color 120ms ease, background 120ms ease;
  -webkit-tap-highlight-color: transparent;
}

.shipping-option:hover {
  border-color: #b89435;
}

.shipping-option.selected {
  border-color: #b89435;
  background: rgba(184, 148, 53, 0.08);
  box-shadow: inset 0 0 0 1px rgba(184, 148, 53, 0.35);
}

.shipping-option-main {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.shipping-option-name {
  font-size: 15px;
  font-weight: 700;
  color: #111;
  overflow-wrap: anywhere;
}

.shipping-option-eta {
  display: flex;
  flex-direction: column;
  gap: 1px;
  font-size: 12.5px;
  color: #777;
}

.shipping-option-eta-line {
  display: block;
}

.shipping-option-price {
  flex: 0 0 auto;
  font-size: 16px;
  font-weight: 900;
  color: #111;
  white-space: nowrap;
}

.shipping-option-badges {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-left: 8px;
}

.shipping-option-badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(184, 148, 53, 0.14);
  color: #8a6d1f;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.frete-outras-toggle {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px dashed #ccc;
  border-radius: 14px;
  background: transparent;
  color: #444;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  text-align: center;
  transition: border-color 120ms ease, color 120ms ease;
}

.frete-outras-toggle:hover {
  border-color: #b89435;
  color: #111;
}

.frete-outras-lista {
  display: grid;
  gap: 10px;
  margin-top: 10px;
}

@media (max-width: 480px) {
  .frete-form {
    flex-direction: column;
    align-items: stretch;
  }

  .frete-form label,
  .frete-form button {
    flex-basis: auto;
    width: 100%;
  }

  .shipping-option {
    padding: 12px 14px;
  }
}

.shipping-method-single {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px;
  border: 1px solid rgba(212, 175, 55, 0.28);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(3,3,3,0.98), rgba(20,18,14,0.96));
  color: #fff;
}

.shipping-method-info {
  display: grid;
  gap: 6px;
}

.shipping-pill {
  width: max-content;
  padding: 5px 9px;
  border: 1px solid rgba(212, 175, 55, 0.36);
  border-radius: 999px;
  color: #d6b45d;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.shipping-method-info h2 {
  margin: 0;
  color: #fff;
  font-size: 23px;
  line-height: 1;
  letter-spacing: -0.02em;
}

.shipping-method-info p {
  margin: 0;
  color: rgba(255,255,255,0.80);
  font-size: 13.5px;
  line-height: 1.4;
}

.shipping-method-info small {
  color: rgba(255,255,255,0.52);
  font-size: 11.5px;
  line-height: 1.35;
}

.shipping-method-price {
  min-width: 112px;
  padding: 12px 14px;
  border: 1px solid rgba(212, 175, 55, 0.26);
  border-radius: 16px;
  background: rgba(255,255,255,0.055);
  text-align: right;
}

.shipping-method-price span {
  display: block;
  margin-bottom: 4px;
  color: rgba(255,255,255,0.62);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.shipping-method-price strong {
  color: #d6b45d;
  font-size: 18px;
  font-weight: 950;
}

.shipping-actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
  margin-top: 4px;
}

.shipping-actions .continue,
.shipping-actions .checkout-finish {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  order: -1;
  min-height: 58px;
  padding: 0 18px;
  border-radius: 14px;
  border: 1px solid #111;
  background: #111;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.20);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.shipping-actions .continue:hover,
.shipping-actions .checkout-finish:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 38px rgba(0, 0, 0, 0.26);
}

.shipping-actions .more {
  align-self: center;
  min-height: 40px;
  padding: 0 16px;
  border: 0;
  background: transparent;
  color: #777;
  font-size: 12px;
  font-weight: 700;
  text-decoration: underline;
  cursor: pointer;
}

.shipping-actions .checkout-finish:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
}

.payment-return-step {
  max-width: 560px;
  margin: 40px auto;
  padding: 32px 24px;
  border-radius: 16px;
  background: #faf8f2;
  border: 1px solid rgba(17, 17, 17, 0.08);
  text-align: center;
}

.payment-return-step h1 {
  margin: 0 0 12px;
  font-size: 22px;
  font-weight: 900;
  color: #111;
}

.payment-return-step p {
  margin: 0 0 22px;
  font-size: 15px;
  line-height: 1.55;
  color: #444;
}

.payment-return-step .continue {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 14px;
  background: #111;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.payment-test-step {
  margin-top: 4px;
  padding: 22px 20px;
  border-radius: 16px;
  background: #faf8f2;
  border: 1px solid rgba(17, 17, 17, 0.08);
}

.payment-test-step h2 {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 900;
  color: #111;
}

.payment-test-step p {
  margin: 0 0 18px;
  font-size: 14px;
  line-height: 1.55;
  color: #444;
}

.payment-test-actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
}

.payment-test-actions .continue {
  order: -1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 18px;
  border-radius: 14px;
  border: 1px solid #111;
  background: #111;
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.20);
}

.payment-test-actions .more {
  align-self: center;
  min-height: 40px;
  padding: 0 16px;
  border: 0;
  background: transparent;
  color: #777;
  font-size: 12px;
  font-weight: 700;
  text-decoration: underline;
  cursor: pointer;
}

.payment-demo-step {
  margin-top: 4px;
  padding: 22px 20px;
  border-radius: 16px;
  background: #faf8f2;
  border: 1px solid rgba(17, 17, 17, 0.08);
}

.payment-demo-step h2 {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 900;
  color: #111;
}

.payment-demo-step p {
  margin: 0 0 18px;
  font-size: 14px;
  line-height: 1.55;
  color: #444;
}

.payment-demo-badge {
  display: inline-block;
  margin-bottom: 10px;
  padding: 4px 12px;
  border-radius: 999px;
  background: #b00000;
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mb-checkout-trust-line {
  margin: 4px 0 0;
  padding-top: 14px;
  border-top: 1px solid rgba(17, 17, 17, 0.08);
  color: #8a8a8a;
  font-size: 11.5px;
  line-height: 1.5;
}

.preview-confirmation.hidden {
  display: none;
}

.preview-confirmation-card {
  display: grid;
  gap: 14px;
  padding: clamp(20px, 3vw, 32px);
  border: 1px solid rgba(212, 175, 55, 0.24);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 248, 242, 0.96));
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.08);
}

.preview-confirmation-kicker {
  width: max-content;
  padding: 5px 10px;
  border: 1px solid rgba(212, 175, 55, 0.36);
  border-radius: 999px;
  color: #8a6a18;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.preview-confirmation-card h2 {
  margin: 0;
  color: #111;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 400;
  letter-spacing: -0.02em;
}

.preview-confirmation-disclaimer {
  margin: 0;
  max-width: 560px;
  color: #555;
  font-size: 13.5px;
  line-height: 1.55;
}

.preview-confirmation-summary {
  border-top: 1px solid rgba(17, 17, 17, 0.08);
  padding-top: 10px;
}

.preview-confirmation-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
  color: #333;
  font-size: 14px;
}

.preview-confirmation-row:last-child {
  border-bottom: 0;
}

.preview-confirmation-total strong {
  font-size: 20px;
  color: #111;
}

.preview-confirmation-customer {
  display: grid;
  gap: 4px;
}

.preview-confirmation-customer p {
  margin: 0;
  color: #555;
  font-size: 13px;
  line-height: 1.5;
}

.preview-confirmation-customer strong {
  color: #111;
}

.preview-confirmation-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  min-height: 46px;
  margin-top: 4px;
  padding: 0 22px;
  border-radius: 999px;
  background: #111;
  color: #fff;
  text-decoration: none;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background-color 160ms ease, transform 160ms ease;
}

.preview-confirmation-cta:hover {
  background: #000;
  transform: translateY(-1px);
}

@media (max-width: 640px) {
  .preview-confirmation-cta {
    width: 100%;
  }
}

.checkout-summary-done {
  margin: 0;
  color: #8a8a8a;
  font-size: 13px;
  line-height: 1.5;
  text-align: center;
}

@media (max-width: 640px) {
  .shipping-method-single {
    align-items: flex-start;
    flex-direction: column;
  }

  .shipping-method-price {
    width: 100%;
    text-align: left;
  }
}

/* =========================================================
   Maria Bolsas - CEP automático para envio pelos Correios
   ========================================================= */

.cep-auto-status {
  margin-top: 8px;
  color: #666;
  font-size: 12.5px;
  line-height: 1.35;
}

.cep-auto-status.is-loading {
  color: #8a6a18;
  font-weight: 800;
}

.cep-auto-status.is-ready {
  color: #1f6b3a;
  font-weight: 800;
}

.cep-auto-status.is-error {
  color: #9b1c1c;
  font-weight: 800;
}

/* Ajuste fino - CEP na página do produto */
.cep-row + .cep-auto-status {
  margin: -4px 0 14px;
  padding-left: 2px;
}

.cep-row input[data-cep-auto-sedex="true"] {
  letter-spacing: 0.02em;
}

/* =========================================================
   Maria Bolsas - correção visual limpa do CEP
   ========================================================= */

.cep-row.has-cep-status {
  margin-bottom: 8px;
}

.cep-auto-status,
.cep-auto-status-clean {
  display: grid;
  gap: 3px;
  width: 100%;
  margin: 10px 0 16px;
  padding: 11px 13px;
  border-radius: 14px;
  border: 1px solid rgba(17, 17, 17, 0.10);
  background: #fff;
  box-sizing: border-box;
  font-size: 13px;
  line-height: 1.35;
  position: static !important;
  transform: none !important;
  z-index: auto !important;
}

.cep-auto-status-clean strong {
  display: block;
  color: #111;
  font-size: 13px;
  font-weight: 900;
}

.cep-auto-status-clean span {
  display: block;
  color: #555;
  font-size: 12.5px;
}

.cep-auto-status-clean.is-loading {
  border-color: rgba(184, 148, 53, 0.34);
  background: rgba(184, 148, 53, 0.08);
}

.cep-auto-status-clean.is-loading strong {
  color: #8a6a18;
}

.cep-auto-status-clean.is-ready {
  border-color: rgba(31, 107, 58, 0.24);
  background: rgba(31, 107, 58, 0.07);
}

.cep-auto-status-clean.is-ready strong {
  color: #1f6b3a;
}

.cep-auto-status-clean.is-error {
  border-color: rgba(155, 28, 28, 0.24);
  background: rgba(155, 28, 28, 0.07);
}

.cep-auto-status-clean.is-error strong {
  color: #9b1c1c;
}

/* =========================================================
   Maria Bolsas - compra guiada após CEP validado
   ========================================================= */

.mb-buy-pulse {
  animation: mbBuyPulse 1.05s ease-in-out 0s 4;
  box-shadow: 0 0 0 0 rgba(17, 17, 17, 0.28);
}

@keyframes mbBuyPulse {
  0% {
    transform: translateY(0) scale(1);
    box-shadow: 0 0 0 0 rgba(17, 17, 17, 0.26);
  }

  45% {
    transform: translateY(-3px) scale(1.025);
    box-shadow: 0 10px 24px rgba(17, 17, 17, 0.18);
  }

  100% {
    transform: translateY(0) scale(1);
    box-shadow: 0 0 0 10px rgba(17, 17, 17, 0);
  }
}

.mb-cep-focus {
  outline: 2px solid rgba(184, 148, 53, 0.65) !important;
  outline-offset: 3px;
  box-shadow: 0 0 0 6px rgba(184, 148, 53, 0.12) !important;
}

.cep-auto-status-clean.is-ready span {
  margin-top: 2px;
}

/* =========================================================
   Maria Bolsas - guia CEP ao clicar em Comprar agora
   ========================================================= */

.cep-auto-status-clean.is-nudge {
  border-color: rgba(184, 148, 53, 0.34);
  background: rgba(184, 148, 53, 0.08);
}

.cep-auto-status-clean.is-nudge strong {
  color: #8a6a18;
}

/* =========================================================
   Maria Bolsas - benefício seguro de primeira compra
   ========================================================= */

.mb-first-benefit-card {
  display: grid;
  gap: 5px;
  width: 100%;
  margin: 12px 0 14px;
  padding: 13px 14px;
  border: 1px solid rgba(184, 148, 53, 0.24);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(184, 148, 53, 0.10), rgba(255, 255, 255, 0.96));
  box-sizing: border-box;
}

.mb-first-benefit-card--checkout {
  margin: 0 0 16px;
}

.mb-first-benefit-kicker {
  color: #8a6a18;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.mb-first-benefit-card strong {
  color: #111;
  font-size: 14px;
  font-weight: 950;
  line-height: 1.25;
}

.mb-first-benefit-card p {
  margin: 0;
  color: #4f4a43;
  font-size: 12.8px;
  line-height: 1.4;
}

@media (max-width: 640px) {
  .mb-first-benefit-card {
    margin: 10px 0 12px;
    padding: 11px 12px;
    border-radius: 14px;
  }

  .mb-first-benefit-card strong {
    font-size: 13.5px;
  }

  .mb-first-benefit-card p {
    font-size: 12.4px;
  }
}

/* =========================================================
   Maria Bolsas - notificação ligada ao ícone de cadastro
   ========================================================= */

.mb-register-notice-root {
  position: fixed;
  z-index: 9999;
  width: 326px;
  pointer-events: none;
}

.mb-register-toast {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr) 24px;
  gap: 10px;
  width: 100%;
  padding: 11px;
  border: 1px solid rgba(184, 148, 53, 0.28);
  border-radius: 17px;
  background: rgba(18, 18, 18, 0.97);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.24);
  box-sizing: border-box;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px) scale(0.985);
  transform-origin: top left;
  transition:
    opacity 180ms ease,
    transform 220ms ease;
}

.mb-register-notice-root[data-mode="open"] .mb-register-toast {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.mb-register-notice-root[data-mode="returning"] .mb-register-toast {
  opacity: 0;
  pointer-events: none;
  transform:
    translate(var(--mb-register-return-x, 0), var(--mb-register-return-y, -40px))
    scale(0.22);
}

.mb-register-notice-root[data-mode="hidden"] .mb-register-toast {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px) scale(0.96);
}

.mb-register-toast-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  padding: 4px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid rgba(184, 148, 53, 0.35);
  box-sizing: border-box;
}

.mb-register-toast-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
}

.mb-register-toast-copy {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.mb-register-toast-copy span {
  color: #d9b85f;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.1;
  text-transform: uppercase;
}

.mb-register-toast-copy strong {
  color: #fff;
  font-size: 13.5px;
  font-weight: 950;
  line-height: 1.16;
}

.mb-register-toast-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 12px;
  line-height: 1.3;
}

.mb-register-toast-action {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 29px;
  margin-top: 4px;
  padding: 0 11px;
  border-radius: 999px;
  background: #d9b85f;
  color: #111;
  font-size: 11.8px;
  font-weight: 950;
  text-decoration: none;
}

.mb-register-toast-close {
  width: 24px;
  height: 24px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.82);
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
  pointer-events: auto;
}

.mb-account-register-clickable {
  cursor: pointer !important;
}

.mb-account-register-target {
  animation: mbAccountRegisterPulse 0.72s ease-in-out 0s 2;
}

@keyframes mbAccountRegisterPulse {
  0% {
    filter: drop-shadow(0 0 0 rgba(217, 184, 95, 0));
    transform: scale(1);
  }

  50% {
    filter: drop-shadow(0 0 10px rgba(217, 184, 95, 0.72));
    transform: scale(1.06);
  }

  100% {
    filter: drop-shadow(0 0 0 rgba(217, 184, 95, 0));
    transform: scale(1);
  }
}

.mb-first-benefit-link {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin-top: 3px;
  padding: 0 12px;
  border-radius: 999px;
  background: #111;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
}

/* Cadastro direto */
.mb-registration-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: min(1040px, calc(100% - 32px));
  margin: 22px auto 0;
}

.mb-registration-brand {
  color: #111;
  font-size: 18px;
  font-weight: 950;
  text-decoration: none;
}

.mb-registration-back {
  color: #6d5519;
  font-size: 13px;
  font-weight: 850;
  text-decoration: none;
}

.mb-registration-page {
  display: grid;
  place-items: center;
  min-height: calc(100vh - 90px);
  padding: 28px 16px 42px;
  box-sizing: border-box;
}

.mb-registration-card {
  display: grid;
  gap: 22px;
  width: min(560px, 100%);
  padding: 26px;
  border: 1px solid rgba(184, 148, 53, 0.22);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.10);
  box-sizing: border-box;
}

.mb-registration-copy {
  display: grid;
  gap: 7px;
}

.mb-registration-copy span {
  color: #8a6a18;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}

.mb-registration-copy h1 {
  margin: 0;
  color: #111;
  font-size: clamp(26px, 4vw, 38px);
  line-height: 1.04;
}

.mb-registration-copy p {
  margin: 0;
  color: #5f5a52;
  font-size: 14.5px;
  line-height: 1.5;
}

.mb-registration-form {
  display: grid;
  gap: 13px;
}

.mb-registration-form label {
  display: grid;
  gap: 6px;
}

.mb-registration-form label span {
  color: #2a2926;
  font-size: 12.5px;
  font-weight: 850;
}

.mb-registration-form input {
  width: 100%;
  min-height: 44px;
  padding: 0 13px;
  border: 1px solid rgba(17, 17, 17, 0.14);
  border-radius: 14px;
  background: #fbfaf7;
  color: #111;
  font-size: 14px;
  box-sizing: border-box;
}

.mb-registration-form input:focus {
  outline: 2px solid rgba(184, 148, 53, 0.35);
  outline-offset: 2px;
}

.mb-senha-wrapper {
  position: relative;
  display: block;
}

.mb-senha-wrapper input {
  padding-right: 72px;
}

.mb-senha-toggle {
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  background: transparent;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  min-height: 32px;
  padding: 0 8px;
  cursor: pointer;
}

.mb-senha-toggle:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.mb-registration-submit {
  min-height: 46px;
  margin-top: 4px;
  border: 0;
  border-radius: 999px;
  background: #111;
  color: #fff;
  cursor: pointer;
  font-size: 14px;
  font-weight: 950;
}

.mb-registration-note {
  margin: 0;
  color: #68635b;
  font-size: 12.4px;
  line-height: 1.4;
}

.mb-registration-status {
  min-height: 18px;
  color: #5f5a52;
  font-size: 12.8px;
  font-weight: 800;
}

.mb-registration-status.is-error {
  color: #a43a2a;
}

.mb-registration-status.is-ready {
  color: #316b35;
}

.mb-registration-status.is-pending {
  color: #8a7a58;
}

.mb-registration-login-link {
  margin: 0;
  color: #68635b;
  font-size: 12.8px;
}

.mb-registration-login-link a {
  color: #6f1d2b;
  font-weight: 800;
  text-decoration: underline;
}

/* ===== Amei (favoritos) — coração, convite, popover de conta, página Meus Amei ===== */

.product-card {
  position: relative;
}

.product-card-heart,
.product-page-heart {
  --mb-amei-cor: #6f1d2b;
  cursor: pointer;
  border: 0;
  background: transparent;
  color: var(--mb-amei-cor);
}

.product-card-heart {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  z-index: 3;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 50%;
}

.product-card-heart::before,
.product-page-heart-icone::before {
  content: "♡";
  font-size: 20px;
  line-height: 1;
  transition: transform 160ms ease;
}

.product-card-heart.is-active::before,
.product-page-heart.is-active .product-page-heart-icone::before {
  content: "♥";
}

.product-card-heart.is-active,
.product-page-heart.is-active {
  color: var(--mb-amei-cor);
}

@media (prefers-reduced-motion: no-preference) {
  .product-card-heart:active::before,
  .product-page-heart:active .product-page-heart-icone::before {
    transform: scale(1.25);
  }
}

.product-page-heart {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 44px;
  padding: 0 16px;
  margin: 4px 0 0;
  border: 1px solid rgba(111, 29, 43, 0.35);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

.product-page-heart-icone::before {
  font-size: 18px;
}

.product-page-heart.is-active {
  background: rgba(111, 29, 43, 0.08);
}

.mb-amei-toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translate(-50%, 12px);
  background: #111;
  color: #fff;
  padding: 11px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.mb-amei-toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

.mb-amei-toast.is-erro {
  background: #a43a2a;
}

.mb-amei-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(20, 16, 14, 0.5);
  z-index: 210;
  display: grid;
  place-items: center;
  padding: 16px;
}

.mb-amei-modal {
  position: relative;
  width: min(380px, 100%);
  background: #fbfaf7;
  border-radius: 18px;
  padding: 28px 24px 24px;
  text-align: center;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
}

.mb-amei-modal h2 {
  margin: 6px 0 10px;
  font-size: 19px;
  color: #2a2926;
}

.mb-amei-modal p {
  margin: 0 0 18px;
  color: #68635b;
  font-size: 13.5px;
  line-height: 1.5;
}

.mb-amei-modal-fechar {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 32px;
  height: 32px;
  border: 0;
  background: transparent;
  font-size: 20px;
  cursor: pointer;
  color: #68635b;
}

.mb-amei-modal-acoes {
  display: grid;
  gap: 10px;
}

.mb-amei-modal-primario {
  display: block;
  min-height: 46px;
  line-height: 46px;
  border-radius: 999px;
  background: #6f1d2b;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.mb-amei-modal-secundario {
  display: block;
  min-height: 44px;
  line-height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(17, 17, 17, 0.16);
  color: #2a2926;
  font-size: 13.5px;
  font-weight: 700;
  text-decoration: none;
}

.mb-amei-modal-saida {
  margin-top: 14px;
  border: 0;
  background: transparent;
  color: #8a8377;
  font-size: 12.5px;
  text-decoration: underline;
  cursor: pointer;
}

.mb-account-popover {
  /* top/right calculados via JS (position:fixed) — o cabeçalho tem 3 estados visuais possíveis
     (original, refinado, mini flutuante), cada um com ancestrais posicionados diferentes. */
  position: fixed;
  min-width: 190px;
  background: #fff;
  color: #2a2926;
  border-radius: 14px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18);
  padding: 12px;
  z-index: 210;
  display: grid;
  gap: 4px;
}

.mb-account-popover-saudacao {
  margin: 0 0 6px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
  font-size: 12px;
  font-weight: 800;
  color: #68635b;
}

.mb-account-popover a,
.mb-account-popover button {
  display: block;
  width: 100%;
  text-align: left;
  padding: 8px 6px;
  border: 0;
  background: transparent;
  color: #2a2926;
  font-size: 13.5px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  border-radius: 8px;
}

.mb-account-popover a:hover,
.mb-account-popover button:hover {
  background: #f4efe8;
}

.mb-amei-page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 32px 20px 60px;
}

.mb-amei-page h1 {
  margin: 0 0 4px;
  font-size: 26px;
  color: #2a2926;
}

.mb-amei-page-sub {
  margin: 0 0 26px;
  color: #68635b;
  font-size: 14px;
}

.mb-amei-estado {
  padding: 30px 0;
  text-align: center;
  color: #68635b;
}

.mb-amei-vazio {
  display: grid;
  gap: 16px;
  justify-items: center;
  padding: 40px 20px;
}

.mb-amei-erro {
  color: #a43a2a;
}

.mb-amei-lista {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 28px 16px;
}

.mb-amei-card {
  position: relative;
}

.mb-amei-card a {
  display: block;
  position: relative;
  background: #f7f7f7;
  overflow: hidden;
}

.mb-amei-card img {
  width: 100%;
  height: clamp(180px, 22vw, 280px);
  object-fit: contain;
  padding: 10px;
}

.mb-amei-card.is-esgotado img {
  opacity: 0.55;
}

.mb-amei-card h2 {
  margin: 13px 0 5px;
  font-size: 14px;
  font-weight: 400;
}

.mb-amei-card p {
  margin: 0;
  font-size: 14px;
}

@media (max-width: 480px) {
  .mb-amei-modal {
    padding: 24px 18px 20px;
  }

  .product-page-heart {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .mb-register-notice-root {
    width: calc(100vw - 24px) !important;
  }

  .mb-register-toast {
    grid-template-columns: 34px minmax(0, 1fr) 24px;
    padding: 10px;
    border-radius: 16px;
  }

  .mb-register-toast-icon {
    width: 34px;
    height: 34px;
    padding: 3px;
  }

  .mb-registration-header {
    width: calc(100% - 28px);
    margin-top: 16px;
  }

  .mb-registration-card {
    padding: 20px;
    border-radius: 20px;
  }
}

/* =========================================================
   Maria Bolsas - checkout sem duplicidade de cadastro
   ========================================================= */

.checkout-form input[type="checkbox"],
input[type="checkbox"] {
  width: 16px !important;
  min-width: 16px !important;
  max-width: 16px !important;
  height: 16px !important;
  min-height: 16px !important;
  max-height: 16px !important;
  padding: 0 !important;
  margin: 0 8px 0 0 !important;
  border-radius: 4px !important;
  box-sizing: border-box !important;
  vertical-align: middle;
  accent-color: #111;
}

.checkout-form label:has(input[type="checkbox"]) {
  display: flex !important;
  align-items: center !important;
  gap: 8px;
  min-height: auto !important;
  line-height: 1.35;
}

.mb-checkout-fast-card {
  margin: 0 0 16px !important;
  border-color: rgba(17, 17, 17, 0.12);
  background:
    linear-gradient(135deg, rgba(17, 17, 17, 0.035), rgba(184, 148, 53, 0.08));
}

.mb-checkout-fast-card .mb-first-benefit-kicker {
  color: #8a6a18;
}

.mb-checkout-fast-card strong {
  color: #111;
}

.mb-checkout-fast-card p {
  color: #4f4a43;
}

@media (max-width: 640px) {
  .checkout-form input[type="checkbox"],
  input[type="checkbox"] {
    width: 15px !important;
    min-width: 15px !important;
    max-width: 15px !important;
    height: 15px !important;
    min-height: 15px !important;
    max-height: 15px !important;
  }
}

/* =========================================================
   Maria Bolsas - e-mail assistido e pagamento seguro
   ========================================================= */

.mb-email-assistant {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  margin: 7px 0 0;
  color: #6c6258;
  font-size: 12.4px;
  line-height: 1.35;
}

.mb-email-assistant span {
  color: #6c6258;
}

.mb-email-suggestion {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid rgba(184, 148, 53, 0.26);
  border-radius: 999px;
  background: rgba(184, 148, 53, 0.10);
  color: #111;
  cursor: pointer;
  font-size: 12.4px;
  font-weight: 900;
}

.mb-payment-safe-panel {
  display: grid;
  gap: 13px;
  margin: 16px 0;
  padding: 15px;
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(17, 17, 17, 0.035), rgba(184, 148, 53, 0.075));
  box-sizing: border-box;
}

.mb-payment-safe-head {
  display: grid;
  gap: 4px;
}

.mb-payment-safe-head span {
  color: #8a6a18;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.10em;
  line-height: 1.1;
  text-transform: uppercase;
}

.mb-payment-safe-head strong {
  color: #111;
  font-size: 15px;
  font-weight: 950;
  line-height: 1.22;
}

.mb-payment-safe-head p {
  margin: 0;
  color: #4f4a43;
  font-size: 12.8px;
  line-height: 1.42;
}

.mb-payment-safe-methods {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
}

.mb-payment-safe-methods article {
  display: grid;
  gap: 4px;
  padding: 11px;
  border: 1px solid rgba(17, 17, 17, 0.10);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
}

.mb-payment-safe-methods b {
  color: #111;
  font-size: 13px;
  font-weight: 950;
}

.mb-payment-safe-methods small {
  color: #5f5a52;
  font-size: 11.8px;
  line-height: 1.35;
}

@media (max-width: 720px) {
  .mb-payment-safe-methods {
    grid-template-columns: 1fr;
  }

  .mb-payment-safe-panel {
    padding: 13px;
    border-radius: 16px;
  }
}

/* === PLANO_C_MANUAL_MOBILE_CLIENTE_INICIO === */

/* Segurança geral contra estouro lateral */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

/* Cards de produto mais claros: foto, nome e preço bem associados */
.product-card {
  min-width: 0;
}

.product-card > a {
  background: #fff;
  border: 1px solid rgba(17, 17, 17, 0.06);
}

.product-card h2,
.product-card p {
  padding-left: 4px;
  padding-right: 4px;
}

.product-card .card-cta {
  margin-left: 4px;
  margin-right: 4px;
}

.product-card h2 a {
  color: #111;
}

.product-card p strong {
  color: #111;
  font-weight: 800;
}

/* Página de produto: melhora leitura do título e texto */
.product-info-sticky h1 {
  overflow-wrap: anywhere;
}

.product-benefit {
  max-width: 100%;
}

/* Cores/swatch: mais elegante */
.thumb {
  border-radius: 999px;
}

/* Tablet / celular grande */
@media (max-width: 860px) {
  .site-header {
    position: sticky;
  }

  .header-main {
    gap: 14px;
    padding: 14px 18px 10px;
  }

  .logo img {
    width: 104px;
  }

  .header-actions {
    gap: 22px;
  }

  .search {
    height: 40px;
  }

  .search button {
    height: 40px;
  }

  .nav {
    padding: 0 16px 16px;
    gap: 18px;
    font-size: 11.5px;
    scrollbar-width: thin;
  }

  .featured-juliana {
    gap: 22px;
    padding: 28px 20px 34px;
  }

  .featured-copy h1 {
    max-width: 100%;
    font-size: clamp(27px, 8vw, 38px);
    line-height: 1.04;
    letter-spacing: -0.03em;
  }

  .featured-copy p {
    max-width: 100%;
    margin: 16px 0;
    font-size: 14.5px;
    line-height: 1.5;
  }

  .benefit-pills {
    gap: 8px;
    margin-bottom: 20px;
  }

  .benefit-pills li {
    padding: 8px 10px;
    font-size: 12px;
  }

  .featured-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    min-height: 44px;
    padding: 0 12px;
    font-size: 11px;
    letter-spacing: .08em;
  }

  .featured-media img {
    max-height: 300px;
    padding: 8px;
  }

  .section {
    padding-top: 38px;
    padding-bottom: 46px;
  }

  .section h1 {
    margin-bottom: 22px;
  }

  .product-grid,
  .grid-products {
    gap: 22px;
  }

  .product-card {
    padding: 0 0 14px;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 10px 28px rgba(0,0,0,.045);
    overflow: hidden;
  }

  .product-card > a {
    border: 0;
  }

  .product-card img {
    padding: 12px;
    background: #fff;
  }

  .product-card h2 {
    min-height: auto;
    margin: 12px 12px 5px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
  }

  .product-card p {
    margin: 0 12px;
    font-size: 14px;
  }

  .card-cta {
    margin: 12px 12px 0;
    font-size: 10.5px;
    padding: 9px 0;
  }

  .discount,
  .sale-flag {
    font-size: 10px;
    padding: 4px 7px;
  }

  .products-page {
    padding: 22px 14px 58px;
  }

  .filters {
    display: none;
  }

  .list-top {
    margin-bottom: 18px;
  }

  .list-top select {
    width: 100%;
  }

  .product-page {
    gap: 0;
  }

  .gallery-area {
    padding: 8px 12px 4px;
  }

  .large-product-photo {
    max-height: min(42vh, 245px);
    padding: 8px;
  }

  .product-info-sticky {
    padding: 14px 18px 96px;
  }

  .product-info-sticky h1 {
    margin: 8px 0 9px;
    font-size: clamp(21px, 6.2vw, 25px);
    line-height: 1.16;
  }

  .product-benefit {
    font-size: 13.8px;
    line-height: 1.45;
  }

  .price-line {
    gap: 10px;
    padding: 11px 0;
  }

  .price-line strong {
    font-size: 23px;
  }

  .product-actions {
    gap: 8px;
  }

  .buy-btn,
  .green-btn,
  .continue {
    padding: 15px 12px;
    font-size: 11.5px;
    letter-spacing: .12em;
  }

  .trust-block div {
    padding: 11px 12px;
  }

  .trust-block strong {
    font-size: 11.5px;
  }

  .trust-block span {
    font-size: 12.5px;
  }

  .description {
    font-size: 13.5px;
    line-height: 1.55;
  }
}

/* Celular estreito */
@media (max-width: 480px) {
  .header-main {
    grid-template-columns: auto 1fr auto;
    grid-template-areas:
      "logo logo actions"
      "search search search";
    padding: 12px 14px 8px;
    gap: 10px 12px;
  }

  .logo {
    grid-area: logo;
    justify-self: start;
  }

  .logo img {
    width: 88px;
    margin: 0;
  }

  .header-actions {
    grid-area: actions;
    justify-self: end;
    gap: 18px;
  }

  .search {
    grid-area: search;
    width: 100%;
    height: 38px;
  }

  .search input {
    font-size: 11.5px;
  }

  .search button {
    width: 38px;
    height: 38px;
  }

  .nav {
    gap: 16px;
    padding: 0 14px 13px;
    font-size: 10.8px;
    letter-spacing: .02em;
  }

  .hero img {
    height: 210px;
    max-height: 210px;
  }

  .hero-cta {
    left: 18px;
    bottom: 14px;
    font-size: 13px;
  }

  .featured-juliana {
    padding: 22px 16px 28px;
  }

  .featured-copy h1 {
    font-size: clamp(24px, 7.6vw, 31px);
    line-height: 1.08;
  }

  .featured-copy p {
    font-size: 13.6px;
    line-height: 1.45;
  }

  .benefit-pills {
    gap: 7px;
  }

  .benefit-pills li {
    padding: 7px 9px;
    font-size: 11.5px;
  }

  .featured-actions {
    grid-template-columns: 1fr;
  }

  .featured-media img {
    max-height: 235px;
  }

  .category-strip,
  .section {
    padding-left: 14px;
    padding-right: 14px;
  }

  .product-grid,
  .grid-products {
    gap: 18px;
  }

  .product-card {
    border-radius: 14px;
  }

  .product-card img {
    padding: 10px;
  }

  .product-card h2 {
    margin: 10px 11px 4px;
    font-size: 13.7px;
  }

  .product-card p {
    margin: 0 11px;
    font-size: 13.5px;
  }

  .card-cta {
    margin: 10px 11px 0;
    font-size: 10.2px;
    padding: 8px 0;
  }

  .old-price {
    display: inline-block;
    margin-right: 6px;
  }

  .products-page {
    padding: 18px 12px 52px;
  }

  .product-info-sticky {
    padding: 12px 16px 94px;
  }

  .large-product-photo {
    max-height: 218px;
  }

  .product-info-sticky h1 {
    font-size: 22px;
  }

  .product-benefit {
    font-size: 13.5px;
  }

  .thumb {
    width: 38px;
    height: 38px;
  }

  .mb-sticky-buy-bar {
    padding: 10px 12px;
    gap: 10px;
  }

  .mb-sticky-buy-info strong {
    max-width: 145px;
    font-size: 11.5px;
  }

  .mb-sticky-buy-info span {
    font-size: 13px;
  }

  .mb-sticky-buy-cta {
    min-width: 132px;
    height: 42px;
    padding: 0 14px;
    font-size: 10.5px;
  }

  body.has-sticky-buy .whatsapp {
    bottom: 78px;
  }

  .whatsapp {
    right: 16px;
    bottom: 16px;
    width: 54px;
    height: 54px;
  }
}

/* Celular muito estreito — 320px/360px */
@media (max-width: 380px) {
  .nav {
    gap: 14px;
    font-size: 10.2px;
  }

  .featured-copy h1 {
    font-size: 23px;
  }

  .featured-copy p {
    font-size: 13.2px;
  }

  .featured-media img {
    max-height: 212px;
  }

  .product-info-sticky h1 {
    font-size: 20.5px;
  }

  .large-product-photo {
    max-height: 196px;
  }

  .buy-btn,
  .green-btn,
  .continue {
    font-size: 10.8px;
    letter-spacing: .09em;
  }

  .mb-sticky-buy-info strong {
    max-width: 122px;
  }

  .mb-sticky-buy-cta {
    min-width: 118px;
    font-size: 10px;
  }
}

/* === PLANO_C_MANUAL_MOBILE_CLIENTE_FIM === */

/* === PLANO_C_COR_SELECIONADA_INICIO === */

.selected-color-label {
  display: block;
  margin: 7px 0 8px;
  color: #111;
  font-size: 13px;
  font-weight: 850;
  line-height: 1.3;
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

@media (max-width: 480px) {
  .selected-color-label {
    margin: 6px 0 9px;
    font-size: 12.8px;
  }
}

/* === PLANO_C_COR_SELECIONADA_FIM === */

/* === PLANO_C_VINHO_INDISPONIVEL_INICIO === */

.thumb.is-unavailable {
  position: relative;
  opacity: 0.72;
  border-style: dashed;
}

.thumb.is-unavailable::after {
  content: "";
  position: absolute;
  left: 8px;
  right: 8px;
  top: 50%;
  height: 2px;
  background: rgba(255, 255, 255, 0.82);
  transform: rotate(-35deg);
  box-shadow: 0 0 0 1px rgba(17, 17, 17, 0.28);
}

.color-unavailable-box {
  display: grid;
  gap: 7px;
  margin-top: 12px;
  padding: 13px 14px;
  border: 1px solid rgba(111, 29, 43, 0.28);
  border-radius: 16px;
  background: rgba(111, 29, 43, 0.055);
}

.buy-btn.is-disabled,
.mb-sticky-buy-bar [data-sticky-buy-cta].is-disabled {
  opacity: 0.5;
  pointer-events: none;
  filter: grayscale(0.3);
}

.stock-badge-esgotado {
  margin: 6px 0 0;
  font-size: 13px;
  font-weight: 600;
  color: #6f1d2b;
}

.color-unavailable-box.hidden {
  display: none !important;
}

.color-required-hint {
  margin: 10px 0 0;
  font-size: 12.8px;
  font-weight: 700;
  color: #8a6d1f;
}

.color-required-hint.hidden {
  display: none !important;
}

.color-unavailable-box strong {
  color: #3b1018;
  font-size: 13.5px;
  font-weight: 950;
  line-height: 1.25;
}

.color-unavailable-box p {
  margin: 0;
  color: #4f3f42;
  font-size: 12.8px;
  line-height: 1.42;
}

.color-unavailable-box a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  min-height: 36px;
  margin-top: 2px;
  padding: 0 14px;
  border-radius: 999px;
  background: #111;
  color: #fff;
  font-size: 11.8px;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

@media (max-width: 480px) {
  .color-unavailable-box {
    padding: 12px;
    border-radius: 14px;
  }

  .color-unavailable-box a {
    width: 100%;
  }
}

/* === PLANO_C_VINHO_INDISPONIVEL_FIM === */

.checkout-payment-copy {
  margin: 8px 0 0;
  color: #4b4b4b;
  font-size: 14px;
  line-height: 1.55;
}

/* =========================================================
   Maria Bolsas - correções visuais finais 20260710
   - overlay na seção institucional
   - contenção da página de trocas
   - leitura melhor em imagens claras
   ========================================================= */

.about-banner {
  position: relative;
  background: #050505;
}

.about-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.68), rgba(0,0,0,.30) 48%, rgba(0,0,0,.62));
  pointer-events: none;
}

.about-text {
  z-index: 1;
  padding: 24px 26px;
  border-left: 3px solid var(--gold);
  border-radius: 18px;
  background: rgba(0,0,0,.54);
  backdrop-filter: blur(2px);
}

.about-text h2,
.about-text p {
  color: #fff;
  text-shadow: 0 2px 14px rgba(0,0,0,.72);
}

body.mb-policy-page {
  overflow-x: hidden;
  background: #fff;
}

body.mb-policy-page main,
body.mb-policy-page .page,
body.mb-policy-page .content,
body.mb-policy-page .policy-page,
body.mb-policy-page .trocas-page {
  max-width: min(980px, calc(100vw - 40px));
  margin-left: auto;
  margin-right: auto;
  overflow-x: hidden;
}

body.mb-policy-page h1 {
  max-width: 100%;
  overflow-wrap: break-word;
  word-break: normal;
  font-size: clamp(34px, 7vw, 68px);
  line-height: .98;
}

body.mb-policy-page p,
body.mb-policy-page li {
  max-width: 760px;
}

@media (max-width: 860px) {
  .about-banner::after {
    display: none;
  }

  .about-text {
    position: static;
    padding: 24px;
    border-left: 0;
    border-radius: 0;
    background: #fff;
    backdrop-filter: none;
  }

  .about-text h2,
  .about-text p {
    color: #111;
    text-shadow: none;
  }

  body.mb-policy-page main,
  body.mb-policy-page .page,
  body.mb-policy-page .content,
  body.mb-policy-page .policy-page,
  body.mb-policy-page .trocas-page {
    max-width: calc(100vw - 28px);
  }
}

/* =========================================================
   Maria Bolsas - ajuste final institucional + trocas 20260710
   ========================================================= */

/* Foto institucional limpa: texto fora da imagem */
.about-banner {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(340px, .75fr);
  align-items: stretch;
  min-height: auto;
  background: #050505;
  overflow: hidden;
}

.about-banner::after {
  display: none !important;
}

.about-banner img {
  width: 100%;
  height: clamp(420px, 52vw, 640px);
  min-height: 0;
  object-fit: cover;
  object-position: center top;
}

.about-text {
  position: static !important;
  inset: auto !important;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: none;
  padding: clamp(34px, 5vw, 62px);
  border-left: 3px solid var(--gold);
  border-radius: 0;
  background: #050505;
  color: #fff;
  text-shadow: none;
}

.about-text h2 {
  color: #fff;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
  margin: 0 0 18px;
}

.about-text p {
  color: rgba(255,255,255,.86);
  font-size: 16px;
  line-height: 1.65;
  margin: 0 0 14px;
  text-shadow: none;
}

/* Página de trocas: conter largura e impedir estouro */
body.mb-policy-page {
  overflow-x: hidden;
  background: #fff;
}

body.mb-policy-page * {
  box-sizing: border-box;
}

body.mb-policy-page main {
  width: min(920px, calc(100vw - 40px));
  max-width: 100%;
  margin: 0 auto;
  padding: clamp(42px, 7vw, 82px) 0;
  overflow-x: hidden;
}

body.mb-policy-page h1 {
  max-width: 100%;
  margin-top: 0;
  overflow-wrap: break-word;
  font-size: clamp(34px, 6.8vw, 58px);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

body.mb-policy-page h2 {
  max-width: 100%;
  font-size: clamp(24px, 4vw, 34px);
  line-height: 1.15;
}

body.mb-policy-page p,
body.mb-policy-page li {
  max-width: 760px;
  color: #666;
  font-size: 16px;
  line-height: 1.7;
}

body.mb-policy-page header {
  max-width: 100%;
  overflow-x: hidden;
}

body.mb-policy-page .nav,
body.mb-policy-page nav {
  max-width: 100%;
  overflow-x: auto;
}

@media (max-width: 860px) {
  .about-banner {
    grid-template-columns: 1fr;
  }

  .about-banner img {
    height: auto;
    max-height: none;
  }

  .about-text {
    padding: 28px 22px 34px;
    border-left: 0;
    border-top: 3px solid var(--gold);
  }

  body.mb-policy-page main {
    width: min(100%, calc(100vw - 28px));
    padding-top: 34px;
  }

  body.mb-policy-page h1 {
    font-size: clamp(32px, 12vw, 46px);
  }
}

/* =========================================================
   Maria Bolsas - componentes da página de trocas 20260710
   ========================================================= */

.policy-intro {
  display: grid;
  gap: 14px;
}

.policy-kicker {
  color: #b89435;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.policy-cards {
  display: grid;
  gap: 18px;
  margin-top: 30px;
}

.policy-card {
  padding: 22px;
  border: 1px solid rgba(17, 17, 17, .10);
  border-radius: 20px;
  background: #fff;
  max-width: 100%;
  overflow-wrap: break-word;
}

.policy-card h2 {
  margin: 0 0 8px;
}

.policy-card p {
  margin: 0;
}

.policy-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px;
}
