/* ============================================================
   PRIMUS NUTRI — Design System
   Canvas: warm bone | Ink: green-black | Brand: botanical green
   Display: Fraunces | Body: Instrument Sans | Meta: JetBrains Mono
   ============================================================ */

:root {
  --bg: #F6F2E9;
  --surface: #FFFFFF;
  --ink: #14140F;
  --muted: #6B6558;
  --border: #E7E1D2;
  --brand: #0F5C40;
  --brand-deep: #0B4531;
  --brand-tint: #E7F0EA;
  --gold: #9A7B2D;
  --gold-tint: #FBF3DB;
  --coral: #C1401F;
  --coral-tint: #FBEAE3;

  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Instrument Sans", "Helvetica Neue", Arial, sans-serif;
  --font-mono: "JetBrains Mono", "SF Mono", monospace;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --radius: 10px;
  --radius-sm: 6px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

/* atmospheric grain — removes digital sterility, sits above everything, blocks nothing */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 300;
  pointer-events: none;
  opacity: 0.035;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

button { font: inherit; cursor: pointer; border: none; background: none; }

.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

/* ---------- typography ---------- */

h1, h2, h3 { font-family: var(--font-display); font-weight: 500; line-height: 1.12; letter-spacing: -0.02em; }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before { content: ""; width: 24px; height: 1px; background: var(--brand); }

.section-title { font-size: clamp(30px, 4.4vw, 46px); margin: 14px 0 12px; }
.section-lead { color: var(--muted); max-width: 560px; font-size: 17px; }

/* ---------- announcement bar ---------- */

.announce {
  background: var(--brand-deep);
  color: #F2EFE7;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  padding: 9px 16px;
}
.announce strong { color: #E8C976; font-weight: 600; }

/* ---------- header ---------- */

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 245, 240, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  transition: transform 0.35s var(--ease-out);
}
.header.is-hidden { transform: translateY(-110%); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.logo {
  display: inline-flex;
  align-items: baseline;
  gap: 7px;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.logo span {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand);
  font-style: normal;
}

.nav { display: flex; gap: 32px; }
.nav a {
  font-size: 15px;
  color: var(--muted);
  transition: color 0.2s;
  padding: 8px 0;
}
.nav a:hover, .nav a[aria-current="page"] { color: var(--ink); }

.header-actions { display: flex; align-items: center; gap: 18px; }

.cart-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  transition: background 0.2s;
}
.cart-btn:hover { background: var(--brand-tint); }
.cart-count {
  position: absolute;
  top: 4px; right: 2px;
  background: var(--brand);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 10px;
  min-width: 17px; height: 17px;
  border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
  padding: 0 4px;
}

.menu-toggle { display: none; width: 44px; height: 44px; align-items: center; justify-content: center; }

/* ---------- buttons ---------- */

.btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--ink);
  color: #fff;
  padding: 15px 30px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: background 0.25s var(--ease-out), transform 0.4s var(--ease-out), box-shadow 0.3s var(--ease-out);
  min-height: 48px;
  will-change: transform;
}
.btn::after {
  content: "";
  position: absolute;
  top: 0; left: -60%;
  width: 40%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.22), transparent);
  transform: skewX(-18deg);
  transition: left 0.65s var(--ease-out);
  pointer-events: none;
}
.btn:hover::after { left: 130%; }
.btn:hover { background: var(--brand-deep); box-shadow: 0 10px 24px -10px rgba(20, 20, 15, 0.35); }
.btn:active { filter: brightness(0.92); }

@media (hover: hover) and (pointer: fine) {
  .btn { transition: background 0.25s var(--ease-out), transform 0.18s var(--ease-out), box-shadow 0.3s var(--ease-out); }
}

.btn--brand { background: var(--brand); }
.btn--brand:hover { background: var(--brand-deep); }

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}
.btn--ghost:hover { background: var(--ink); color: #fff; }

.btn--full { width: 100%; }

/* ---------- badges & tags ---------- */

.tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 999px;
}
.tag--save { background: var(--coral-tint); color: var(--coral); }
.tag--best { background: var(--gold-tint); color: var(--gold); }
.tag--new  { background: var(--brand-tint); color: var(--brand); }

/* ---------- hero ---------- */

.hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 88px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(720px 420px at 78% 30%, rgba(47, 93, 70, 0.07), transparent 70%);
  pointer-events: none;
}

/* ambient blob — slow-drifting light source behind the hero, signature atmosphere */
.hero-blob {
  position: absolute;
  top: -12%; right: -8%;
  width: 620px; height: 620px;
  background: radial-gradient(circle, rgba(15, 92, 64, 0.10), rgba(154, 123, 45, 0.06) 55%, transparent 72%);
  filter: blur(10px);
  pointer-events: none;
  animation: blob-drift 26s ease-in-out infinite;
  z-index: 0;
}

@keyframes blob-drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-30px, 40px) scale(1.08); }
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.hero h1 {
  font-size: clamp(40px, 5.6vw, 66px);
  margin: 18px 0 20px;
}
.hero h1 em { font-style: italic; color: var(--brand); }

/* word-by-word cascading entrance for the hero headline */
.hero h1 .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.35em);
  filter: blur(4px);
  animation: word-rise 0.8s var(--ease-out) forwards;
}

@keyframes word-rise {
  to { opacity: 1; transform: translateY(0); filter: blur(0); }
}

.hero-lead { font-size: 18px; color: var(--muted); max-width: 480px; margin-bottom: 30px; }

.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

.hero-proof {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
  font-size: 14px;
  color: var(--muted);
}
.stars { display: inline-flex; gap: 2px; color: var(--gold); }

.hero-visual { position: relative; }
.hero-photo {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: 0 30px 60px -20px rgba(20, 20, 15, 0.35);
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.12); transition: transform 0.6s var(--ease-out); }
.hero-photo::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(200deg, rgba(11, 69, 49, 0.28), transparent 55%);
}

/* gold seal badge — signature element, echoes an apothecary wax seal */
.seal {
  position: absolute;
  width: 128px; height: 128px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--gold);
  box-shadow: 0 12px 28px -10px rgba(20, 20, 15, 0.28);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  z-index: 2;
}
.seal::before {
  content: "";
  position: absolute; inset: 7px;
  border: 1px dashed rgba(154, 123, 45, 0.55);
  border-radius: 50%;
}
.seal-stars { color: var(--gold); font-size: 10px; letter-spacing: 3px; margin-bottom: 3px; }
.seal strong {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.1;
}
.seal span {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 2px;
}
.seal--hero { bottom: -22px; left: -22px; }

/* botanical sticker — line-art signature element */
.sticker {
  position: absolute;
  top: -18px; right: -18px;
  width: 92px; height: 92px;
  background: var(--brand);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 24px -8px rgba(11, 69, 49, 0.5);
  z-index: 2;
  animation: sway 7s ease-in-out infinite;
}

@keyframes sway {
  0%, 100% { transform: rotate(-4deg); }
  50% { transform: rotate(4deg); }
}

@keyframes drift {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(10px, -16px) rotate(8deg); }
  66% { transform: translate(-8px, -6px) rotate(-6deg); }
}

/* ---------- benefits strip ---------- */

.benefits {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
  padding: 26px 0;
}
/* ---------- stats bar (prova social em números) ---------- */
.stats-bar {
  background: var(--brand-deep);
  padding: 36px 0;
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(26px, 3.6vw, 36px);
  color: #F2EFE7;
  line-height: 1.1;
}
.stat span {
  display: block;
  margin-top: 6px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #A9C4B4;
}
@media (max-width: 960px) {
  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 26px 20px; }
}

.benefits-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.benefit {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: center;
  font-size: 15px;
  font-weight: 500;
}
.benefit svg { flex-shrink: 0; color: var(--brand); }

/* ---------- sections ---------- */

.section { padding: 96px 0; }
.section--surface { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.section-head { margin-bottom: 52px; }
.section-head--center { text-align: center; }
.section-head--center .section-lead { margin: 0 auto; }
.section-head--center .eyebrow::before { display: none; }

/* ---------- product cards ---------- */

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.product-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.25s var(--ease-out), transform 0.25s var(--ease-out);
}
.product-card:hover {
  box-shadow: 0 12px 32px rgba(30, 36, 31, 0.07);
  transform: translateY(-3px);
}

.product-media {
  position: relative;
  aspect-ratio: 4 / 3.1;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  overflow: hidden;
}
.product-media img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}
.product-card:hover .product-media img { transform: scale(1.05); }
.product-media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,69,49,0) 45%, rgba(11,69,49,0.55) 100%);
}
.product-media--flat { background: linear-gradient(160deg, #F2EEE2, #E9E7D8); align-items: center; }
.product-media--flat::after { display: none; }
.product-media .tag { position: absolute; top: 14px; left: 14px; z-index: 2; }
.product-label {
  position: relative;
  z-index: 1;
  margin-bottom: 16px;
  background: rgba(20, 20, 15, 0.55);
  backdrop-filter: blur(6px);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 999px;
}

.product-body { padding: 22px 24px 26px; display: flex; flex-direction: column; gap: 10px; flex: 1; }

.product-name { font-family: var(--font-display); font-size: 21px; font-weight: 500; }
.product-desc { color: var(--muted); font-size: 14px; flex: 1; }

.product-price { display: flex; align-items: baseline; gap: 10px; font-family: var(--font-mono); }
.price-now { font-size: 18px; font-weight: 600; color: var(--ink); }
.price-was { font-size: 14px; color: var(--muted); text-decoration: line-through; }

.product-rating { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--muted); }

/* ---------- ingredients ---------- */

.ingredient-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.ingredient {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: box-shadow 0.25s var(--ease-out);
}
.ingredient:hover { box-shadow: 0 8px 24px rgba(30, 36, 31, 0.06); }

.ingredient-icon {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--brand-tint);
  color: var(--brand);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}

.ingredient h3 { font-size: 19px; margin-bottom: 6px; }
.ingredient p { color: var(--muted); font-size: 14px; }

/* ---------- how it works ---------- */

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  counter-reset: step;
}

.step {
  position: relative;
  padding: 32px 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-display);
  font-size: 44px;
  font-style: italic;
  color: var(--brand);
  opacity: 0.35;
  display: block;
  margin-bottom: 10px;
  line-height: 1;
}
.step h3 { font-size: 20px; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 14.5px; }

/* ---------- progress timeline ---------- */

.timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; margin-top: 8px; }
.timeline::before {
  content: "";
  position: absolute;
  top: 11px; left: 12%; right: 12%;
  height: 1px;
  background: var(--border);
}
.timeline-item { text-align: center; padding: 0 16px; position: relative; }
.timeline-dot {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--surface);
  border: 2px solid var(--brand);
  margin: 0 auto 18px;
  position: relative;
  z-index: 1;
}
.timeline-item.is-strong .timeline-dot { background: var(--brand); }
.timeline-day {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 6px;
}
.timeline-item h3 { font-size: 18px; margin-bottom: 6px; }
.timeline-item p { color: var(--muted); font-size: 14px; }

/* ---------- ritual (lifestyle photo) ---------- */

.ritual {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
}
.ritual-photo {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: 0 30px 60px -24px rgba(20, 20, 15, 0.32);
}
.ritual-photo img { width: 100%; height: 100%; object-fit: cover; }

.ritual-steps { list-style: none; display: flex; flex-direction: column; gap: 22px; margin: 30px 0 34px; }
.ritual-steps li { display: flex; gap: 16px; }
.ritual-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 24px;
  color: var(--brand);
  flex-shrink: 0;
  width: 34px;
}
.ritual-steps h3 { font-size: 17px; margin-bottom: 3px; }
.ritual-steps p { color: var(--muted); font-size: 14.5px; }

/* ---------- testimonials ---------- */

.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.testimonial {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.testimonial blockquote {
  font-family: var(--font-display);
  font-size: 18px;
  font-style: italic;
  line-height: 1.5;
}
.testimonial footer { display: flex; align-items: center; gap: 12px; font-size: 14px; }
.avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--brand-tint);
  color: var(--brand);
  font-family: var(--font-mono);
  font-size: 13px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 600;
}
.testimonial cite { font-style: normal; font-weight: 600; display: block; }
.testimonial .place { color: var(--muted); font-size: 13px; }

/* ---------- guarantee ---------- */

.guarantee {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 36px;
  align-items: center;
  background: var(--brand-deep);
  color: #F2EFE7;
  border-radius: 16px;
  padding: 48px 52px;
}
.guarantee-seal {
  position: relative;
  width: 118px; height: 118px;
  border: 1px solid rgba(226, 190, 108, 0.7);
  border-radius: 50%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  font-family: var(--font-mono);
  text-align: center;
  gap: 3px;
  flex-shrink: 0;
  color: #F1DFAE;
}
.guarantee-seal::before {
  content: "";
  position: absolute; inset: 8px;
  border: 1px dashed rgba(226, 190, 108, 0.5);
  border-radius: 50%;
}
.guarantee-seal .seal-stars { color: #E2BE6C; font-size: 9px; letter-spacing: 2px; }
.guarantee-seal strong { font-size: 28px; font-family: var(--font-display); color: #fff; line-height: 1; }
.guarantee-seal span { font-size: 9px; letter-spacing: 0.12em; text-transform: uppercase; }
.guarantee h2 { font-size: clamp(24px, 3vw, 32px); margin-bottom: 10px; }
.guarantee p { color: rgba(242, 239, 231, 0.75); max-width: 520px; font-size: 15.5px; }
.guarantee .btn { background: #F2EFE7; color: var(--brand-deep); }
.guarantee .btn:hover { background: #fff; }

/* ---------- FAQ ---------- */

.faq { max-width: 720px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 22px 4px;
  text-align: left;
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  min-height: 48px;
}
.faq-q .faq-icon {
  font-family: var(--font-mono);
  font-size: 20px;
  color: var(--brand);
  flex-shrink: 0;
  transition: transform 0.3s var(--ease-out);
}
.faq-item.is-open .faq-icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out);
}
.faq-a p { color: var(--muted); padding: 0 4px 24px; font-size: 15.5px; max-width: 640px; }

/* ---------- newsletter ---------- */

.club {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}
.club form {
  display: flex;
  gap: 10px;
  margin-top: 28px;
}
.club input {
  flex: 1;
  font: inherit;
  padding: 14px 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface);
  color: var(--ink);
  min-height: 48px;
}
.club input:focus { outline: 2px solid var(--brand); outline-offset: 1px; border-color: transparent; }
.club .form-note { font-size: 13px; color: var(--muted); margin-top: 12px; }

/* ---------- footer ---------- */

.footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand p { color: var(--muted); font-size: 14px; margin-top: 12px; max-width: 280px; }
.footer h4 {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
  font-weight: 500;
}
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer ul a { font-size: 14.5px; color: var(--ink); opacity: 0.85; transition: opacity 0.2s; }
.footer ul a:hover { opacity: 1; color: var(--brand); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--muted);
}
.payments { display: flex; gap: 8px; }
.payments span {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.05em;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 4px 8px;
  background: var(--bg);
}

/* ---------- product page ---------- */

.pdp { padding: 56px 0 88px; }
.pdp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.pdp-gallery {
  position: sticky;
  top: 96px;
}

.pdp-info h1 { font-size: clamp(30px, 3.6vw, 42px); margin: 12px 0 8px; }

.pdp-rating { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--muted); margin-bottom: 18px; }

.pdp-desc { color: var(--muted); margin-bottom: 26px; font-size: 16.5px; }

.pdp-benefits { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.pdp-benefits li { display: flex; gap: 10px; align-items: center; font-size: 15px; font-weight: 500; }
.pdp-benefits svg { color: var(--brand); flex-shrink: 0; }

.variant-group { margin-bottom: 24px; }
.variant-label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-bottom: 10px;
}
.variants { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.variant {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface);
  padding: 16px;
  text-align: left;
  transition: border-color 0.2s, box-shadow 0.2s;
  position: relative;
}
.variant:hover { border-color: var(--brand); }
.variant.is-selected { border-color: var(--brand); box-shadow: 0 0 0 1px var(--brand); }
.variant .tag { position: absolute; top: -10px; right: 10px; }
.variant-name { font-weight: 600; font-size: 15px; display: block; }
.variant-price { font-family: var(--font-mono); font-size: 14px; color: var(--muted); }
.variant-price strong { color: var(--ink); }

.pdp-price-row { display: flex; align-items: baseline; gap: 12px; margin: 6px 0 20px; font-family: var(--font-mono); }
.pdp-price-row .price-now { font-size: 26px; }
.pdp-price-row .price-was { font-size: 17px; }

.pdp-gift {
  display: flex;
  gap: 12px;
  align-items: center;
  background: var(--gold-tint);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-size: 14px;
  color: var(--gold);
  margin: 20px 0 8px;
}

/* order bump — oferta de adicionar o infusor */
.pdp-bump {
  display: flex;
  gap: 13px;
  align-items: center;
  background: var(--gold-tint);
  border: 1.5px dashed var(--gold);
  border-radius: var(--radius-sm);
  padding: 13px 15px;
  margin: 20px 0 8px;
  cursor: pointer;
  transition: background 0.2s var(--ease-out), border-color 0.2s var(--ease-out);
}
.pdp-bump:hover { border-color: var(--brand); }
.pdp-bump.is-added {
  background: var(--brand-tint);
  border-style: solid;
  border-color: var(--brand);
}
.pdp-bump input {
  width: 21px; height: 21px;
  accent-color: var(--brand);
  flex-shrink: 0;
  cursor: pointer;
}
.pdp-bump > img {
  width: 54px; height: 54px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  background: #fff;
  flex-shrink: 0;
}
.pdp-bump-text { flex: 1; min-width: 0; line-height: 1.35; }
.pdp-bump-text > strong { display: block; font-size: 14.5px; color: var(--ink); }
.pdp-bump-desc { font-size: 13px; color: var(--muted); }
.pdp-bump-price { font-family: var(--font-mono); font-weight: 600; color: var(--brand-deep); }
.pdp-bump-desc s { color: var(--muted); font-size: 12px; }

.pdp-trust {
  display: flex;
  gap: 20px;
  margin-top: 18px;
  font-size: 13px;
  color: var(--muted);
  flex-wrap: wrap;
}
.pdp-trust span { display: inline-flex; gap: 6px; align-items: center; }

/* reveal on scroll */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out); }
.reveal.is-visible { opacity: 1; transform: none; }

:focus-visible { outline: 2px solid var(--brand); outline-offset: 2px; }

/* ---------- floating cart button ---------- */

.float-cta {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 200;
  box-shadow: 0 16px 40px -12px rgba(20, 20, 15, 0.32);
  animation: float-bounce 4s ease-in-out infinite;
  will-change: transform;
}

@keyframes float-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.float-cta .btn {
  white-space: nowrap;
  padding: 16px 28px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.015em;
  min-height: 56px;
}

@media (max-width: 640px) {
  .float-cta {
    bottom: 16px; right: 16px;
    left: 16px;
  }
  .float-cta .btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  .float-cta { animation: none; }
}

@media (prefers-color-scheme: dark) {
  .float-cta { box-shadow: 0 16px 40px -12px rgba(20, 20, 15, 0.64); }
}

/* ---------- utility: hide float cta on certain sections ---------- */

.pdp .float-cta { display: flex; }
@media (max-width: 640px) {
  .pdp .float-cta { position: fixed; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- responsive ---------- */

@media (max-width: 960px) {
  .hero-inner, .pdp-grid, .ritual { grid-template-columns: 1fr; gap: 40px; }
  /* relative (nao static) mantem a ancora do selo dentro da galeria no mobile */
  .pdp-gallery { position: relative; top: auto; }
  /* encaixa o selo dentro da foto pra nunca sobrepor o titulo no mobile */
  .pdp-gallery .seal--hero { bottom: 16px; left: 16px; }
  .hero-visual { order: -1; max-width: 420px; margin: 0 auto; }
  .product-grid, .ingredient-grid, .steps, .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
  .timeline { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .timeline::before { display: none; }
  .guarantee { grid-template-columns: 1fr; text-align: center; }
  .guarantee-seal { margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .benefits-inner { grid-template-columns: 1fr; gap: 14px; }
  .benefit { justify-content: flex-start; }
}

/* ---------- auth pages (login / registro) ---------- */

.auth {
  min-height: calc(100vh - 110px);
  display: grid;
  place-items: center;
  padding: 56px 24px 88px;
  position: relative;
  overflow: hidden;
}

/* organic blob behind the card — echoes the hero */
.auth::before {
  content: "";
  position: absolute;
  width: 560px; height: 560px;
  background: radial-gradient(circle at 30% 30%, var(--brand-tint), transparent 65%);
  border-radius: 50%;
  top: -120px; right: -140px;
  pointer-events: none;
}
.auth::after {
  content: "";
  position: absolute;
  width: 420px; height: 420px;
  background: radial-gradient(circle at 70% 70%, var(--gold-tint), transparent 60%);
  border-radius: 50%;
  bottom: -140px; left: -120px;
  pointer-events: none;
}

.auth-card {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 440px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 44px 40px 38px;
  box-shadow: 0 24px 60px -24px rgba(20, 20, 15, 0.18);
}

.auth-card .eyebrow { margin-bottom: 4px; }

.auth-title {
  font-size: clamp(26px, 3.4vw, 32px);
  margin: 10px 0 6px;
}

.auth-sub {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 28px;
}

.field { margin-bottom: 18px; }

.field label {
  display: block;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 7px;
}

.field-input {
  position: relative;
  display: flex;
  align-items: center;
}

.field input {
  width: 100%;
  font: inherit;
  font-size: 15.5px;
  color: var(--ink);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 13px 15px;
  transition: border-color 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out), background 0.2s;
}

.field input::placeholder { color: #A8A091; }

.field input:focus {
  outline: none;
  background: var(--surface);
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(15, 92, 64, 0.12);
}

.field input.is-invalid {
  border-color: var(--coral);
  box-shadow: 0 0 0 3px rgba(193, 64, 31, 0.10);
}

.field-hint {
  font-size: 12.5px;
  color: var(--muted);
  margin-top: 6px;
}

/* password visibility toggle */
.pass-toggle {
  position: absolute;
  right: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: var(--radius-sm);
  color: var(--muted);
  transition: color 0.2s, background 0.2s;
}
.pass-toggle:hover { color: var(--ink); background: var(--brand-tint); }

/* password strength meter */
.strength {
  display: flex;
  gap: 5px;
  margin-top: 8px;
}
.strength span {
  height: 3px;
  flex: 1;
  border-radius: 2px;
  background: var(--border);
  transition: background 0.3s var(--ease-out);
}
.strength[data-level="1"] span:nth-child(-n+1) { background: var(--coral); }
.strength[data-level="2"] span:nth-child(-n+2) { background: var(--gold); }
.strength[data-level="3"] span:nth-child(-n+3) { background: #6FA35E; }
.strength[data-level="4"] span:nth-child(-n+4) { background: var(--brand); }

.auth-msg {
  display: none;
  font-size: 14px;
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  margin-bottom: 18px;
  line-height: 1.45;
}
.auth-msg.is-error { display: block; background: var(--coral-tint); color: var(--coral); }
.auth-msg.is-success { display: block; background: var(--brand-tint); color: var(--brand-deep); }

.auth-card .btn--full { margin-top: 6px; min-height: 50px; }

.btn .btn-spinner {
  display: none;
  width: 17px; height: 17px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
.btn.is-loading .btn-spinner { display: inline-block; }
.btn.is-loading { pointer-events: none; opacity: 0.85; }

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

.auth-switch {
  text-align: center;
  font-size: 14.5px;
  color: var(--muted);
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.auth-switch a {
  color: var(--brand);
  font-weight: 600;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}
.auth-switch a:hover { border-bottom-color: var(--brand); }

.auth-secure {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-top: 16px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.auth-secure svg { color: var(--brand); }

/* header account link */
.account-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: background 0.2s;
  white-space: nowrap;
}
.account-link:hover { background: var(--brand-tint); }
.account-link svg { color: var(--brand); }

@media (max-width: 640px) {
  .auth-card { padding: 34px 24px 30px; }
  .account-link span { display: none; }
}

/* ---------- loja: carrinho & checkout ---------- */

.shop { padding: 44px 0 96px; min-height: 64vh; }

.shop-head { margin-bottom: 30px; }
.shop-head h1 { font-size: clamp(28px, 4vw, 40px); margin: 8px 0 6px; }
.shop-head p { color: var(--muted); }

.cart-layout,
.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 372px;
  gap: 40px;
  align-items: start;
}

/* linhas do carrinho */
.cart-items { display: flex; flex-direction: column; gap: 14px; }

.cart-row {
  display: grid;
  grid-template-columns: 88px 1fr auto;
  gap: 18px;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px;
  transition: box-shadow 0.25s var(--ease-out);
}
.cart-row:hover { box-shadow: 0 10px 28px -18px rgba(20, 20, 15, 0.3); }

.cart-thumb {
  width: 88px; height: 88px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  background: var(--brand-tint);
}

.cart-info { min-width: 0; }
.cart-name { font-family: var(--font-display); font-size: 18px; font-weight: 500; margin-bottom: 4px; }
.cart-unit { font-family: var(--font-mono); font-size: 13px; color: var(--muted); }

.cart-right { display: flex; flex-direction: column; align-items: flex-end; gap: 10px; }
.cart-line-total { font-family: var(--font-mono); font-size: 16px; font-weight: 600; }

/* stepper de quantidade */
.qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.qty button {
  width: 34px; height: 34px;
  display: grid; place-items: center;
  color: var(--ink);
  font-size: 17px;
  transition: background 0.2s;
}
.qty button:hover { background: var(--brand-tint); }
.qty span {
  width: 40px; height: 34px;
  display: grid; place-items: center;
  font-family: var(--font-mono);
  font-size: 14px;
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
}

.cart-remove {
  font-size: 12.5px;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: color 0.2s;
}
.cart-remove:hover { color: var(--coral); }

/* carrinho vazio */
.cart-empty { text-align: center; padding: 72px 20px; }
.cart-empty-icon {
  width: 72px; height: 72px;
  margin: 0 auto 22px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--brand-tint);
  color: var(--brand);
}
.cart-empty h2 { font-size: 24px; margin-bottom: 8px; }
.cart-empty p { color: var(--muted); margin-bottom: 24px; }

/* resumo do pedido */
.summary {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 24px;
  position: sticky;
  top: 96px;
}
.summary h2 { font-size: 19px; margin-bottom: 18px; }
.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 7px 0;
  font-size: 14.5px;
  color: var(--muted);
}
.summary-row strong { color: var(--ink); font-weight: 600; }
.summary-row .free { color: var(--brand); font-weight: 600; }
.summary-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-top: 14px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  font-family: var(--font-mono);
}
.summary-total span { font-size: 14px; color: var(--muted); }
.summary-total strong { font-size: 26px; }
.summary .btn { margin-top: 20px; }
.summary-note {
  display: flex;
  align-items: center;
  gap: 7px;
  justify-content: center;
  margin-top: 14px;
  font-size: 12px;
  color: var(--muted);
}
.summary-note svg { color: var(--brand); }

/* mini-lista de itens no resumo do checkout */
.summary-items { display: flex; flex-direction: column; gap: 12px; margin-bottom: 18px; padding-bottom: 16px; border-bottom: 1px solid var(--border); }
.summary-item { display: flex; gap: 12px; align-items: center; }
.summary-item img { width: 48px; height: 48px; border-radius: var(--radius-sm); object-fit: cover; background: var(--brand-tint); }
.summary-item-info { flex: 1; min-width: 0; }
.summary-item-name { font-size: 14px; font-weight: 500; }
.summary-item-qty { font-family: var(--font-mono); font-size: 12px; color: var(--muted); }
.summary-item-price { font-family: var(--font-mono); font-size: 14px; }

/* formulário de checkout */
.fieldset {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 26px 12px;
  margin-bottom: 18px;
}
.fieldset-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 19px;
  margin-bottom: 20px;
}
.fieldset-title .fstep {
  width: 26px; height: 26px;
  flex-shrink: 0;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 13px;
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* toggle criar conta */
.account-opt {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: var(--brand-tint);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  margin-bottom: 4px;
  cursor: pointer;
}
.account-opt input { margin-top: 3px; width: 18px; height: 18px; accent-color: var(--brand); flex-shrink: 0; }
.account-opt-text strong { display: block; font-size: 14.5px; }
.account-opt-text span { font-size: 13px; color: var(--muted); }
.account-pass { margin-top: 16px; display: none; }
.account-pass.is-open { display: block; }

/* painel PIX */
.pix-panel {
  max-width: 480px;
  margin: 0 auto;
  text-align: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 32px;
}
.pix-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand);
  background: var(--brand-tint);
  padding: 7px 14px;
  border-radius: 100px;
  margin-bottom: 18px;
}
.pix-panel h1 { font-size: 26px; margin-bottom: 6px; }
.pix-panel .pix-amount { font-family: var(--font-mono); font-size: 30px; color: var(--brand-deep); margin: 4px 0 22px; }
.pix-qr {
  width: 232px; height: 232px;
  margin: 0 auto 20px;
  padding: 12px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.pix-qr img { width: 100%; height: 100%; }
.pix-code-label { font-size: 13px; color: var(--muted); margin-bottom: 8px; }
.pix-code {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px;
  word-break: break-all;
  line-height: 1.5;
  margin-bottom: 12px;
  max-height: 92px;
  overflow-y: auto;
}
.pix-status {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 22px;
  font-size: 14px;
  color: var(--muted);
}
.pix-status .dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 1.4s ease-in-out infinite;
}
.pix-status.is-paid { color: var(--brand-deep); font-weight: 600; }
.pix-status.is-paid .dot { background: var(--brand); animation: none; }

@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }

.pix-help { font-size: 13px; color: var(--muted); margin-top: 20px; line-height: 1.6; }

/* estado de sucesso (pago) */
.paid-check {
  width: 76px; height: 76px;
  margin: 0 auto 20px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
}

/* ---------- accessory banner (infusor) ---------- */
.accessory {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 8px;
  overflow: hidden;
}
.accessory-photo {
  position: relative;
  border-radius: calc(var(--radius) - 4px);
  overflow: hidden;
  aspect-ratio: 1 / 1;
}
.accessory-photo img { width: 100%; height: 100%; object-fit: cover; }
.accessory-body { padding: 12px 32px 12px 0; }
.accessory-body .eyebrow { margin-bottom: 12px; }
.accessory-body h2 { font-size: clamp(24px, 3.2vw, 32px); margin-bottom: 10px; }
.accessory-body > p { color: var(--muted); font-size: 15.5px; margin-bottom: 18px; }
.accessory-list { list-style: none; display: flex; flex-direction: column; gap: 9px; margin-bottom: 22px; }
.accessory-list li { display: flex; align-items: center; gap: 10px; font-size: 14.5px; font-weight: 500; }
.accessory-list svg { color: var(--brand); flex-shrink: 0; }
.accessory-price-row { display: flex; align-items: baseline; gap: 12px; margin-bottom: 20px; font-family: var(--font-mono); }
.accessory-price-row .price-now { font-size: 24px; }
.accessory-price-row .price-was { font-size: 16px; }

@media (max-width: 960px) {
  .accessory { grid-template-columns: 1fr; padding: 8px; }
  .accessory-photo { aspect-ratio: 16/10; }
  .accessory-body { padding: 20px 20px 26px; }
}

/* ---------- advertorial (matéria de vendas) ---------- */
.advertorial { max-width: 680px; margin: 0 auto; }
.advertorial > .eyebrow { margin-bottom: 14px; }
.advertorial h2 {
  font-size: clamp(26px, 4vw, 38px);
  line-height: 1.14;
  margin-bottom: 20px;
}
.advertorial p {
  font-size: 17px;
  line-height: 1.72;
  color: #33322B;
  margin-bottom: 18px;
}
.advertorial p.lead {
  font-size: 20px;
  line-height: 1.6;
  color: var(--ink);
}
.advertorial h3 {
  font-family: var(--font-display);
  font-size: clamp(20px, 3vw, 25px);
  line-height: 1.22;
  margin: 34px 0 12px;
  color: var(--ink);
}
.advertorial .adv-ps {
  font-size: 15.5px;
  color: var(--muted);
  border-top: 1px solid var(--border);
  margin-top: 30px;
  padding-top: 20px;
}
.advertorial .adv-ps strong { color: var(--ink); }
.advertorial p strong { color: var(--ink); font-weight: 600; }
.advertorial .pullquote {
  font-family: var(--font-display);
  font-size: clamp(21px, 3vw, 27px);
  line-height: 1.35;
  font-style: italic;
  color: var(--brand-deep);
  border-left: 3px solid var(--brand);
  padding: 4px 0 4px 22px;
  margin: 30px 0;
}
.advertorial .adv-highlight {
  background: var(--brand-tint);
  border-radius: var(--radius);
  padding: 22px 24px;
  margin: 28px 0;
}
.advertorial .adv-highlight p:last-child { margin-bottom: 0; }
.adv-cta { text-align: center; margin-top: 36px; }
.adv-cta .btn { padding: 15px 38px; }
.adv-byline {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.adv-byline .avatar {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  display: grid; place-items: center;
  font-size: 13px; font-weight: 600;
}

/* ---------- páginas informativas / legais ---------- */
.doc-hero { padding: 54px 0 6px; text-align: center; }
.doc-hero .eyebrow { justify-content: center; }
.doc-hero h1 { font-size: clamp(30px, 5vw, 46px); margin: 12px 0 10px; }
.doc-hero p { color: var(--muted); max-width: 580px; margin: 0 auto; font-size: 17px; }

.doc { max-width: 720px; margin: 0 auto; padding: 34px 0 96px; }
.doc-updated {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 26px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
}
.doc h2 { font-size: 23px; margin: 36px 0 12px; }
.doc h3 { font-size: 17px; margin: 22px 0 8px; }
.doc p { color: #33322B; line-height: 1.72; margin-bottom: 16px; font-size: 16px; }
.doc ul { margin: 0 0 18px 20px; color: #33322B; line-height: 1.7; }
.doc li { margin-bottom: 8px; }
.doc a { color: var(--brand); border-bottom: 1px solid transparent; transition: border-color 0.2s; }
.doc a:hover { border-bottom-color: var(--brand); }
.doc strong { color: var(--ink); }
.doc-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 24px;
  margin: 22px 0;
}
.doc-card p:last-child { margin-bottom: 0; }

/* contato */
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 30px 0 8px; }
.contact-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 20px;
  text-align: center;
}
.contact-card .contact-icon {
  width: 48px; height: 48px;
  margin: 0 auto 14px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--brand-tint);
  color: var(--brand);
}
.contact-card h3 { font-size: 16px; margin-bottom: 6px; }
.contact-card p { font-size: 14px; color: var(--muted); margin: 0; line-height: 1.5; }
.contact-card a { font-weight: 600; }
@media (max-width: 640px) { .contact-grid { grid-template-columns: 1fr; } }

/* imagem/infográfico dentro da matéria */
.adv-figure { margin: 32px 0; }
.adv-figure img {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  display: block;
}
.adv-figure figcaption {
  font-size: 13px;
  color: var(--muted);
  text-align: center;
  margin-top: 10px;
}

/* resumo de avaliações (prova social honesta) */
.reviews-summary {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 620px;
  margin: 0 auto 40px;
  padding: 26px 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.reviews-score { text-align: center; flex-shrink: 0; }
.reviews-score strong { font-family: var(--font-display); font-size: 46px; line-height: 1; display: block; }
.reviews-score .stars { color: var(--gold); font-size: 16px; letter-spacing: 2px; }
.reviews-score span { font-size: 12.5px; color: var(--muted); display: block; margin-top: 5px; }
.reviews-bars { flex: 1; min-width: 190px; display: flex; flex-direction: column; gap: 7px; }
.reviews-bar { display: flex; align-items: center; gap: 9px; font-size: 12px; color: var(--muted); font-family: var(--font-mono); }
.reviews-bar .track { flex: 1; height: 6px; background: var(--border); border-radius: 3px; overflow: hidden; }
.reviews-bar .fill { height: 100%; background: var(--gold); border-radius: 3px; }
.reviews-verified {
  width: 100%;
  text-align: center;
  font-size: 12px;
  color: var(--brand);
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
  margin-top: 4px;
}

/* contagem regressiva na barra de promoção */
.announce .count { color: #E8C976; font-weight: 600; font-variant-numeric: tabular-nums; }

/* ---------- meus pedidos ---------- */
.orders { display: flex; flex-direction: column; gap: 18px; max-width: 760px; }

.order-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 24px;
  transition: box-shadow 0.25s var(--ease-out);
}
.order-card:hover { box-shadow: 0 10px 30px -20px rgba(20, 20, 15, 0.3); }

.order-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.order-id { font-family: var(--font-mono); font-size: 12.5px; color: var(--muted); }
.order-date { font-size: 15px; font-weight: 500; margin-top: 2px; }

.order-status {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 6px 13px;
  border-radius: 100px;
  white-space: nowrap;
}
.order-status.is-pending { background: var(--gold-tint); color: var(--gold); }
.order-status.is-paid { background: var(--brand-tint); color: var(--brand-deep); }
.order-status.is-shipped { background: #E6EEF4; color: #2B5C88; }
.order-status.is-delivered { background: var(--brand-tint); color: var(--brand-deep); }
.order-status.is-cancelled { background: var(--coral-tint); color: var(--coral); }

.order-items-list { display: flex; flex-direction: column; gap: 12px; }
.order-item { display: flex; gap: 12px; align-items: center; }
.order-item img { width: 52px; height: 52px; border-radius: var(--radius-sm); object-fit: cover; background: var(--brand-tint); }
.order-item-thumb { width: 52px; height: 52px; border-radius: var(--radius-sm); background: var(--brand-tint); flex-shrink: 0; }
.order-item-info { flex: 1; min-width: 0; }
.order-item-name { font-size: 14.5px; font-weight: 500; }
.order-item-qty { font-family: var(--font-mono); font-size: 12px; color: var(--muted); }
.order-item-price { font-family: var(--font-mono); font-size: 14px; }

.order-foot {
  display: flex;
  justify-content: flex-end;
  align-items: baseline;
  gap: 10px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}
.order-total-label { font-size: 13px; color: var(--muted); }
.order-total { font-family: var(--font-mono); font-size: 21px; }

.orders-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.orders-logout {
  font-size: 14px;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}
.orders-logout:hover { color: var(--coral); }

/* estado: não logado / vazio */
.orders-guard { text-align: center; padding: 64px 20px; max-width: 460px; margin: 0 auto; }
.orders-guard-icon {
  width: 68px; height: 68px;
  margin: 0 auto 20px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--brand-tint);
  color: var(--brand);
}
.orders-guard h2 { font-size: 23px; margin-bottom: 8px; }
.orders-guard p { color: var(--muted); margin-bottom: 24px; }

/* ---------- modal "adicionado ao carrinho" ---------- */
.cart-modal {
  position: fixed;
  inset: 0;
  z-index: 400;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(15, 15, 11, 0.62);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.28s var(--ease-out), visibility 0.28s;
}
.cart-modal.is-open { opacity: 1; visibility: visible; }

.cart-modal-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 34px 32px 28px;
  max-width: 384px;
  width: 100%;
  text-align: center;
  box-shadow: 0 30px 70px -24px rgba(20, 20, 15, 0.42);
  transform: translateY(14px) scale(0.97);
  transition: transform 0.34s var(--ease-out);
}
.cart-modal.is-open .cart-modal-card { transform: none; }

.cart-modal-icon {
  width: 58px; height: 58px;
  margin: 0 auto 16px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--brand-tint);
  color: var(--brand);
}
.cart-modal-card { position: relative; }
.cart-modal-card h3 { font-size: 22px; margin-bottom: 4px; }
.cart-modal-name { color: var(--muted); font-size: 14.5px; margin-bottom: 24px; }
.cart-modal-actions { display: flex; flex-direction: column; gap: 10px; }

.cart-modal-close {
  position: absolute; top: 14px; right: 14px;
  width: 34px; height: 34px; display: grid; place-items: center;
  border-radius: 50%; background: transparent; color: var(--muted);
  transition: background .2s, color .2s;
}
.cart-modal-close:hover { background: var(--brand-tint); color: var(--brand); }

.cart-modal-product {
  display: flex; align-items: center; gap: 13px;
  text-align: left; padding: 12px 14px; margin: 6px 0 14px;
  background: var(--bg); border: 1px solid var(--border); border-radius: 14px;
}
.cart-modal-thumb { width: 54px; height: 54px; border-radius: 10px; object-fit: cover; flex: none; }
.cart-modal-lines { flex: 1 1 auto; min-width: 0; display: flex; flex-direction: column; gap: 1px; }
.cart-modal-pname { font-weight: 600; font-size: 14.5px; line-height: 1.28; }
.cart-modal-pmeta { color: var(--muted); font-size: 12.5px; }
.cart-modal-pprice { font-weight: 700; color: var(--brand); white-space: nowrap; font-size: 15px; }
.cart-modal-summary { color: var(--muted); font-size: 13.5px; margin-bottom: 20px; }
.cart-modal-summary strong { color: var(--ink); }
.cart-modal-continue {
  color: var(--muted); font: inherit; padding: 8px;
  text-decoration: underline; text-underline-offset: 3px; transition: color .2s;
}
.cart-modal-continue:hover { color: var(--ink); }

/* estado de carregamento nos botões */
.btn.is-loading { position: relative; color: transparent !important; pointer-events: none; }
.btn.is-loading::after {
  content: ""; position: absolute; width: 18px; height: 18px;
  top: 50%; left: 50%; margin: -9px 0 0 -9px;
  border: 2px solid rgba(255,255,255,.45); border-top-color: #fff; border-radius: 50%;
  animation: primus-spin .6s linear infinite;
}
@keyframes primus-spin { to { transform: rotate(360deg); } }

/* pulso do contador ao adicionar */
.cart-count.is-bump { animation: primus-bump .42s var(--ease-out); }
@keyframes primus-bump { 0% { transform: scale(1); } 40% { transform: scale(1.45); } 100% { transform: scale(1); } }

@media (prefers-reduced-motion: reduce) {
  .cart-modal, .cart-modal-card { transition: none; }
  .cart-count.is-bump { animation: none; }
}

@media (max-width: 900px) {
  .cart-layout, .checkout-layout { grid-template-columns: 1fr; }
  .summary { position: static; }
}

@media (max-width: 640px) {
  .cart-row { grid-template-columns: 64px 1fr; grid-template-areas: "thumb info" "actions actions"; }
  .cart-thumb { width: 64px; height: 64px; }
  .cart-right { flex-direction: row; align-items: center; justify-content: space-between; width: 100%; }
  .field-row { grid-template-columns: 1fr; }
  .pix-panel { padding: 32px 20px; }
}

@media (max-width: 640px) {
  .section { padding: 64px 0; }
  .nav {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    padding: 12px 24px 20px;
  }
  .nav.is-open { display: flex; }
  .nav a { padding: 12px 0; border-bottom: 1px solid var(--border); }
  .menu-toggle { display: inline-flex; }
  .product-grid, .ingredient-grid, .steps, .testimonial-grid, .variants { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: 1fr; }
  .club form { flex-direction: column; }
  .hero { padding: 48px 0 64px; }
  .guarantee { padding: 36px 28px; }
}

/* ---------- avisos do WooCommerce (produto adicionado, erros) ---------- */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  list-style: none;
  border: none; /* remove borda azul padrao do WooCommerce */
  background: var(--brand-tint);
  color: var(--brand-deep);
  border-radius: var(--radius);
  padding: 14px 18px;
  margin-bottom: 20px;
  font-size: 14.5px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.woocommerce-error { background: var(--coral-tint); color: var(--coral); }
/* esconde o icone padrao do WooCommerce (fonte nao carregada) */
.woocommerce-message::before, .woocommerce-info::before, .woocommerce-error::before { display: none; }
.woocommerce-message a.button, .woocommerce-error a.button {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 12.5px;
  text-decoration: underline;
}

/* ============================================================
   Pele do WooCommerce — deixa carrinho/checkout/conta/loja
   com a cara da marca sem reescrever os templates.
   ============================================================ */
.woocommerce, .woocommerce-page {
  max-width: 1160px;
  margin: 0 auto;
  padding: 48px 24px 80px;
  font-family: var(--font-body);
  color: var(--ink);
}
.woocommerce .page-title, .woocommerce h1 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 24px;
}

/* botões */
.woocommerce a.button, .woocommerce button.button, .woocommerce input.button,
.woocommerce #respond input#submit, .woocommerce a.button.alt,
.woocommerce button.button.alt, .woocommerce input.button.alt,
.woocommerce #place_order {
  background: var(--brand);
  color: #fff;
  border-radius: var(--radius-sm);
  padding: 13px 24px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  border: none;
  transition: background 0.25s var(--ease-out);
}
.woocommerce a.button:hover, .woocommerce button.button:hover,
.woocommerce input.button:hover, .woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover, .woocommerce #place_order:hover {
  background: var(--brand-deep);
  color: #fff;
}

/* tabelas (carrinho, pedido) */
.woocommerce table.shop_table {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  border-collapse: separate;
  overflow: hidden;
  background: var(--surface);
}
.woocommerce table.shop_table th { font-family: var(--font-mono); font-size: 12px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted); }
.woocommerce table.shop_table td, .woocommerce table.shop_table th { padding: 14px 16px; }
.woocommerce .cart_totals h2, .woocommerce-checkout h3 { font-family: var(--font-display); }

/* ============================================================
   Carrinho — layout em cards + coluna de resumo
   ============================================================ */
.primus-cart {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 30px;
  align-items: start;
  max-width: 1080px;
  margin: 0 auto;
}
.primus-cart-main { min-width: 0; }

.pcart-list {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.pcart-row {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 18px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--border);
}
.pcart-row:last-child { border-bottom: none; }
.pcart-thumb img {
  width: 84px; height: 84px; object-fit: cover;
  border-radius: 12px; background: var(--bg);
}
.pcart-info { min-width: 0; display: flex; flex-direction: column; gap: 3px; }
.pcart-name { font-family: var(--font-display); font-size: 18px; line-height: 1.2; color: var(--ink); }
.pcart-name:hover { color: var(--brand); }
.pcart-metadata { color: var(--muted); font-size: 13px; }
.pcart-metadata p { margin: 0; }
.pcart-metadata dl { display: flex; flex-wrap: wrap; gap: 4px; margin: 0; }
.pcart-metadata dt { font-weight: 600; }
.pcart-metadata dd { margin: 0; }
.pcart-unit { color: var(--muted); font-size: 13px; font-family: var(--font-mono); }
.pcart-unit-label { opacity: .7; }
.woocommerce .primus-cart a.pcart-remove {
  display: inline-block; width: auto; height: auto; line-height: 1.4;
  align-self: flex-start; margin-top: 4px; border-radius: 0;
  color: var(--coral) !important; font-size: 12.5px; font-weight: 500;
  text-decoration: underline; text-underline-offset: 2px; transition: opacity .2s;
}
.woocommerce .primus-cart a.pcart-remove:hover { opacity: .7; background: transparent; color: var(--coral) !important; }

.pcart-qty .quantity { display: inline-flex; align-items: stretch; }
.pcart-stepper {
  display: inline-flex; align-items: center;
  border: 1px solid var(--border); border-radius: 999px; overflow: hidden; background: var(--surface);
}
.pcart-stepper button {
  width: 34px; height: 40px; font-size: 18px; color: var(--brand);
  display: grid; place-items: center; transition: background .2s;
}
.pcart-stepper button:hover { background: var(--brand-tint); }
.pcart-stepper input.qty {
  width: 42px; height: 40px; text-align: center; border: none;
  font: inherit; font-weight: 600; background: transparent; -moz-appearance: textfield; padding: 0;
}
.pcart-stepper input.qty::-webkit-outer-spin-button,
.pcart-stepper input.qty::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.pcart-subtotal { font-family: var(--font-mono); font-weight: 600; font-size: 16px; color: var(--brand-deep); white-space: nowrap; text-align: right; }

.pcart-actions {
  display: flex; flex-wrap: wrap; align-items: center; gap: 12px;
  margin-top: 18px;
}
.pcart-coupon { display: flex; gap: 8px; flex: 1 1 260px; }
.pcart-coupon input.input-text { flex: 1 1 auto; min-width: 0; }
.pcart-coupon .btn { flex: none; }
.pcart-update { margin-left: auto; }
.pcart-update.is-dirty { background: var(--brand); color: #fff; border-color: var(--brand); }
.pcart-continue { color: var(--muted); font-size: 14px; flex-basis: 100%; }
.pcart-continue:hover { color: var(--brand); }

/* coluna de resumo (totais do WooCommerce) */
.primus-cart-summary { position: sticky; top: 96px; }
.primus-cart-summary .cross-sells { display: none; }
.primus-cart-summary .cart_totals {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px 24px 26px; width: 100%; float: none;
}
.primus-cart-summary .cart_totals > h2 { font-size: 21px; margin-bottom: 16px; }
.primus-cart-summary .cart_totals table.shop_table { border: none; border-radius: 0; background: transparent; }
.primus-cart-summary .cart_totals table.shop_table th,
.primus-cart-summary .cart_totals table.shop_table td {
  padding: 11px 0; border-top: 1px solid var(--border); text-align: left; font-size: 16px;
}
.primus-cart-summary .cart_totals table.shop_table th { font-family: var(--font-body); text-transform: none; letter-spacing: 0; color: var(--ink); font-weight: 500; font-size: 16px; padding-right: 18px; }
.primus-cart-summary .cart_totals td { text-align: right; }
.primus-cart-summary .cart_totals tr:first-child th, .primus-cart-summary .cart_totals tr:first-child td { border-top: none; }
.primus-cart-summary .cart_totals .order-total th, .primus-cart-summary .cart_totals .order-total td { font-size: 19px; font-weight: 700; }
.primus-cart-summary .cart_totals .order-total .amount { color: var(--brand-deep); font-family: var(--font-mono); }
.primus-cart-summary .wc-proceed-to-checkout { padding: 18px 0 0; }
.primus-cart-summary .wc-proceed-to-checkout a.checkout-button {
  display: block; width: 100%; text-align: center; font-size: 16px; padding: 15px;
  border-radius: var(--radius-sm); background: var(--brand); color: #fff;
}
.primus-cart-summary .wc-proceed-to-checkout a.checkout-button:hover { background: var(--brand-deep); }
.primus-cart-summary .shipping-calculator-button { color: var(--brand); }
.primus-cart-trust { margin-top: 16px; display: flex; flex-direction: column; gap: 8px; color: var(--muted); font-size: 13px; }
.primus-cart-trust span { display: flex; align-items: center; gap: 8px; }
.primus-cart-trust svg { color: var(--brand); flex: none; }

@media (max-width: 900px) {
  .primus-cart { grid-template-columns: 1fr; }
  .primus-cart-summary { position: static; }
}
@media (max-width: 560px) {
  .pcart-row { grid-template-columns: 68px minmax(0,1fr) auto; grid-template-areas: "thumb info info" "qty qty subtotal"; row-gap: 12px; column-gap: 14px; }
  .pcart-thumb { grid-area: thumb; }
  .pcart-thumb img { width: 68px; height: 68px; }
  .pcart-info { grid-area: info; }
  .pcart-qty { grid-area: qty; align-self: center; }
  .pcart-subtotal { grid-area: subtotal; align-self: center; font-size: 18px; text-align: right; }
}

/* campos de formulário */
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select,
.woocommerce .select2-container--default .select2-selection--single {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font: inherit;
  background: var(--surface);
  min-height: 46px;
}
.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(15, 92, 64, 0.12);
}
.woocommerce form .form-row label { font-weight: 500; margin-bottom: 7px; }

/* ============================================================
   Checkout — duas colunas (dados | resumo)
   ============================================================ */
.primus-checkout-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 30px;
  align-items: start;
  max-width: 1080px;
  margin: 0 auto;
}
.primus-checkout-details { min-width: 0; }
.primus-checkout-review { position: sticky; top: 96px; }

/* caixas do checkout */
.woocommerce-checkout #customer_details,
.woocommerce-checkout #order_review {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 28px;
}
#order_review_heading { font-family: var(--font-display); font-size: 22px; margin: 0 0 14px; }

/* os dois blocos (cobrança/entrega) empilhados em coluna única dentro do card */
.woocommerce-checkout #customer_details .col2-set,
.woocommerce-checkout #customer_details .col-1,
.woocommerce-checkout #customer_details .col-2 { width: 100%; float: none; }
.woocommerce-checkout .col2-set .col-2:empty { display: none; }
.woocommerce-checkout #customer_details h3 { font-family: var(--font-display); font-size: 20px; margin-bottom: 14px; }

/* linhas de formulário: pares lado a lado */
.woocommerce form .form-row { margin-bottom: 18px; padding: 0; }
.woocommerce form .form-row-first,
.woocommerce form .form-row-last { width: 48.5%; float: left; }
.woocommerce form .form-row-first { margin-right: 3%; }
.woocommerce form .form-row-last { float: right; }
.woocommerce form .form-row-wide { clear: both; width: 100%; }
.woocommerce .col2-set::after, .woocommerce form .form-row::after { content: ""; display: table; clear: both; }
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select { width: 100%; }

/* resumo do pedido: tabela limpa */
.primus-checkout-review .shop_table { border: none; background: transparent; }
.primus-checkout-review .shop_table th,
.primus-checkout-review .shop_table td { padding: 10px 0; border-top: 1px solid var(--border); font-size: 14.5px; }
.primus-checkout-review .shop_table .order-total th,
.primus-checkout-review .shop_table .order-total td { font-size: 18px; font-weight: 700; }
.primus-checkout-review .shop_table .order-total .amount { color: var(--brand-deep); font-family: var(--font-mono); }
.primus-checkout-review .cart_item .product-name { color: var(--ink); }

/* método de pagamento (PIX) */
.woocommerce-checkout #payment { background: transparent; border-radius: 0; }
.woocommerce-checkout #payment ul.payment_methods {
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: 6px; margin: 14px 0; background: var(--bg);
}
.woocommerce-checkout #payment ul.payment_methods li { padding: 10px 12px; list-style: none; }
.woocommerce-checkout #payment div.payment_box {
  background: var(--brand-tint); color: var(--brand-deep);
  border-radius: var(--radius-sm); font-size: 13.5px;
}
.woocommerce-checkout #payment div.payment_box::before { border-bottom-color: var(--brand-tint); }
.woocommerce-checkout #payment #place_order {
  width: 100%; margin-top: 14px; padding: 16px; font-size: 16.5px;
}
.woocommerce-checkout #payment .woocommerce-privacy-policy-text { font-size: 12px; color: var(--muted); }

/* confiança abaixo do resumo */
.primus-checkout-trust { margin-top: 16px; display: flex; flex-direction: column; gap: 9px; color: var(--muted); font-size: 13px; }
.primus-checkout-trust span { display: flex; align-items: center; gap: 9px; }
.primus-checkout-trust svg { color: var(--brand); flex: none; }

@media (max-width: 900px) {
  .primus-checkout-grid { grid-template-columns: 1fr; }
  .primus-checkout-review { position: static; }
}

/* Minha Conta */
.woocommerce-account .woocommerce-MyAccount-navigation ul { list-style: none; margin: 0; padding: 0; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.woocommerce-account .woocommerce-MyAccount-navigation li a { display: block; padding: 13px 18px; border-bottom: 1px solid var(--border); color: var(--ink); font-weight: 500; }
.woocommerce-account .woocommerce-MyAccount-navigation li.is-active a { background: var(--brand-tint); color: var(--brand-deep); }
.woocommerce-account .woocommerce-MyAccount-content { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 26px 28px; }

/* loja (grade de produtos padrão do WC, caso usada) */
.woocommerce ul.products li.product h2, .woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-family: var(--font-display);
}
.woocommerce ul.products li.product .price { color: var(--brand-deep); font-family: var(--font-mono); }

/* remove o padding do container quando é a tela de obrigado com painel PIX */
.woocommerce-order .pix-panel { margin-top: 8px; }

/* CEP sendo consultado */
.primus-cep-loading { opacity: .65; }

/* ===== checkout mais largo e legivel (publico idoso) ===== */
body.woocommerce-checkout.page { max-width: 1280px; }
body.woocommerce-checkout .container { max-width: 1240px; }
body.woocommerce-checkout .doc { max-width: 1200px; }
body.woocommerce-checkout .primus-checkout-grid { max-width: 100%; }
body.woocommerce-checkout .form-row input.input-text,
body.woocommerce-checkout .form-row textarea,
body.woocommerce-checkout .form-row select { font-size: 17px; min-height: 52px; }

/* ===== carrinho mais largo (publico idoso) ===== */
body.woocommerce-cart.page { max-width: 1280px; }
body.woocommerce-cart .container { max-width: 1240px; }
body.woocommerce-cart .doc { max-width: 1200px; }
