/* =========================================
   777 — Neon Purple Dark
   Paleta: preto profundo com leve tom violeta + um único acento roxo neon
   ========================================= */
:root {
  /* Fundos com leve tom violeta */
  --bg:        #08060c;
  --bg-2:      #0d0a14;
  --surface:   #15101e;
  --surface-2: #1c1530;
  --surface-3: #261d3f;

  /* Linhas / divisores */
  --line:      rgba(180, 130, 255, .08);
  --line-2:    rgba(180, 130, 255, .18);

  /* Texto */
  --text:      #f3f0fa;
  --text-dim:  #b3a8c8;
  --muted:     #786c92;
  --bone:      #f3f0fa;

  /* Acento único — roxo neon */
  --green:     #b14dff;
  --green-2:   #9c30f0;
  --green-3:   #5a1d99;
  --lime:      #d49bff;
  --acid:      #b14dff;
  --acid-soft: rgba(177, 77, 255, .12);
  --acid-glow: 0 0 24px rgba(177, 77, 255, .55);

  /* Tons complementares */
  --magenta:   #d44dff;
  --magenta-2: #8a25b8;
  --purple:    #6c2dbf;
  --purple-2:  #2c114f;
  --terra:     #c8a4d6;
  --brown:     #4a3a5e;
  --gold:      #c8a86b;

  /* Semânticas */
  --danger:    #ff5577;
  --warn:      #d4a85f;
  --info:      #6c9eff;

  /* Estrutura */
  --radius:    16px;
  --radius-sm: 12px;
  --shadow:        0 30px 60px -20px rgba(0,0,0,.7);
  --shadow-soft:   0 10px 30px -10px rgba(0,0,0,.6);
  --max:       1240px;

  /* Tipografia limpa */
  --font-sans:    'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --font-display: 'Inter Tight', 'Inter', system-ui, sans-serif;
  /* Aliases legados */
  --font-mono:    var(--font-sans);
  --font-melted:  var(--font-display);
  --font-occult:  var(--font-sans);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  min-height: 100vh;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
input, select, textarea { font-family: inherit; }

.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: 880px; }

h1, h2, h3, h4 {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  margin: 0;
  letter-spacing: -.02em;
  font-weight: 700;
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); line-height: 1.05; }
h1 em { font-style: italic; color: var(--green); font-weight: 600; }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); line-height: 1.15; }
h3 { font-size: 1.2rem; }
p { color: var(--text-dim); line-height: 1.65; }

.eyebrow {
  display: inline-block;
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green);
  background: rgba(177, 77, 255, .08);
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(177, 77, 255, .25);
  margin-bottom: 18px;
}

/* === Buttons === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: .95rem;
  padding: 12px 22px;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, opacity .2s ease, filter .2s;
  background: transparent;
  color: var(--text);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn:disabled { opacity: .5; cursor: not-allowed; transform: none; }
.btn--primary {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-2) 100%);
  color: #0a0a0a;
  box-shadow: 0 12px 30px -10px rgba(177, 77, 255, .55);
}
.btn--primary:hover { filter: brightness(1.07); }
.btn--ghost {
  border-color: var(--line);
  color: var(--text);
  background: rgba(255,255,255,.02);
}
.btn--ghost:hover { background: rgba(255,255,255,.06); }
.btn--lg { padding: 15px 26px; font-size: 1rem; }
.btn--sm { padding: 8px 14px; font-size: .85rem; }
.btn--block { width: 100%; }
.btn--danger {
  background: rgba(255, 118, 118, .12);
  color: var(--danger);
  border-color: rgba(255, 118, 118, .3);
}
.btn--danger:hover { background: rgba(255, 118, 118, .2); }

/* === Top bar === */
.bar {
  background: linear-gradient(90deg, var(--bg-2), var(--surface), var(--bg-2));
  color: var(--text-dim);
  font-size: .82rem;
  text-align: center;
  padding: 10px 16px;
  border-bottom: 1px solid var(--line);
}

/* === Header === */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(10, 18, 14, .78);
  border-bottom: 1px solid var(--line);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -.01em;
  color: var(--text);
}
.brand__leaf { font-size: 1.4rem; filter: drop-shadow(0 0 14px rgba(177, 77, 255, .6)); }
.nav { display: flex; gap: 28px; }
.nav a {
  color: var(--text-dim);
  font-size: .95rem;
  font-weight: 500;
  transition: color .2s;
}
.nav a:hover { color: var(--text); }
.header__actions { display: flex; align-items: center; gap: 10px; }

.icon-btn {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--text);
  position: relative;
  transition: background .2s, transform .2s;
}
.icon-btn:hover { background: rgba(255,255,255,.08); }
.icon-btn svg { width: 18px; height: 18px; }
.icon-btn--cart .cart-count {
  position: absolute;
  top: -6px;
  right: -6px;
  background: var(--green);
  color: #0a0a0a;
  font-size: .7rem;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--bg);
}

@media (max-width: 760px) {
  .nav { display: none; }
}

/* === Hero === */
.hero {
  position: relative;
  padding: 80px 0 100px;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .55;
}
.blob--a { width: 480px; height: 480px; background: #2d7a3a; top: -120px; left: -80px; }
.blob--b { width: 520px; height: 520px; background: #b9e76b; top: 100px; right: -160px; opacity: .35; }
.blob--c { width: 360px; height: 360px; background: #1d6b40; bottom: -160px; left: 30%; opacity: .4; }

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero__copy p { font-size: 1.1rem; max-width: 520px; margin-top: 18px; }
.hero__cta { display: flex; gap: 12px; margin-top: 32px; flex-wrap: wrap; }
.hero__stats {
  display: flex;
  gap: 32px;
  margin-top: 50px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  max-width: 520px;
}
.hero__stats > div { display: flex; flex-direction: column; gap: 4px; }
.hero__stats strong { font-size: 1.6rem; font-family: 'Space Grotesk', sans-serif; }
.hero__stats span { color: var(--muted); font-size: .85rem; }

.hero__art { position: relative; height: 480px; }
.card-stack { position: relative; width: 100%; height: 100%; }
.floating-card {
  position: absolute;
  width: 220px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 14px;
  box-shadow: var(--shadow);
  animation: float 6s ease-in-out infinite;
}
.floating-card--1 { top: 20px; left: 10%; animation-delay: 0s; transform: rotate(-6deg); }
.floating-card--2 { top: 80px; right: 0; animation-delay: 1.2s; transform: rotate(4deg); z-index: 2; }
.floating-card--3 { bottom: 30px; left: 30%; animation-delay: 2.4s; transform: rotate(-2deg); }
.fc__img {
  height: 150px;
  border-radius: 14px;
  margin-bottom: 12px;
  position: relative;
  overflow: hidden;
}
.fc__img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 120%, rgba(255,255,255,.15), transparent 60%);
}
.fc__meta { display: flex; flex-direction: column; gap: 2px; padding: 0 4px; }
.fc__meta strong { font-size: .95rem; }
.fc__meta span { color: var(--text-dim); font-size: .8rem; }
.fc__price {
  margin-top: 8px;
  padding: 6px 12px;
  background: rgba(177, 77, 255, .12);
  color: var(--green);
  border-radius: 999px;
  display: inline-block;
  font-weight: 600;
  font-size: .85rem;
}
@keyframes float {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -14px; }
}

@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__art { height: 380px; }
}

/* === Sections === */
section { padding: 80px 0; }
.section-head { max-width: 620px; margin-bottom: 40px; }
.section-head p { margin-top: 8px; }
.section-head--row {
  max-width: none;
  display: flex;
  align-items: end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

/* === Categories === */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.cat-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  color: var(--text);
  transition: transform .25s ease, border-color .25s, background .25s;
  text-align: left;
}
.cat-card:hover {
  transform: translateY(-4px);
  border-color: rgba(177, 77, 255, .35);
  background: var(--surface-2);
}
.cat-card__emoji {
  font-size: 1.6rem;
  margin-bottom: 10px;
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  background: rgba(177, 77, 255, .1);
  border-radius: 12px;
}
.cat-card__title { font-weight: 600; font-size: 1rem; }
.cat-card__sub { color: var(--muted); font-size: .82rem; }
.cat-grid--two {
  grid-template-columns: repeat(2, 1fr);
  max-width: 640px;
  margin: 0 auto;
}
@media (max-width: 1000px) {
  .cat-grid.cat-grid--two { grid-template-columns: repeat(2, 1fr); }
}
.cat-card--link {
  text-decoration: none;
  cursor: pointer;
}
.shop-section {
  margin-top: 48px;
  scroll-margin-top: 96px;
}
.shop-section:first-of-type { margin-top: 8px; }
.shop-section[hidden] { display: none !important; }
.shop-section__head { margin-bottom: 22px; }
.shop-section__head h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 6px;
}
.shop-section__head p { margin: 0; color: var(--text-dim); font-size: .92rem; }
@media (max-width: 1000px) { .cat-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .cat-grid { grid-template-columns: repeat(2, 1fr); } }

/* === Chips & Pills === */
.filters { display: flex; gap: 8px; flex-wrap: wrap; }
.chip {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--text-dim);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: .88rem;
  font-weight: 500;
  transition: all .2s;
}
.chip:hover { color: var(--text); border-color: rgba(255,255,255,.18); }
.chip.active {
  background: var(--text);
  color: var(--bg);
  border-color: var(--text);
}

.search-row {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.search-input {
  flex: 1;
  min-width: 240px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0 16px;
}
.search-input svg { width: 18px; height: 18px; color: var(--muted); }
.search-input input {
  flex: 1;
  background: transparent;
  border: 0;
  outline: 0;
  color: var(--text);
  padding: 14px 0;
  font-size: .95rem;
}
.search-input input::placeholder { color: var(--muted); }
.strain-filter { display: flex; gap: 6px; flex-wrap: wrap; }
.pill {
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--text-dim);
  padding: 10px 16px;
  border-radius: 12px;
  font-size: .85rem;
  font-weight: 500;
  transition: all .2s;
}
.pill:hover { color: var(--text); }
.pill.active {
  background: rgba(177, 77, 255, .12);
  border-color: rgba(177, 77, 255, .4);
  color: var(--green);
}

/* === Product cards === */
.grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
@media (max-width: 1100px) { .grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 820px)  { .grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .grid { grid-template-columns: 1fr; } }

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px;
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, border-color .25s, box-shadow .25s;
  position: relative;
  overflow: hidden;
  color: inherit;
}
.card:hover {
  transform: translateY(-4px);
  border-color: rgba(177, 77, 255, .3);
  box-shadow: var(--shadow-soft);
}
.card__media {
  height: 200px;
  border-radius: 14px;
  margin-bottom: 14px;
  position: relative;
  overflow: hidden;
}
.card__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 120%, rgba(255,255,255,.18), transparent 55%);
}
.card__badges {
  position: absolute;
  top: 22px;
  left: 22px;
  display: flex;
  gap: 6px;
  z-index: 2;
}
.badge {
  padding: 4px 10px;
  border-radius: 999px;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}
.badge--sativa  { background: rgba(232, 196, 100, .9); color: #3d2a00; }
.badge--indica  { background: rgba(155, 130, 240, .9); color: #1a0e3d; }
.badge--hibrida { background: rgba(177, 77, 255, .9); color: #0a0a0a; }
.badge--new {
  position: absolute;
  top: 22px;
  right: 22px;
  background: rgba(0,0,0,.6);
  color: var(--lime);
  z-index: 2;
}
.badge--low {
  background: rgba(255, 181, 71, .9);
  color: #3d2a00;
}
.card__title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 4px;
}
.card__sub { color: var(--text-dim); font-size: .85rem; margin: 0; }
.card__effects {
  display: flex;
  gap: 6px;
  margin: 10px 0 14px;
  flex-wrap: wrap;
}
.effect-tag {
  font-size: .72rem;
  color: var(--text-dim);
  background: rgba(255,255,255,.04);
  border: 1px solid var(--line);
  padding: 3px 8px;
  border-radius: 6px;
}
.card__lab {
  display: flex;
  gap: 14px;
  font-size: .78rem;
  color: var(--muted);
  margin-bottom: 14px;
  padding: 10px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.card__lab b { color: var(--text); font-weight: 600; }
.card__foot {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.card__price {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
}
.card__price small { font-weight: 400; color: var(--muted); font-size: .75rem; margin-left: 2px; }
.add-btn {
  background: var(--green);
  color: #0a0a0a;
  border: 0;
  border-radius: 12px;
  padding: 10px 14px;
  font-weight: 600;
  font-size: .85rem;
  transition: transform .15s, background .2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.add-btn:hover { background: var(--lime); }
.add-btn:active { transform: scale(.96); }
.add-btn svg { width: 14px; height: 14px; }
.empty { text-align: center; padding: 40px; color: var(--muted); }

/* === About === */
.about__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}
.bullets { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 12px; }
.bullets li { display: flex; align-items: center; gap: 12px; color: var(--text-dim); }
.bullets span {
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(177, 77, 255, .1);
  border-radius: 10px;
}
.about__art { display: flex; justify-content: center; }
.about__panel {
  background: linear-gradient(160deg, var(--surface), var(--surface-2));
  border: 1px solid var(--line);
  border-radius: 32px;
  padding: 50px 40px;
  text-align: center;
  max-width: 340px;
  box-shadow: var(--shadow);
}
.about__big {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 5rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 14px;
  background: linear-gradient(135deg, var(--green), var(--lime));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
@media (max-width: 900px) { .about__inner { grid-template-columns: 1fr; } }

/* === FAQ === */
.faq__list { display: grid; gap: 12px; max-width: 820px; }
.faq details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 4px 22px;
  transition: border-color .2s;
}
.faq details[open] { border-color: rgba(177, 77, 255, .25); }
.faq summary {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  padding: 18px 0;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; font-size: 1.4rem; color: var(--green); transition: transform .2s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq p { margin: 0 0 18px; }

/* === Newsletter === */
.newsletter {
  background: linear-gradient(135deg, #133324 0%, #0c1f17 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.newsletter__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.newsletter__form {
  display: flex;
  gap: 8px;
  background: rgba(0,0,0,.3);
  padding: 6px;
  border-radius: 999px;
  border: 1px solid var(--line);
}
.newsletter__form input {
  flex: 1;
  background: transparent;
  border: 0;
  outline: 0;
  color: var(--text);
  padding: 12px 18px;
  font-size: .95rem;
}
.newsletter__form input::placeholder { color: var(--muted); }
@media (max-width: 720px) { .newsletter__inner { grid-template-columns: 1fr; } }

/* === Footer === */
.footer {
  padding: 70px 0 30px;
  background: #07100c;
  border-top: 1px solid var(--line);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}
.footer__grid h4 {
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--text-dim);
  margin-bottom: 16px;
  font-weight: 600;
}
.footer__grid a {
  display: block;
  color: var(--text-dim);
  padding: 4px 0;
  transition: color .2s;
  font-size: .92rem;
}
.footer__grid a:hover { color: var(--text); }
.footer__tag { margin-top: 14px; max-width: 320px; font-size: .9rem; }
.footer__bottom { border-top: 1px solid var(--line); padding-top: 24px; color: var(--muted); }
@media (max-width: 760px) { .footer__grid { grid-template-columns: 1fr 1fr; } }

/* === Cart Drawer === */
.cart { position: fixed; inset: 0; z-index: 100; pointer-events: none; }
.cart[aria-hidden="false"] { pointer-events: auto; }
.cart__overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,.55);
  opacity: 0;
  transition: opacity .3s;
  backdrop-filter: blur(2px);
}
.cart[aria-hidden="false"] .cart__overlay { opacity: 1; }
.cart__panel {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 100%;
  max-width: 440px;
  background: var(--bg-2);
  border-left: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.2,.7,.2,1);
  box-shadow: var(--shadow);
}
.cart[aria-hidden="false"] .cart__panel { transform: translateX(0); }
.cart__head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 24px;
  border-bottom: 1px solid var(--line);
}
.cart__head h3 { font-family: 'Space Grotesk', sans-serif; font-size: 1.2rem; font-weight: 700; margin: 0; }
.cart__items {
  flex: 1;
  overflow-y: auto;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cart-item {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 14px;
  padding: 12px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
}
.cart-item__img { width: 64px; height: 64px; border-radius: 10px; }
.cart-item__title { font-weight: 600; margin: 0 0 4px; font-size: .92rem; }
.cart-item__sub { color: var(--muted); font-size: .78rem; margin: 0 0 8px; }
.qty {
  display: inline-flex; align-items: center; gap: 0;
  background: rgba(0,0,0,.3);
  border: 1px solid var(--line);
  border-radius: 8px;
}
.qty button {
  background: transparent;
  border: 0;
  color: var(--text);
  width: 26px; height: 26px;
  font-size: 1rem;
  display: inline-flex; align-items: center; justify-content: center;
}
.qty button:hover { color: var(--green); }
.qty span { padding: 0 8px; font-size: .85rem; min-width: 22px; text-align: center; }
.cart-item__right {
  display: flex; flex-direction: column;
  align-items: flex-end; justify-content: space-between;
  gap: 6px;
}
.cart-item__price { font-weight: 700; font-family: 'Space Grotesk', sans-serif; }
.cart-item__remove {
  background: transparent;
  border: 0;
  color: var(--muted);
  font-size: .78rem;
  transition: color .2s;
}
.cart-item__remove:hover { color: var(--danger); }
.cart__empty {
  flex: 1;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--muted);
  padding: 24px;
  text-align: center;
}
.cart__empty span { font-size: 2.6rem; }
.cart[data-empty="true"] .cart__items { display: none; }
.cart[data-empty="true"] .cart__empty { display: flex; }
.cart[data-empty="true"] .cart__foot { display: none; }
.cart__foot {
  border-top: 1px solid var(--line);
  padding: 20px 24px;
  display: flex; flex-direction: column;
  gap: 12px;
}
.cart__row { display: flex; justify-content: space-between; align-items: center; font-size: .95rem; }
.cart__row strong { font-family: 'Space Grotesk', sans-serif; font-size: 1.2rem; }
.cart__row--muted { color: var(--muted); font-size: .85rem; }
.cart__foot small { color: var(--muted); font-size: .78rem; text-align: center; }

/* === Age Gate === */
.age-gate {
  position: fixed; inset: 0; z-index: 200;
  display: flex; align-items: center; justify-content: center;
  background: rgba(5, 12, 8, .92);
  backdrop-filter: blur(20px);
  padding: 24px;
}
.age-gate.hidden { display: none; }
.age-gate__card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 40px;
  max-width: 460px; width: 100%;
  text-align: center;
  box-shadow: var(--shadow);
  animation: pop .4s cubic-bezier(.2,.7,.2,1);
}
@keyframes pop { from { transform: scale(.95); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.age-gate__logo {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.4rem; font-weight: 700;
  margin-bottom: 20px;
}
.age-gate__logo .leaf { font-size: 1.6rem; filter: drop-shadow(0 0 14px rgba(177, 77, 255, .6)); }
.age-gate h2 { font-size: 1.5rem; margin-bottom: 12px; }
.age-gate p { margin-bottom: 24px; font-size: .92rem; }
.age-gate__actions { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-bottom: 18px; }
.age-gate small { color: var(--muted); font-size: .78rem; }

/* === Toast === */
.toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--surface);
  border: 1px solid rgba(177, 77, 255, .35);
  color: var(--text);
  padding: 14px 22px;
  border-radius: 999px;
  font-size: .9rem;
  font-weight: 500;
  box-shadow: var(--shadow);
  z-index: 150;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s, transform .3s;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.toast--error { border-color: rgba(255, 118, 118, .4); }

/* === Forms === */
.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-size: .8rem; color: var(--text-dim); font-weight: 500; letter-spacing: .02em; }
.field input, .field select, .field textarea {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 13px 16px;
  color: var(--text);
  font-size: .95rem;
  outline: none;
  transition: border-color .2s, background .2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: rgba(177, 77, 255, .5);
  background: var(--surface-2);
}
.field textarea { resize: vertical; min-height: 80px; font-family: inherit; }
.field--error input, .field--error select { border-color: rgba(255, 118, 118, .5); }
.field__hint { font-size: .78rem; color: var(--muted); }

/* === Product detail page === */
.product-detail { padding: 50px 0 80px; }
.breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: .85rem;
  color: var(--muted);
  margin-bottom: 24px;
}
.breadcrumb a { color: var(--text-dim); }
.breadcrumb a:hover { color: var(--text); }
.breadcrumb span { color: var(--text); }

.pd {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
@media (max-width: 900px) { .pd { grid-template-columns: 1fr; gap: 30px; } }

.pd__media {
  height: 520px;
  border-radius: 28px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.pd__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 120%, rgba(255,255,255,.2), transparent 60%);
}
.pd__badges {
  position: absolute;
  top: 24px;
  left: 24px;
  display: flex;
  gap: 8px;
  z-index: 2;
}
.pd__info > .badge { margin-bottom: 16px; }
.pd__title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 4px 0 8px;
}
.pd__sub { color: var(--text-dim); font-size: 1.05rem; margin: 0 0 22px; }
.pd__price {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  margin: 0;
}
.pd__price small { font-weight: 400; color: var(--muted); font-size: .9rem; margin-left: 4px; }
.pd__lab {
  display: flex;
  gap: 20px;
  margin: 24px 0;
  padding: 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
}
.pd__lab > div { flex: 1; }
.pd__lab b { display: block; font-size: 1.4rem; font-family: 'Space Grotesk', sans-serif; }
.pd__lab span { color: var(--muted); font-size: .8rem; text-transform: uppercase; letter-spacing: .08em; }
.pd__effects { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 22px; }
.pd__desc { color: var(--text-dim); line-height: 1.7; }
.pd__cta { display: flex; gap: 12px; align-items: center; margin: 28px 0 20px; }
.pd__stock { font-size: .85rem; color: var(--muted); }
.pd__stock .ok { color: var(--green); }
.pd__stock .warn { color: var(--warn); }
.pd__stock .bad { color: var(--danger); }
.pd .qty { background: var(--surface); border: 1px solid var(--line); border-radius: 12px; padding: 4px; }
.pd .qty button { width: 32px; height: 32px; font-size: 1.1rem; }

/* === Checkout === */
.checkout { padding: 50px 0 80px; }
.checkout-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
  align-items: start;
}
@media (max-width: 900px) { .checkout-grid { grid-template-columns: 1fr; } }

.card-block {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  margin-bottom: 18px;
}
.card-block h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem;
  margin: 0 0 18px;
}
.row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.row3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 14px; }
@media (max-width: 600px) { .row2, .row3 { grid-template-columns: 1fr; } }

.summary { position: sticky; top: 90px; }
.summary__items {
  display: flex; flex-direction: column; gap: 10px;
  margin-bottom: 18px; max-height: 320px; overflow-y: auto;
}
.summary__item {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: 12px;
  align-items: center;
}
.summary__img { width: 48px; height: 48px; border-radius: 10px; }
.summary__title { font-size: .9rem; font-weight: 500; margin: 0; }
.summary__qty { color: var(--muted); font-size: .78rem; }
.summary__price { font-family: 'Space Grotesk', sans-serif; font-weight: 600; }
.summary__totals { border-top: 1px solid var(--line); padding-top: 16px; display: flex; flex-direction: column; gap: 8px; }
.summary__row { display: flex; justify-content: space-between; font-size: .95rem; color: var(--text-dim); }
.summary__row--total { color: var(--text); font-size: 1.1rem; font-weight: 600; padding-top: 8px; border-top: 1px solid var(--line); margin-top: 8px; }
.summary__row--total strong { font-family: 'Space Grotesk', sans-serif; font-size: 1.4rem; color: var(--green); }

.pix-option {
  border: 1px solid rgba(177, 77, 255, .3);
  background: rgba(177, 77, 255, .06);
  padding: 16px 18px;
  border-radius: 14px;
  display: flex;
  gap: 14px;
  align-items: center;
}
.pix-option__icon {
  width: 44px; height: 44px;
  background: var(--green);
  color: #0a0a0a;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-family: 'Space Grotesk', sans-serif;
}
.pix-option strong { display: block; }
.pix-option span { color: var(--text-dim); font-size: .85rem; }

.delivery-note {
  border: 1px solid rgba(177, 77, 255, .35);
  background: rgba(177, 77, 255, .08);
  padding: 14px 16px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 4px;
}
.delivery-note strong { color: var(--text); font-size: .95rem; }
.delivery-note span { color: var(--text-dim); font-size: .85rem; }
.field input[readonly] {
  background: var(--surface-2);
  color: var(--text-dim);
  cursor: not-allowed;
}

/* === PIX payment page === */
.pay { padding: 50px 0 80px; }
.pay-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 32px;
}
@media (max-width: 900px) { .pay-grid { grid-template-columns: 1fr; } }
.qr-box {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 28px;
  text-align: center;
}
.qr-box img {
  background: #fff;
  border-radius: 16px;
  margin: 0 auto 18px;
  width: 280px;
  height: 280px;
  padding: 12px;
}
.copy-row {
  display: flex;
  gap: 0;
  margin: 16px 0;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}
.copy-row input {
  flex: 1;
  background: transparent;
  border: 0;
  outline: 0;
  padding: 14px 16px;
  color: var(--text-dim);
  font-family: 'JetBrains Mono', 'Courier New', monospace;
  font-size: .78rem;
}
.copy-row button {
  background: var(--green);
  color: #0a0a0a;
  border: 0;
  padding: 0 22px;
  font-weight: 700;
  font-size: .9rem;
}
.copy-row button:hover { background: var(--lime); }
.step-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: flex; flex-direction: column; gap: 14px;
}
.step-list li {
  display: flex;
  gap: 14px;
  align-items: start;
  color: var(--text-dim);
  font-size: .92rem;
}
.step-list b {
  flex: 0 0 28px;
  height: 28px;
  background: rgba(177, 77, 255, .15);
  color: var(--green);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-size: .85rem;
}

/* === Order status === */
.status-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .8rem;
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: .02em;
}
.status-badge::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: currentColor;
}
.status-badge--pending_payment { background: rgba(255, 181, 71, .15); color: var(--warn); }
.status-badge--paid           { background: rgba(123, 182, 255, .15); color: var(--info); }
.status-badge--preparing      { background: rgba(177, 77, 255, .15); color: var(--green); }
.status-badge--shipped        { background: rgba(212, 255, 94, .15); color: var(--lime); }
.status-badge--delivered      { background: rgba(177, 77, 255, .2); color: var(--green); }
.status-badge--cancelled      { background: rgba(255, 118, 118, .15); color: var(--danger); }

/* Timeline */
.timeline { display: flex; flex-direction: column; gap: 18px; margin: 32px 0; }
.tl-item { display: grid; grid-template-columns: 36px 1fr; gap: 14px; }
.tl-dot {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--surface-3);
  border: 2px solid var(--surface);
  margin: 4px auto;
  position: relative;
}
.tl-item.done .tl-dot { background: var(--green); }
.tl-item.current .tl-dot { background: var(--green); box-shadow: 0 0 0 6px rgba(177, 77, 255, .2); }
.tl-item:not(:last-child) .tl-dot::after {
  content: '';
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 32px;
  background: var(--surface-3);
}
.tl-item.done:not(:last-child) .tl-dot::after { background: var(--green-3); }
.tl-info b { display: block; font-size: .92rem; }
.tl-info span { color: var(--muted); font-size: .82rem; }

/* === Page hero (slim) === */
.page-hero {
  padding: 60px 0 30px;
  position: relative;
  overflow: hidden;
}
.page-hero h1 { font-size: clamp(1.8rem, 3.2vw, 2.6rem); }
.page-hero p { max-width: 520px; }

/* === Seletor de gramas (produto) === */
.gram-picker {
  margin: 22px 0;
  padding: 18px 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
}
.gram-picker__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.gram-picker__label {
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--muted);
}
.gram-picker__value {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.35rem;
  color: var(--green);
}
.gram-picker__chips {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(96px, 1fr));
  gap: 10px;
  margin-top: 4px;
}
.gram-chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 14px 10px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--text);
  font-family: inherit;
  cursor: pointer;
  transition: all .18s ease;
}
.gram-chip strong {
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: -.01em;
}
.gram-chip span {
  font-size: .82rem;
  color: var(--text-dim);
}
.gram-chip:hover {
  border-color: var(--line-2);
  background: var(--surface-2);
}
.gram-chip.is-active {
  border-color: var(--acid);
  background: var(--acid-soft);
  box-shadow: 0 0 0 1px var(--acid) inset, 0 8px 24px -10px rgba(177, 77, 255, .45);
}
.gram-chip.is-active strong { color: var(--acid); }
.gram-chip.is-active span { color: var(--text); }
.gram-chip--mini {
  padding: 6px 12px;
  flex-direction: row;
  border-radius: 999px;
  font-size: .82rem;
}
.gram-chip--mini strong { font-size: .9rem; font-family: inherit; }
.gram-picker__chips--mini {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 6px;
}
.gram-picker__hint {
  margin: 12px 0 0;
  font-size: .78rem;
  color: var(--muted);
  text-align: center;
}

/* Hint nos cards da home (10g · 20g · 30g) */
.gram-hint {
  display: inline-flex;
  gap: 6px;
  margin-top: 4px;
}
.gram-hint span {
  font-size: .7rem;
  padding: 2px 8px;
  border-radius: 999px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  color: var(--text-dim);
}
.add-btn--ghost {
  background: transparent;
  border: 1px solid var(--line-2);
  color: var(--text);
}
.add-btn--ghost:hover {
  border-color: var(--acid);
  color: var(--acid);
}

/* === Scrollbar === */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--surface-2); border-radius: 8px; }
::-webkit-scrollbar-thumb:hover { background: var(--green-3); }


/* =========================================================================
   COSMIC WIZARD — overlay aesthetic
   ========================================================================= */

/* Grão sutil — apenas pra textura, sem cor */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: .035;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 .6 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}
body { background: #0a0a0a; }
body > * { position: relative; z-index: 2; }

/* === Tipografia: limpa, séria === */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  letter-spacing: -.025em;
  color: var(--bone);
}
.hero h1, .section-head h2, .display {
  font-family: var(--font-display) !important;
  font-weight: 600;
  letter-spacing: -.035em;
}
.hero h1 {
  font-size: clamp(2.4rem, 5.6vw, 4.2rem);
  line-height: 1.02;
  font-weight: 600;
}
.hero h1 em {
  font-style: normal;
  color: var(--acid);
  font-weight: 600;
  background: none;
  -webkit-background-clip: initial;
          background-clip: initial;
}
.section-head h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 600;
}
.section-head h2 em {
  font-style: normal;
  color: var(--acid);
}
p { font-family: var(--font-sans); }

/* Eyebrow — discreto, sem ornamentos */
.eyebrow {
  font-family: var(--font-sans);
  font-size: .72rem;
  font-weight: 500;
  color: var(--text-dim);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  text-shadow: none;
  box-shadow: none;
  letter-spacing: .08em;
  padding: 6px 14px;
  text-transform: none;
}
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--acid);
  margin-right: 8px;
  vertical-align: 2px;
}

/* Marca */
.brand {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: -.025em;
}
.brand__leaf { filter: none; color: var(--acid); }

/* Top bar */
.bar {
  background: var(--bg-2);
  color: var(--text-dim);
  font-family: var(--font-sans);
  font-size: .76rem;
  letter-spacing: 0;
  text-transform: none;
  border-bottom: 1px solid var(--line);
}

/* Header */
.header {
  background: rgba(10, 10, 10, .8);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid var(--line);
}
.nav a {
  font-family: var(--font-sans);
  font-size: .9rem;
  letter-spacing: 0;
  text-transform: none;
  font-weight: 500;
  color: var(--text-dim);
  transition: color .2s;
}
.nav a:hover { color: var(--text); text-shadow: none; }

/* ============= Botões — sóbrios ============= */
.btn {
  border-radius: 10px;
  border: 1px solid transparent;
  font-family: var(--font-sans);
  letter-spacing: 0;
  text-transform: none;
  font-size: .92rem;
  font-weight: 500;
  padding: 12px 22px;
  position: relative;
  transition: transform .15s, background .2s, border-color .2s, box-shadow .25s, color .2s;
}
.btn--primary {
  background: var(--acid);
  color: #0a0a0a;
  border-color: transparent;
  box-shadow: none;
  font-weight: 600;
}
.btn--primary:hover {
  background: var(--green-2);
  transform: translateY(-1px);
  filter: none;
  box-shadow: 0 8px 24px -10px rgba(177, 77, 255, .35);
}
.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--line-2);
}
.btn--ghost:hover {
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.22);
  color: var(--text);
  box-shadow: none;
  transform: translateY(-1px);
}
.btn--lg { padding: 14px 26px; font-size: .98rem; }
.btn--sm { padding: 8px 14px; font-size: .82rem; }
.btn--danger {
  background: rgba(232, 90, 107, .08);
  color: var(--danger);
  border-color: rgba(232, 90, 107, .3);
  box-shadow: none;
}
.btn--danger:hover { background: rgba(232, 90, 107, .15); border-color: var(--danger); }

/* Ícones de header */
.icon-btn {
  border-radius: 10px;
  border: 1px solid var(--line);
  background: transparent;
  width: 40px;
  height: 40px;
  color: var(--text-dim);
}
.icon-btn:hover {
  border-color: var(--line-2);
  color: var(--text);
  background: rgba(255,255,255,.03);
  box-shadow: none;
}
.icon-btn--cart .cart-count {
  background: var(--acid);
  color: #0a0a0a;
  border: 2px solid var(--bg);
  font-family: var(--font-sans);
  font-weight: 700;
}

/* ============= HERO ============= */
.hero { padding: 90px 0 110px; position: relative; }
.hero__bg { display: block; position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.hero__bg .blob { display: none; }
.hero__bg::before {
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  border-radius: 50%;
  filter: blur(140px);
  background: radial-gradient(circle, rgba(177, 77, 255, .10), transparent 70%);
  top: -200px; right: -240px;
}
.hero__bg::after { display: none; }

/* Hero copy + cards flutuantes */
.hero__inner { gap: 80px; align-items: center; }
.hero__copy { position: relative; }
.hero__art { position: relative; height: 480px; }

/* Cards flutuantes — vidro escuro neutro */
.floating-card {
  background: rgba(20, 20, 20, .78);
  border: 1px solid var(--line-2);
  border-radius: 14px;
  box-shadow: 0 24px 60px -20px rgba(0,0,0,.85), inset 0 1px 0 rgba(255,255,255,.04);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  z-index: 3;
}
.floating-card--1 { top: 20px;   left: 0;     }
.floating-card--2 { top: 70px;   right: 0;    z-index: 4; }
.floating-card--3 { bottom: 20px; left: 30%;  }
.fc__meta strong { font-family: var(--font-sans); font-weight: 600; letter-spacing: -.005em; }
.fc__price {
  background: var(--acid);
  color: #0a0a0a;
  border-radius: 8px;
  font-family: var(--font-sans);
  font-weight: 600;
  letter-spacing: 0;
  text-shadow: none;
  padding: 5px 10px;
  box-shadow: none;
}

/* Hero stats */
.hero__stats { border-top: 1px solid var(--line); padding-top: 22px; }
.hero__stats strong {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.85rem;
  letter-spacing: -.03em;
  color: var(--bone);
  background: none;
  -webkit-background-clip: initial;
          background-clip: initial;
}
.hero__stats span { font-family: var(--font-sans); font-size: .82rem; letter-spacing: 0; text-transform: none; color: var(--text-dim); }

/* ============= Categorias / cards / chips ============= */
.cat-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  transition: transform .2s, border-color .2s, background .2s;
}
.cat-card:hover {
  border-color: var(--line-2);
  background: var(--surface-2);
  transform: translateY(-2px);
  box-shadow: none;
}
.cat-card__title { font-family: var(--font-sans); font-weight: 600; letter-spacing: -.005em; color: var(--text); }
.cat-card__sub { font-family: var(--font-sans); color: var(--text-dim); font-size: .82rem; letter-spacing: 0; text-transform: none; }
.cat-card__emoji {
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 10px;
}

.chip {
  font-family: var(--font-sans);
  letter-spacing: 0;
  text-transform: none;
  font-size: .86rem;
  font-weight: 500;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: transparent;
  padding: 8px 14px;
  color: var(--text-dim);
  transition: all .15s;
}
.chip:hover { border-color: var(--line-2); color: var(--text); background: rgba(255,255,255,.03); }
.chip.active {
  background: var(--surface-2);
  color: var(--text);
  border-color: var(--line-2);
  box-shadow: none;
}
.pill {
  font-family: var(--font-sans);
  letter-spacing: 0;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: transparent;
  text-transform: none;
  font-size: .82rem;
  font-weight: 500;
  color: var(--text-dim);
}
.pill:hover { border-color: var(--line-2); color: var(--text); }
.pill.active {
  background: var(--surface-2);
  color: var(--text);
  border-color: var(--line-2);
  box-shadow: none;
}
.search-input {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 10px;
  transition: all .15s;
}
.search-input:focus-within {
  border-color: var(--line-2);
  background: var(--surface);
  box-shadow: 0 0 0 3px rgba(255,255,255,.04);
}
.search-input input { font-family: var(--font-sans); }

/* Cards de produto */
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px;
  transition: transform .2s, border-color .2s, box-shadow .25s;
}
.card::before { display: none; }
.card:hover {
  transform: translateY(-3px);
  border-color: var(--line-2);
  box-shadow: 0 20px 50px -20px rgba(0,0,0,.6);
}
.card__media { border-radius: 10px; border: 1px solid var(--line); background: var(--surface-2); }
.card__media::after { background: linear-gradient(to top, rgba(0,0,0,.4), transparent 60%); }
.card__title { font-family: var(--font-sans); font-weight: 600; letter-spacing: -.01em; font-size: 1.02rem; color: var(--text); }
.card__sub { font-family: var(--font-sans); color: var(--text-dim); font-size: .82rem; letter-spacing: 0; text-transform: none; }
.card__lab { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.card__lab b { color: var(--text); font-family: var(--font-sans); letter-spacing: 0; }
.card__price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--text);
  letter-spacing: -.02em;
}
.card__price small { color: var(--text-dim); font-family: var(--font-sans); font-size: .82rem; letter-spacing: 0; text-transform: none; font-weight: 400; }
.add-btn {
  background: var(--acid);
  border: none;
  border-radius: 8px;
  color: #0a0a0a;
  font-family: var(--font-sans);
  letter-spacing: 0;
  text-transform: none;
  font-size: .86rem;
  font-weight: 600;
  padding: 8px 14px;
  box-shadow: none;
  transition: background .15s, transform .15s;
}
.add-btn:hover { transform: translateY(-1px); background: var(--green-2); box-shadow: none; }

/* Badges */
.badge {
  border-radius: 6px;
  font-family: var(--font-sans);
  letter-spacing: 0;
  font-size: .7rem;
  border: 1px solid var(--line-2);
  padding: 3px 8px;
  text-transform: none;
  font-weight: 500;
  backdrop-filter: none;
}
.badge--sativa  { background: rgba(200, 168, 107, .12); color: var(--gold);     border-color: rgba(200, 168, 107, .3); }
.badge--indica  { background: rgba(122, 168, 212, .12); color: var(--info);     border-color: rgba(122, 168, 212, .3); }
.badge--hibrida { background: rgba(177, 77, 255, .12); color: var(--acid);     border-color: rgba(177, 77, 255, .3); }
.badge--new     { background: rgba(255,255,255,.05);    color: var(--text);     border-color: var(--line-2); }
.badge--low     { background: rgba(232, 90, 107, .12);  color: var(--danger);   border-color: rgba(232, 90, 107, .3); }

.effect-tag {
  font-family: var(--font-sans);
  text-transform: none;
  letter-spacing: 0;
  background: var(--surface-2);
  border: 1px solid var(--line);
  color: var(--text-dim);
  font-size: .78rem;
  border-radius: 6px;
  padding: 4px 10px;
}

/* About */
.about__panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: none;
}
.about__big {
  font-family: var(--font-display);
  font-weight: 700;
  font-style: normal;
  font-size: clamp(2rem, 4.4vw, 3.4rem);
  letter-spacing: -.03em;
  background: none;
  -webkit-background-clip: initial;
          background-clip: initial;
  color: var(--text);
}
.about__big em { color: var(--acid); font-style: normal; }
.bullets span {
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-family: var(--font-sans);
  font-size: .85rem;
  letter-spacing: 0;
  text-transform: none;
  color: var(--text);
  font-weight: 500;
}

/* FAQ */
.faq details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  transition: border-color .15s, background .15s;
}
.faq details:hover { border-color: var(--line-2); }
.faq details[open] {
  background: var(--surface-2);
  border-color: var(--line-2);
  box-shadow: none;
}
.faq summary { font-family: var(--font-sans); font-weight: 500; letter-spacing: -.005em; color: var(--text); }
.faq summary::after { color: var(--text-dim); text-shadow: none; }

/* Newsletter */
.newsletter {
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.newsletter__form {
  border-radius: 10px;
  background: var(--bg);
  border: 1px solid var(--line);
  padding: 4px;
  backdrop-filter: none;
}
.newsletter__form input { font-family: var(--font-sans); }
.newsletter__form:focus-within { border-color: var(--line-2); box-shadow: 0 0 0 3px rgba(255,255,255,.04); }

/* Footer */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--line);
}
.footer__grid h4 {
  font-family: var(--font-sans);
  color: var(--text);
  letter-spacing: 0;
  text-transform: none;
  font-size: .92rem;
  font-weight: 600;
}

/* Toast */
.toast {
  border-radius: 10px;
  border: 1px solid var(--line-2);
  background: var(--surface);
  font-family: var(--font-sans);
  font-weight: 500;
  letter-spacing: -.005em;
  box-shadow: 0 16px 40px -10px rgba(0,0,0,.7);
  backdrop-filter: blur(20px);
}

/* Age gate */
.age-gate { background: rgba(0,0,0,.92); backdrop-filter: blur(8px); }
.age-gate__card {
  background: var(--surface);
  border: 1px solid var(--line-2);
  border-radius: 16px;
  box-shadow: 0 40px 80px -20px rgba(0,0,0,.85);
}
.age-gate h2 { font-family: var(--font-display); font-style: normal; font-weight: 700; color: var(--text); letter-spacing: -.025em; }
.age-gate__logo { font-family: var(--font-display); font-style: normal; font-weight: 700; }

/* Cart drawer */
.cart__panel {
  background: var(--bg);
  border-left: 1px solid var(--line);
  backdrop-filter: none;
}
.cart__head { border-bottom: 1px solid var(--line); }
.cart__head h3 { font-family: var(--font-display); font-style: normal; font-weight: 700; letter-spacing: -.02em; color: var(--text); }
.cart-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 10px;
}
.cart-item:hover { border-color: var(--line-2); }
.cart-item__img { border-radius: 8px; border: 1px solid var(--line); }
.cart-item__title { font-family: var(--font-sans); font-weight: 500; letter-spacing: -.005em; color: var(--text); }
.cart-item__price { font-family: var(--font-sans); font-weight: 600; color: var(--text); }
.cart__row strong { font-family: var(--font-display); font-weight: 700; color: var(--text); font-size: 1.3rem; letter-spacing: -.02em; }

/* Product detail page */
.pd__media {
  border-radius: 14px;
  border: 1px solid var(--line);
  box-shadow: none;
  overflow: hidden;
}
.pd__title { text-shadow: none; color: var(--text); }
.pd__price { color: var(--text); font-family: var(--font-display); font-weight: 700; letter-spacing: -.03em; }
.pd__lab { background: var(--surface); border: 1px solid var(--line); border-radius: 12px; }
.pd__lab b { color: var(--text); font-family: var(--font-sans); letter-spacing: 0; }
.gram-picker {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: none;
}
.gram-picker__value {
  color: var(--acid);
  text-shadow: none;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -.02em;
}

/* Checkout */
.card-block {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
}
.field input, .field select, .field textarea {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 10px;
  font-family: var(--font-sans);
  transition: all .15s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--acid);
  background: var(--bg);
  box-shadow: 0 0 0 3px rgba(177, 77, 255, .12);
}
.pix-option {
  background: var(--surface-2);
  border: 1px solid var(--line-2);
  border-radius: 12px;
}
.pix-option__icon {
  background: var(--acid);
  border-radius: 10px;
  border: none;
  box-shadow: none;
}
.summary__row--total strong { font-family: var(--font-display); font-weight: 700; color: var(--text); letter-spacing: -.02em; }
.summary__img { border-radius: 8px; }

/* Payment / QR */
.qr-box {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: none;
}
.qr-box img { border-radius: 10px; background: #fff; }
.copy-row {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 10px;
}
.copy-row button {
  background: var(--acid);
  border: 0;
  border-radius: 8px;
  font-family: var(--font-sans);
  font-weight: 600;
  letter-spacing: 0;
  color: #0a0a0a;
  text-transform: none;
}
.step-list b {
  background: var(--surface-2);
  color: var(--text);
  font-family: var(--font-sans);
  font-weight: 600;
  border: 1px solid var(--line-2);
  border-radius: 50%;
}

/* Status timeline */
.status-badge {
  border-radius: 6px;
  font-family: var(--font-sans);
  letter-spacing: 0;
  font-size: .78rem;
  text-transform: none;
  font-weight: 500;
  border: 1px solid currentColor;
  padding: 4px 10px;
}

/* Admin login */
.login-card {
  background: var(--surface);
  border: 1px solid var(--line-2);
  border-radius: 16px;
  box-shadow: 0 40px 80px -20px rgba(0,0,0,.8);
}
.login-card h1 { font-family: var(--font-display); font-style: normal; font-weight: 700; letter-spacing: -.025em; color: var(--text); }

/* Responsivo hero */
@media (max-width: 900px) {
  .hero__art { height: 380px; }
  .hero { padding: 60px 0 80px; }
}

/* =========================================================================
   Ícones SVG (substituem emojis)
   ========================================================================= */

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -.02em;
}
.brand__logo {
  display: block;
  width: auto;
  height: 38px;
  filter: drop-shadow(0 0 18px rgba(177, 77, 255, .55));
  transition: filter .25s;
}
.brand:hover .brand__logo { filter: drop-shadow(0 0 26px rgba(177, 77, 255, .85)); }

/* Mantém compatibilidade caso .brand__leaf seja usado em outro lugar */
.brand__leaf {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--acid);
}
.brand__leaf img { height: 32px; width: auto; filter: drop-shadow(0 0 16px rgba(177,77,255,.6)); }

.age-gate__logo {
  display: flex !important;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}
.age-gate__logo img {
  height: 88px;
  width: auto;
  filter: drop-shadow(0 0 28px rgba(177, 77, 255, .75));
}
.age-gate__logo .leaf { display: none; }

.bar { display: flex; align-items: center; justify-content: center; gap: 10px; }
.bar__ico { width: 16px; height: 16px; color: var(--acid); flex-shrink: 0; }

.cat-card__emoji {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--acid);
  font-size: 0;
}
.cat-card__emoji svg { width: 26px; height: 26px; }

.bullets li { display: flex; align-items: center; gap: 12px; }
.bullets li .bullets__ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 9px;
  color: var(--acid);
  flex-shrink: 0;
  font-size: 0;
  padding: 0;
}
.bullets li .bullets__ico svg { width: 18px; height: 18px; }

.cart__empty { gap: 14px; }
.cart__empty span,
.cart__empty-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  color: var(--text-dim);
  font-size: 0;
  margin: 0 auto;
}
.cart__empty-ico svg { width: 44px; height: 44px; }

/* Status dot — indicador colorido em estoque */
.dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  margin-right: 8px;
  vertical-align: 1px;
}

/* =========================================================================
   Arte de produto (sem fotos reais)
   gradiente + grão pontilhado + ilustração SVG line-art + brilho
   ========================================================================= */
.card__media,
.pd__media,
.fc__img,
.cart-item__img,
.summary__img { position: relative; overflow: hidden; }

/* Quando há arte de produto, desativa o ::after de vignette antigo pra não duplicar */
.card__media:has(.prod-art)::after,
.pd__media:has(.prod-art)::after,
.fc__img:has(.prod-art)::after { display: none; }

.prod-art {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  pointer-events: none;
  border-radius: inherit;
}
.prod-art__grain {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.075) 1px, transparent 1.2px);
  background-size: 14px 14px;
  mix-blend-mode: overlay;
  opacity: .9;
  pointer-events: none;
}
.prod-art__svg {
  position: relative;
  width: 62%;
  max-width: 260px;
  aspect-ratio: 1;
  color: rgba(255, 255, 255, .92);
  filter: drop-shadow(0 10px 22px rgba(0,0,0,.5)) drop-shadow(0 0 8px rgba(255,255,255,.15));
}
.prod-art__svg svg { width: 100%; height: 100%; display: block; }
.prod-art__shine {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 80% at 28% 0%, rgba(255,255,255,.22), transparent 55%),
    linear-gradient(180deg, transparent 55%, rgba(0,0,0,.5));
  pointer-events: none;
}

/* Variações de tamanho automáticas: o SVG diminui ainda mais em containers pequenos */
.fc__img .prod-art__svg     { width: 58%; max-width: 130px; }
.cart-item__img .prod-art__svg { width: 76%; max-width: 70px; }
.summary__img .prod-art__svg   { width: 70%; max-width: 64px; }

/* Grão mais fino em thumbs pequenas */
.cart-item__img .prod-art__grain,
.summary__img .prod-art__grain { background-size: 8px 8px; }

/* Hover do card → arte ganha vida */
.card:hover .prod-art__svg { transform: scale(1.04); }
.prod-art__svg { transition: transform .35s cubic-bezier(.2,.7,.2,1); }
.pd__stock .ok .dot   { box-shadow: 0 0 8px currentColor; }
.pd__stock .warn .dot { box-shadow: 0 0 8px currentColor; }
.pd__stock .bad .dot  { box-shadow: 0 0 8px currentColor; }
.pd__stock .ok,
.pd__stock .warn,
.pd__stock .bad { display: inline-flex; align-items: center; }

/* Re-color stock indicators no dark sóbrio */
.pd__stock .ok   { color: var(--acid); }
.pd__stock .warn { color: var(--warn); }
.pd__stock .bad  { color: var(--danger); }

/* =========================================================================
   PAGAMENTO — layout mais legível em qualquer tela
   ========================================================================= */
.pay__title { margin: 0 0 6px; font-size: clamp(1.55rem, 4vw, 2.1rem); }
.pay__sub   { margin: 0 0 8px; font-size: 1rem; color: var(--text-dim); }
.pay__sub strong { color: var(--text); font-family: var(--font-display); }
.pay__amount { color: var(--acid); font-weight: 600; }
.pay__provider { margin: 0 0 22px; font-size: .82rem; color: var(--muted); }
.pay__steps-title { font-family: var(--font-display); margin: 0 0 14px; }
.pay__hint { font-size: .85rem; color: var(--muted); margin: 6px 0 0; }
.pay__summary { margin-top: 22px; }
.pay__done { text-align: center; padding: 40px 24px; }
.pay__done h2 {
  margin: 0 0 10px;
  color: var(--acid);
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}
.pay__done .btn { margin-top: 18px; }
.qr-img {
  background: #fff;
  border-radius: 16px;
  margin: 0 auto 18px;
  width: 280px;
  height: 280px;
  padding: 12px;
  max-width: 100%;
  display: block;
  object-fit: contain;
}
.qr-img--fallback {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--surface-2);
  color: var(--text);
  border: 1px dashed var(--line-2);
  padding: 24px;
  text-align: center;
}

/* =========================================================================
   MOBILE OPTIMIZATION — passada global
   - tap targets >= 44px
   - container/padding reduzido
   - tipografia fluida sem sumir
   - reaproveita as variáveis existentes
   ========================================================================= */

html { -webkit-text-size-adjust: 100%; }
button, a, input, select, textarea { -webkit-tap-highlight-color: rgba(177, 77, 255, .18); }
input, textarea, select { font-size: 16px; }  /* evita zoom automático no iOS */

@media (max-width: 900px) {
  section { padding: 60px 0; }
  .container { padding: 0 20px; }
  .hero { padding: 60px 0 70px; }
  .hero__inner { gap: 36px; }
  .checkout-grid { gap: 22px; }
  .footer { padding: 50px 0 24px; }
  .footer__grid { gap: 28px; margin-bottom: 32px; }
}

@media (max-width: 760px) {
  /* ===== Base ===== */
  .container { padding: 0 16px; }
  section { padding: 44px 0; }
  body { font-size: 15px; }

  /* ===== Tipografia ===== */
  h1 { font-size: clamp(1.9rem, 7vw, 2.4rem); line-height: 1.08; }
  h2 { font-size: clamp(1.35rem, 5.5vw, 1.7rem); line-height: 1.18; }
  h3 { font-size: 1.05rem; }
  p  { font-size: .94rem; line-height: 1.6; }
  .eyebrow { font-size: .68rem; padding: 5px 12px; margin-bottom: 14px; }

  /* ===== Header ===== */
  .header__inner { height: 60px; gap: 12px; }
  .brand__logo { height: 30px; }
  .icon-btn { width: 40px; height: 40px; }
  .icon-btn svg { width: 16px; height: 16px; }
  .header__actions { gap: 6px; }

  /* ===== Hero ===== */
  .hero { padding: 44px 0 56px; }
  .hero__inner { gap: 32px; }
  .hero h1 { font-size: clamp(2rem, 8vw, 2.6rem); }
  .hero__cta { gap: 10px; margin-top: 24px; }
  .hero__cta .btn { flex: 1; min-width: 0; }
  .hero__stats { gap: 18px; margin-top: 36px; padding-top: 18px; }
  .hero__stats strong { font-size: 1.45rem; }
  .hero__stats span { font-size: .76rem; }
  .hero__art { height: 320px; }
  .floating-card { width: 180px; padding: 12px; }
  .fc__img { height: 110px; margin-bottom: 10px; }
  .fc__meta strong { font-size: .88rem; }
  .fc__meta span { font-size: .76rem; }
  .fc__price { font-size: .78rem; padding: 4px 10px; }

  /* ===== Section heads ===== */
  .section-head { margin-bottom: 26px; }
  .section-head--row { gap: 14px; align-items: flex-start; }
  .section-head--row .filters { width: 100%; overflow-x: auto; padding-bottom: 4px; flex-wrap: nowrap; }
  .section-head--row .filters::-webkit-scrollbar { display: none; }

  /* ===== Categorias ===== */
  .cat-grid { gap: 12px; }
  .cat-grid--two { grid-template-columns: repeat(2, 1fr) !important; }
  .cat-card { padding: 18px 14px; border-radius: 12px; }
  .cat-card__emoji { width: 44px; height: 44px; margin-bottom: 8px; }
  .cat-card__emoji svg { width: 22px; height: 22px; }
  .cat-card__title { font-size: .95rem; }
  .cat-card__sub { font-size: .76rem; }

  /* ===== Filtros / busca ===== */
  .search-row { gap: 10px; margin-bottom: 22px; }
  .search-input { padding: 0 14px; border-radius: 10px; min-width: 0; flex: 1 1 100%; }
  .search-input input { padding: 12px 0; font-size: .94rem; }
  .strain-filter { flex-wrap: nowrap; overflow-x: auto; gap: 6px; padding-bottom: 4px; width: 100%; }
  .strain-filter::-webkit-scrollbar { display: none; }
  .strain-filter .pill { white-space: nowrap; flex-shrink: 0; }
  .pill, .chip { font-size: .8rem; padding: 7px 12px; }

  /* ===== Grid de produtos ===== */
  .grid { gap: 14px; grid-template-columns: repeat(2, 1fr) !important; }
  .card { padding: 10px; border-radius: 12px; }
  .card__media { height: 140px; margin-bottom: 10px; border-radius: 8px; }
  .card__badges { top: 16px; left: 16px; }
  .badge { font-size: .62rem; padding: 2px 6px; }
  .badge--new { top: 16px; right: 16px; }
  .card__title { font-size: .92rem; }
  .card__sub { font-size: .74rem; }
  .card__effects { margin: 6px 0 8px; gap: 4px; }
  .effect-tag { font-size: .66rem; padding: 2px 6px; }
  .card__lab { display: none; }
  .card__price { font-size: 1.05rem; }
  .card__price small { font-size: .68rem; }
  .card__foot { gap: 6px; }
  .add-btn { padding: 8px 10px; font-size: .76rem; border-radius: 8px; min-height: 36px; }
  .add-btn svg { width: 12px; height: 12px; }
  .gram-hint { display: none; }

  /* ===== Shop section ===== */
  .shop-section { margin-top: 32px; scroll-margin-top: 70px; }
  .shop-section__head { margin-bottom: 16px; }
  .shop-section__head h3 { font-size: 1.15rem; }
  .shop-section__head p { font-size: .85rem; }

  /* ===== Sobre ===== */
  .about__big { font-size: 3rem; }
  .about__panel { padding: 36px 28px; }
  .bullets { gap: 10px; }
  .bullets li { font-size: .9rem; gap: 10px; }
  .bullets li .bullets__ico { width: 30px; height: 30px; }
  .bullets li .bullets__ico svg { width: 16px; height: 16px; }

  /* ===== FAQ ===== */
  .faq details { padding: 0 18px; border-radius: 10px; }
  .faq summary { font-size: .92rem; padding: 14px 0; }
  .faq p { font-size: .9rem; }

  /* ===== Newsletter ===== */
  .newsletter__form { flex-direction: column; border-radius: 14px; padding: 8px; gap: 6px; }
  .newsletter__form input { width: 100%; padding: 10px 14px; }
  .newsletter__form .btn { width: 100%; }

  /* ===== Footer ===== */
  .footer__grid { grid-template-columns: 1fr 1fr !important; gap: 24px; margin-bottom: 28px; }
  .footer__grid h4 { font-size: .82rem; margin-bottom: 10px; }
  .footer__grid a { font-size: .86rem; padding: 3px 0; }
  .footer__tag { font-size: .85rem; max-width: 100%; }
  .footer__bottom small { font-size: .76rem; line-height: 1.5; }

  /* ===== Botões ===== */
  .btn { padding: 12px 18px; min-height: 44px; font-size: .92rem; }
  .btn--lg { padding: 14px 20px; font-size: .96rem; min-height: 48px; }
  .btn--sm { padding: 8px 14px; min-height: 36px; }

  /* ===== Carrinho drawer ===== */
  .cart__panel { max-width: 100%; }
  .cart__head { padding: 18px 18px; }
  .cart__items { padding: 16px; gap: 10px; }
  .cart-item { grid-template-columns: 54px 1fr auto; gap: 10px; padding: 10px; }
  .cart-item__img { width: 54px; height: 54px; }
  .cart-item__title { font-size: .88rem; }
  .cart-item__sub { font-size: .74rem; }
  .cart__foot { padding: 16px 18px; gap: 10px; }
  .cart__row strong { font-size: 1.15rem; }
  .qty button { width: 34px; height: 34px; font-size: 1.1rem; }
  .qty span { padding: 0 10px; font-size: .9rem; }

  /* ===== Age gate ===== */
  .age-gate { padding: 16px; }
  .age-gate__card { padding: 28px 22px; border-radius: 18px; }
  .age-gate__logo img { height: 64px; }
  .age-gate h2 { font-size: 1.25rem; margin-bottom: 10px; }
  .age-gate p { font-size: .88rem; margin-bottom: 20px; }
  .age-gate__actions { flex-direction: column; gap: 8px; }
  .age-gate__actions .btn { width: 100%; }
  .age-gate small { font-size: .72rem; }

  /* ===== Toast ===== */
  .toast { left: 16px; right: 16px; transform: translateY(20px); max-width: none; bottom: 16px; }
  .toast.show { transform: translateY(0); }

  /* ===== Página de produto ===== */
  .product-detail { padding: 24px 0 50px; }
  .breadcrumb { font-size: .78rem; margin-bottom: 16px; flex-wrap: wrap; }
  .pd { grid-template-columns: 1fr !important; gap: 22px; }
  .pd__media { height: 320px; border-radius: 16px; }
  .pd__title { font-size: clamp(1.6rem, 6vw, 2rem); }
  .pd__sub { font-size: .94rem; margin: 0 0 16px; }
  .pd__price { font-size: 1.9rem; }
  .pd__price small { font-size: .78rem; }
  .pd__lab { gap: 12px; padding: 14px; margin: 18px 0; flex-wrap: wrap; }
  .pd__lab b { font-size: 1.15rem; }
  .pd__lab span { font-size: .72rem; }
  .pd__effects { gap: 6px; margin-bottom: 16px; }
  .pd__desc { font-size: .92rem; }
  .pd__cta { flex-direction: column; align-items: stretch; gap: 10px; margin: 22px 0 14px; }
  .pd__cta .btn--primary { width: 100%; }
  .pd__cta .qty { align-self: flex-start; }
  .gram-picker { padding: 14px 16px; margin: 18px 0; border-radius: 12px; }
  .gram-picker__value { font-size: 1.15rem; }
  .gram-picker__chips { grid-template-columns: repeat(auto-fit, minmax(72px, 1fr)); gap: 8px; }
  .gram-chip { padding: 10px 6px; border-radius: 10px; min-height: 56px; }
  .gram-chip strong { font-size: 1rem; }
  .gram-chip span { font-size: .72rem; }

  /* ===== Checkout ===== */
  .checkout { padding: 26px 0 60px; }
  .checkout-grid { grid-template-columns: 1fr !important; gap: 16px; }
  .card-block { padding: 18px 16px; border-radius: 12px; margin-bottom: 12px; }
  .card-block h3 { font-size: 1rem; margin-bottom: 14px; }
  .row2, .row3 { grid-template-columns: 1fr !important; gap: 12px; }
  .field input, .field select, .field textarea { padding: 12px 14px; border-radius: 10px; }
  .field label { font-size: .76rem; }
  .delivery-note { padding: 12px 14px; }
  .delivery-note strong { font-size: .9rem; }
  .delivery-note span { font-size: .8rem; }
  .pix-option { padding: 14px; gap: 12px; }
  .pix-option__icon { width: 38px; height: 38px; font-size: .82rem; }
  .pix-option strong { font-size: .9rem; }
  .pix-option span { font-size: .78rem; }
  .summary { position: static; }
  .summary__items { max-height: 220px; }
  .summary__item { grid-template-columns: 40px 1fr auto; gap: 10px; }
  .summary__img { width: 40px; height: 40px; }
  .summary__title { font-size: .82rem; }
  .summary__qty { font-size: .7rem; }
  .summary__price { font-size: .88rem; }
  .summary__row { font-size: .88rem; }
  .summary__row--total strong { font-size: 1.2rem; }

  /* ===== Pagamento ===== */
  .pay { padding: 26px 0 60px; }
  .pay-grid { grid-template-columns: 1fr !important; gap: 18px; }
  .qr-box { padding: 22px 18px; border-radius: 14px; }
  .qr-img { width: 240px; height: 240px; padding: 10px; }
  .copy-row { flex-direction: column; gap: 0; }
  .copy-row input { padding: 12px 14px; text-align: center; border-bottom: 1px solid var(--line); }
  .copy-row button { padding: 12px 20px; min-height: 44px; width: 100%; }
  .step-list { gap: 12px; margin-top: 18px; }
  .step-list li { font-size: .88rem; gap: 10px; }
  .step-list b { flex: 0 0 24px; height: 24px; font-size: .78rem; }

  /* ===== Pedido / timeline ===== */
  .timeline { gap: 14px; margin: 22px 0; }
  .tl-item { grid-template-columns: 28px 1fr; gap: 10px; }
  .tl-info b { font-size: .88rem; }
  .tl-info span { font-size: .78rem; }
  .status-badge { font-size: .72rem; padding: 3px 8px; }
}

/* Telas muito pequenas (iPhone SE etc) */
@media (max-width: 380px) {
  .container { padding: 0 14px; }
  .hero h1 { font-size: 1.85rem; }
  .hero__cta { flex-direction: column; }
  .hero__cta .btn { width: 100%; }
  .hero__stats { gap: 14px; }
  .hero__stats strong { font-size: 1.3rem; }
  .grid { grid-template-columns: 1fr !important; }
  .card__media { height: 180px; }
  .cat-grid--two { grid-template-columns: 1fr !important; }
  .pd__media { height: 280px; }
  .qr-img { width: 220px; height: 220px; }
  .age-gate__card { padding: 24px 18px; }
  .footer__grid { grid-template-columns: 1fr !important; }
}

/* Modo paisagem em celular: reduz altura do hero */
@media (max-height: 520px) and (max-width: 900px) {
  .hero { padding: 30px 0 40px; }
  .hero__art { display: none; }
  .hero__stats { margin-top: 22px; }
}

/* Acessibilidade — respeita preferência de movimento */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}

/* =========================================================================
   LOADER — logo 777 com glow roxo neon sobre fundo preto
   ========================================================================= */
.app-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  background: #000;
  background-image:
    radial-gradient(ellipse at 50% 50%, rgba(108, 45, 191, .35) 0%, rgba(40, 17, 79, .1) 35%, #000 70%);
  opacity: 0;
  visibility: hidden;
  transition: opacity .45s ease, visibility .45s linear;
}
.app-loader.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.loader-stage {
  position: relative;
  width: clamp(220px, 28vw, 320px);
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* === Logo central === */
.loader-logo {
  position: relative;
  z-index: 4;
  width: 56%;
  height: auto;
  user-select: none;
  -webkit-user-drag: none;
  animation: logoBreath 2.4s ease-in-out infinite alternate;
  filter:
    drop-shadow(0 0 12px rgba(177, 77, 255, .95))
    drop-shadow(0 0 28px rgba(177, 77, 255, .65))
    drop-shadow(0 0 60px rgba(212, 77, 255, .4));
}

@keyframes logoBreath {
  0% {
    transform: scale(.97);
    filter:
      drop-shadow(0 0 10px rgba(177, 77, 255, .55))
      drop-shadow(0 0 22px rgba(177, 77, 255, .35))
      drop-shadow(0 0 48px rgba(212, 77, 255, .25));
  }
  100% {
    transform: scale(1.05);
    filter:
      drop-shadow(0 0 18px rgba(212, 77, 255, 1))
      drop-shadow(0 0 40px rgba(177, 77, 255, .85))
      drop-shadow(0 0 88px rgba(177, 77, 255, .55));
  }
}

/* === Anel cônico gradiente girando === */
.loader-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  pointer-events: none;
}
.loader-ring--outer {
  z-index: 2;
  background: conic-gradient(
    from 0deg,
    rgba(177, 77, 255, 0) 0%,
    rgba(177, 77, 255, .95) 18%,
    rgba(212, 77, 255, .35) 35%,
    rgba(177, 77, 255, 0) 50%,
    rgba(212, 77, 255, .85) 70%,
    rgba(177, 77, 255, 0) 100%
  );
  -webkit-mask: radial-gradient(circle, transparent 64%, #000 66%, #000 76%, transparent 78%);
          mask: radial-gradient(circle, transparent 64%, #000 66%, #000 76%, transparent 78%);
  animation: ringSpin 3.6s linear infinite;
  filter: drop-shadow(0 0 14px rgba(177, 77, 255, .55));
}
.loader-ring--inner {
  z-index: 1;
  inset: 14%;
  background: conic-gradient(
    from 180deg,
    rgba(212, 77, 255, 0) 0%,
    rgba(212, 77, 255, .7) 20%,
    rgba(177, 77, 255, 0) 50%,
    rgba(177, 77, 255, .55) 75%,
    rgba(212, 77, 255, 0) 100%
  );
  -webkit-mask: radial-gradient(circle, transparent 70%, #000 72%, #000 80%, transparent 82%);
          mask: radial-gradient(circle, transparent 70%, #000 72%, #000 80%, transparent 82%);
  animation: ringSpin 5s linear infinite reverse;
  opacity: .85;
}

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

/* === Pequena orb que segue o anel === */
.loader-stage {
  --orb-radius: clamp(78px, 11vw, 114px);
}
.loader-orb {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 14px;
  margin: -7px 0 0 -7px;
  border-radius: 50%;
  background: radial-gradient(circle, #ffffff 0%, #d49bff 35%, #b14dff 70%, rgba(177,77,255,0) 100%);
  box-shadow:
    0 0 12px rgba(212, 77, 255, .95),
    0 0 28px rgba(177, 77, 255, .65);
  animation: orbOrbit 3.6s linear infinite;
  z-index: 3;
}

@keyframes orbOrbit {
  from { transform: rotate(0deg)   translateX(var(--orb-radius)) rotate(0deg); }
  to   { transform: rotate(360deg) translateX(var(--orb-radius)) rotate(-360deg); }
}

/* === Ondas sonar expandindo === */
.loader-pulse {
  position: absolute;
  inset: 18%;
  border-radius: 50%;
  border: 2px solid rgba(177, 77, 255, .55);
  opacity: 0;
  animation: sonarPulse 2.4s ease-out infinite;
  z-index: 0;
}
.loader-pulse--1 { animation-delay: 0s;    }
.loader-pulse--2 { animation-delay: .8s;   }
.loader-pulse--3 { animation-delay: 1.6s;  }

@keyframes sonarPulse {
  0%   { opacity: .9; transform: scale(.55); border-color: rgba(212, 77, 255, .9); }
  60%  { opacity: .25; }
  100% { opacity: 0;  transform: scale(1.55); border-color: rgba(177, 77, 255, 0); }
}

@media (prefers-reduced-motion: reduce) {
  .loader-logo, .loader-ring, .loader-orb, .loader-pulse {
    animation: none !important;
  }
}

@media (max-width: 600px) {
  .loader-stage {
    width: clamp(180px, 70vw, 260px);
    --orb-radius: clamp(64px, 24vw, 92px);
  }
}
