:root {
  --pink: #e91e8c;
  --cyan: #00c4e0;
  --purple: #7b3fa8;
  --yellow: #f5c12e;
  --orange: #ff7a1a;
  --bg: #fff7fb;
  --bg-2: #ffeaf6;
  --bg-3: #e8fbff;
  --sand: #ffe08a;
  --camel: #e91e8c;
  --ink: #3a2463;
  --ink-soft: #5e4a7a;
  --muted: #8b7a9b;
  --line: rgba(58, 36, 99, 0.12);
  --white: #ffffff;
  --font-display: "Fredoka", "Nunito", system-ui, sans-serif;
  --font-body: "Nunito", system-ui, sans-serif;
  --header-h: 84px;
  --ease: cubic-bezier(.22, 1, .36, 1);
  --sticker: 0 5px 0 rgba(58, 36, 99, 0.08), 0 12px 28px rgba(233, 30, 140, 0.14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(620px 380px at 100% -8%, rgba(233, 30, 140, 0.18), transparent 58%),
    radial-gradient(540px 360px at 0% 12%, rgba(0, 196, 224, 0.16), transparent 55%),
    radial-gradient(480px 280px at 70% 100%, rgba(245, 193, 46, 0.2), transparent 50%),
    radial-gradient(420px 260px at 8% 88%, rgba(123, 63, 168, 0.12), transparent 52%),
    var(--bg);
  min-height: 100vh;
  line-height: 1.5;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
.skip {
  position: absolute; left: -999px; top: 0;
}
.skip:focus { left: 12px; top: 12px; background: #fff; padding: .5rem 1rem; z-index: 100; }
.boot {
  min-height: 60vh;
  display: grid;
  place-items: center;
  color: var(--muted);
  letter-spacing: .04em;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, #fff 88%, transparent);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), background .3s var(--ease), box-shadow .3s var(--ease);
}
.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 8px 24px rgba(233, 30, 140, 0.08);
}
.header-bar {
  max-width: 1280px;
  margin: 0 auto;
  min-height: var(--header-h);
  padding: 0 1.25rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
}
.logo {
  justify-self: center;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.2vw, 1.85rem);
  font-weight: 700;
  letter-spacing: .01em;
  display: flex;
  align-items: center;
  gap: .6rem;
}
.logo img {
  height: 62px;
  width: auto;
  filter: drop-shadow(0 4px 10px rgba(233, 30, 140, 0.18));
}
.header-right {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.header-nav {
  display: flex;
  gap: 1.1rem;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.header-nav a { opacity: .72; transition: opacity .2s; }
.header-nav a:hover, .header-nav a.is-on { opacity: 1; }
.header-nav a.is-on { color: var(--pink); }
.icon-btn {
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  cursor: pointer;
  position: relative;
  transition: background .2s;
}
.icon-btn:hover { background: rgba(233, 30, 140, .08); }
.bag-count {
  position: absolute;
  top: 4px; right: 2px;
  min-width: 18px; height: 18px;
  border-radius: 999px;
  background: var(--pink);
  color: #fff;
  font-size: .65rem;
  font-weight: 800;
  display: grid;
  place-items: center;
  padding: 0 4px;
  box-shadow: 0 2px 0 rgba(58, 36, 99, 0.12);
}
.search-panel {
  display: flex;
  gap: .75rem;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.25rem 1rem;
}
.search-panel[hidden] { display: none !important; }
.search-panel input {
  flex: 1;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 999px;
  padding: .85rem 1.2rem;
  outline: none;
}
.text-btn {
  border: 0;
  background: transparent;
  font-weight: 600;
  cursor: pointer;
  color: var(--ink-soft);
}

/* Hero */
.hero {
  position: relative;
  min-height: min(92vh, 820px);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
}
.hero-visual {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(115deg, rgba(58, 36, 99, .55) 0%, rgba(233, 30, 140, .32) 46%, rgba(0, 196, 224, .28) 100%),
    var(--hero-img, linear-gradient(160deg, #7b3fa8, #e91e8c 42%, #00c4e0 78%, #f5c12e));
  background-size: cover;
  background-position: center 30%;
  transform: scale(1.04);
  animation: heroDrift 18s var(--ease) infinite alternate;
}
.hero-visual::after {
  content: "";
  position: absolute;
  inset: auto -40px -80px auto;
  width: 280px;
  height: 280px;
  background:
    radial-gradient(circle at 30% 30%, var(--yellow) 0 28%, transparent 29%),
    radial-gradient(circle at 70% 42%, var(--pink) 0 22%, transparent 23%),
    radial-gradient(circle at 48% 72%, var(--cyan) 0 18%, transparent 19%);
  opacity: .7;
  filter: blur(2px);
  pointer-events: none;
}
@keyframes heroDrift {
  from { transform: scale(1.04) translate3d(0,0,0); }
  to { transform: scale(1.1) translate3d(-1.5%, -1%, 0); }
}
.hero-inner {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 5.5rem 1.25rem 4rem;
}
.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 650;
  margin: 0 0 1rem;
  opacity: .95;
  animation: rise .9s var(--ease) both;
}
.hero-logo {
  height: 72px;
  width: auto;
  margin: 0 0 .85rem;
  filter: drop-shadow(0 8px 18px rgba(0,0,0,.22));
  animation: rise .9s var(--ease) both;
}
.hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.6rem, 8vw, 5.4rem);
  line-height: .98;
  letter-spacing: -.02em;
  max-width: 14ch;
  margin: 0 0 1.25rem;
  white-space: pre-line;
  animation: rise 1s .08s var(--ease) both;
}
.hero-lead {
  max-width: 28rem;
  font-size: 1.05rem;
  opacity: .9;
  margin: 0 0 2rem;
  animation: rise 1s .16s var(--ease) both;
}
@keyframes rise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  border: 3px solid #fff;
  border-radius: 999px;
  padding: .95rem 1.55rem;
  font-weight: 800;
  letter-spacing: .02em;
  cursor: pointer;
  box-shadow: var(--sticker);
  transition: transform .25s var(--ease), background .25s, color .25s, box-shadow .25s;
}
.btn:hover { transform: translateY(-2px) rotate(-0.4deg); }
.btn-light { background: #fff; color: var(--pink); }
.btn-dark { background: var(--pink); color: #fff; }
.btn-line {
  background: rgba(255,255,255,.16);
  color: #fff;
  border-color: rgba(255,255,255,.7);
  box-shadow: 0 6px 18px rgba(58, 36, 99, 0.16);
}
.btn-block { width: 100%; }
.btn-row { display: flex; flex-wrap: wrap; gap: .75rem; animation: rise 1s .22s var(--ease) both; }

/* Marquee / faixa */
.marquee {
  overflow: hidden;
  border-block: 3px solid #fff;
  background: linear-gradient(90deg, var(--yellow), var(--pink) 35%, var(--cyan) 70%, var(--purple));
  padding: .9rem 0;
  box-shadow: 0 8px 22px rgba(233, 30, 140, 0.12);
}
.marquee-track {
  display: flex;
  gap: 3rem;
  width: max-content;
  animation: marquee 28s linear infinite;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 2px 0 rgba(58, 36, 99, 0.18);
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Sections */
.section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 4.5rem 1.25rem;
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
  margin-bottom: 2rem;
}
.section-kicker {
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--pink);
  margin: 0 0 .4rem;
}
.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.1rem);
  font-weight: 700;
  margin: 0;
  letter-spacing: -.02em;
  line-height: 1.05;
}
.section-head p {
  margin: .55rem 0 0;
  color: var(--muted);
  max-width: 34rem;
}
.link-more {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  white-space: nowrap;
}

/* Categories — compact photo tiles (row + scroll no celular) */
.section-cats {
  padding-top: 2.6rem;
  padding-bottom: 1.6rem;
}
.section-cats .section-head {
  margin-bottom: 1.15rem;
}
.section-cats .section-head p { display: none; }
.cat-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: .85rem 1rem;
}
.cat-card {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  font: inherit;
  color: inherit;
  background: transparent;
  border: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .55rem;
  min-width: 0;
  transition: transform .25s var(--ease);
}
.cat-card:hover { transform: translateY(-2px); }
.cat-card-media {
  display: block;
  width: 100%;
  max-width: 132px;
  aspect-ratio: 1;
  border-radius: 22px;
  overflow: hidden;
  background: #f4eef8;
  box-shadow: 0 6px 16px rgba(58, 36, 99, 0.08);
}
.cat-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cat-card-ph {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--pink);
  opacity: .5;
}
.cat-card strong {
  font-family: var(--font-body);
  font-size: .82rem;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.2;
  text-align: center;
  max-width: 100%;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Filters + catalog */
.section-colecao { padding-top: 2.2rem; }
.toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 1.35rem;
}
.toolbar select {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: .5rem .9rem;
  outline: none;
  font-size: .82rem;
  font-weight: 700;
}

.prod-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.75rem 1.1rem;
}
.prod-card {
  display: flex;
  flex-direction: column;
  gap: .7rem;
  cursor: pointer;
  background: transparent;
  min-width: 0;
}
.prod-media {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: 6px;
  overflow: hidden;
  background: #f3f1f4;
}
.prod-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 12%;
  transition: transform .55s var(--ease);
}
.prod-card:hover .prod-media img { transform: scale(1.04); }
.prod-badges {
  position: absolute;
  top: .65rem;
  left: .65rem;
  display: flex;
  gap: .3rem;
  z-index: 1;
}
.badge {
  background: #fff;
  color: var(--ink);
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .28rem .48rem;
  border-radius: 4px;
}
.badge-sale { background: var(--pink); color: #fff; }
.prod-info h3 {
  margin: 0;
  font-family: var(--font-body);
  font-size: .88rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--ink);
}
.prod-price {
  margin-top: .2rem;
  font-weight: 800;
  font-size: .92rem;
  display: flex;
  gap: .4rem;
  align-items: baseline;
  color: var(--ink);
}
.prod-price s {
  color: var(--muted);
  font-weight: 600;
  font-size: .8rem;
}

/* Editorial banner */
.editorial {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.25rem 1rem;
}
.editorial-frame {
  position: relative;
  min-height: min(62vh, 560px);
  border-radius: 36px;
  overflow: hidden;
  color: #fff;
  display: grid;
  align-items: end;
  border: 4px solid #fff;
  box-shadow: var(--sticker);
}
.editorial-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(58, 36, 99, .08), rgba(233, 30, 140, .62)),
    var(--img, linear-gradient(135deg, var(--purple), var(--cyan)));
  background-size: cover;
  background-position: center;
}
.editorial-copy {
  position: relative;
  z-index: 1;
  padding: 2.5rem 1.5rem;
  max-width: 28rem;
}
.editorial-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  margin: 0 0 .75rem;
  line-height: 1;
}

/* CTA */
.cta {
  margin-top: 2rem;
  padding: 4.5rem 1.25rem;
  text-align: center;
  background: linear-gradient(180deg, transparent, rgba(233, 30, 140, .1));
}
.cta h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin: 0 0 .75rem;
}
.cta p { color: var(--ink-soft); margin: 0 0 1.5rem; }

.site-footer {
  border-top: 1px solid var(--line);
  max-width: 1280px;
  margin: 0 auto;
  padding: 2.5rem 1.25rem 3rem;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 1.5rem;
  color: var(--ink-soft);
  font-size: .92rem;
}
.site-footer strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--ink);
  margin-bottom: .4rem;
}
.footer-logo {
  height: 72px;
  width: auto;
  margin-bottom: .35rem;
  filter: drop-shadow(0 4px 10px rgba(233, 30, 140, 0.16));
}

/* Sheets / modal */
.sheet[hidden], .modal[hidden] { display: none !important; }
.sheet {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: flex;
  justify-content: flex-end;
}
.sheet-backdrop, .modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(58, 36, 99, .45);
  animation: fade .25s ease;
}
@keyframes fade { from { opacity: 0; } to { opacity: 1; } }
.sheet-panel {
  position: relative;
  width: min(420px, 100%);
  height: 100%;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  box-shadow: -20px 0 60px rgba(233, 30, 140, .16);
  animation: slide .35s var(--ease);
}
.sheet-panel-wide { width: min(920px, 100%); }
@keyframes slide { from { transform: translateX(24px); opacity: .6; } to { transform: none; opacity: 1; } }
.sheet-head, .sheet-foot, .modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.2rem;
  border-bottom: 1px solid var(--line);
}
.sheet-foot {
  border-bottom: 0;
  border-top: 1px solid var(--line);
  flex-direction: column;
  gap: .85rem;
  align-items: stretch;
}
.sheet-body { padding: 1rem 1.2rem; overflow: auto; flex: 1; }
.sheet-close { position: absolute; top: .7rem; right: .7rem; z-index: 2; background: rgba(255,255,255,.88); }
.total-line { display: flex; justify-content: space-between; font-size: 1.05rem; }
.cart-item {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: .85rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}
.cart-item img {
  width: 72px;
  height: 90px;
  object-fit: cover;
  border-radius: 16px;
  background: var(--bg-2);
}
.cart-item h4 { margin: 0; font-family: var(--font-display); font-size: 1.15rem; }
.qty-row { display: flex; align-items: center; gap: .45rem; margin-top: .45rem; }
.qty-row button {
  width: 28px; height: 28px; border-radius: 999px; border: 1px solid var(--line); background: var(--white); cursor: pointer;
}

/* PDP */
.pdp {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  min-height: 100%;
}
.pdp-gallery {
  background: var(--bg-2);
  min-height: 420px;
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: .6rem;
  padding: .7rem;
}
.pdp-thumbs {
  display: flex;
  flex-direction: column;
  gap: .45rem;
  overflow-y: auto;
  max-height: min(72vh, 640px);
}
.pdp-thumbs button {
  width: 68px;
  height: 86px;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  cursor: pointer;
  flex-shrink: 0;
}
.pdp-thumbs button.is-on { border-color: var(--pink); }
.pdp-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 0;
}
.pdp-main {
  min-height: 420px;
  border-radius: 18px;
  overflow: hidden;
  background: #f3f1f4;
}
.pdp-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 12%;
  min-height: min(72vh, 640px);
}
.pdp-gallery-single {
  grid-template-columns: 1fr;
  padding: 0;
}
.pdp-gallery-single .pdp-main { border-radius: 0; min-height: 520px; }
.pdp-info { padding: 2.5rem 1.75rem 2rem; }
.pdp-info h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.8rem);
  margin: .4rem 0 0.75rem;
  line-height: 1.05;
}
.pdp-desc { color: var(--ink-soft); margin: 1rem 0 1.25rem; }
.size-grid {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  margin: .75rem 0 1.25rem;
}
.size-btn {
  min-width: 46px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--white);
  cursor: pointer;
  font-weight: 700;
}
.size-btn.is-on {
  background: var(--pink);
  color: #fff;
  border-color: var(--pink);
}
.pdp-meta-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  color: var(--muted);
  font-size: .9rem;
}
.pdp-meta-list li { padding: .2rem 0; }

.modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 1rem;
}
.modal-card {
  position: relative;
  width: min(560px, 100%);
  background: var(--bg);
  border-radius: 28px;
  border: 3px solid #fff;
  max-height: 92vh;
  overflow: auto;
  box-shadow: var(--sticker);
}
.checkout-form { padding: 0 1.2rem 1.4rem; }
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
  margin-bottom: 1rem;
}
.form-grid label {
  display: grid;
  gap: .35rem;
  font-size: .82rem;
  font-weight: 600;
}
.form-grid .span-2 { grid-column: span 2; }
.form-grid input,
.form-grid select,
.form-grid textarea {
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 16px;
  padding: .75rem .85rem;
  outline: none;
}
.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
  border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(233, 30, 140, 0.15);
}

.empty {
  color: var(--muted);
  padding: 2rem 0;
  text-align: center;
}

.top-notice {
  background: linear-gradient(90deg, var(--pink), var(--purple) 50%, var(--cyan));
  color: #fff;
  text-align: center;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .02em;
  padding: .55rem 1rem;
}
.benefits {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  padding: 2.5rem clamp(1rem, 4vw, 3.5rem);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.benefit {
  display: grid;
  gap: .35rem;
}
.benefit strong {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
}
.benefit span { color: var(--muted); font-size: .88rem; }
.track-teaser {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 3rem clamp(1rem, 4vw, 3.5rem);
  background: linear-gradient(135deg, #ffeaf6, #e8fbff 55%, #fff4cc);
  border-block: 3px solid #fff;
}
.track-teaser h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin: .2rem 0 .4rem;
  font-weight: 700;
}
.track-teaser p { color: var(--muted); max-width: 36ch; }
.frete-options { display: grid; gap: .5rem; }
.frete-opt {
  display: flex !important;
  align-items: center;
  gap: .65rem;
  padding: .7rem .85rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  cursor: pointer;
  font-weight: 500 !important;
}
.frete-opt:has(input:checked) {
  border-color: var(--pink);
  background: #fff0f8;
}
.checkout-summary {
  border-top: 1px solid var(--line);
  padding: .85rem 0 1.1rem;
  display: grid;
  gap: .4rem;
}
.sum-line {
  display: flex;
  justify-content: space-between;
  font-size: .92rem;
}
.sum-total { font-size: 1.05rem; margin-top: .25rem; }
.track-card {
  background: var(--white);
  border: 3px solid #fff;
  box-shadow: var(--sticker);
  border-radius: 18px;
  padding: 1rem;
  display: grid;
  gap: .35rem;
  font-size: .92rem;
}
.text-btn {
  background: none;
  border: 0;
  color: var(--ink);
  text-decoration: underline;
  cursor: pointer;
  padding: 0;
  font: inherit;
}
.muted { color: var(--muted); font-size: .88rem; }

@media (max-width: 1100px) {
  .prod-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 820px) {
  .header-nav { display: none; }
  .header-bar { grid-template-columns: auto 1fr auto; }
  .logo { justify-self: start; }
  .logo img { height: 50px; }
  .hero-logo { height: 68px; }
  .prod-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .prod-grid { gap: 1.25rem .7rem; }
  .prod-info h3 { font-size: .8rem; }
  .section-cats { padding-top: 1.6rem; padding-bottom: 1rem; }
  .cat-grid {
    display: flex;
    gap: .75rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 2px 1.25rem .35rem;
    margin-inline: -1.25rem;
  }
  .cat-grid::-webkit-scrollbar { display: none; }
  .cat-card {
    flex: 0 0 86px;
    scroll-snap-align: start;
  }
  .cat-card-media {
    max-width: none;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(58, 36, 99, 0.1);
  }
  .cat-card strong { font-size: .72rem; }
  .pdp { grid-template-columns: 1fr; }
  .pdp-gallery {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
  }
  .pdp-thumbs {
    flex-direction: row;
    order: 2;
    max-height: none;
    overflow-x: auto;
  }
  .pdp-main { order: 1; }
  .pdp-main img { min-height: 360px; }
  .site-footer { grid-template-columns: 1fr; }
  .hero { min-height: 78vh; }
  .benefits { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .track-teaser { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 520px) {
  .form-grid { grid-template-columns: 1fr; }
  .form-grid .span-2 { grid-column: span 1; }
  .benefits { grid-template-columns: 1fr; }
}

.account-dot {
  position: absolute;
  right: 2px;
  top: 2px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--pink);
  color: #fff;
  font-size: .62rem;
  font-weight: 800;
  display: grid;
  place-items: center;
  line-height: 1;
}
.icon-btn.is-on { background: #ffeaf6; }

.full-screen {
  position: fixed;
  inset: 0;
  z-index: 120;
  background: var(--bg);
  overflow: auto;
}
.full-screen[hidden] { display: none !important; }
.full-screen .btn-line {
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--line);
  box-shadow: none;
}
.cko-bar {
  position: sticky;
  top: 0;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  min-height: 72px;
  padding: .75rem 1.25rem;
  background: color-mix(in srgb, #fff 90%, transparent);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.cko-bar .text-btn:first-child { justify-self: start; }
.cko-logo { height: 48px; width: auto; justify-self: center; }
.cko-secure, .cko-acc-title { justify-self: end; font-size: .78rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.cko-layout {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.5rem 1.25rem 3rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 1.75rem;
  align-items: start;
}
.cko-steps {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: .65rem 1rem;
  padding: 0;
  margin: 0 0 1.25rem;
}
.cko-step {
  display: flex;
  align-items: center;
  gap: .45rem;
  font-size: .82rem;
  font-weight: 700;
  color: var(--muted);
}
.cko-step span {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fff;
  border: 1px solid var(--line);
  font-size: .75rem;
}
.cko-step.is-on { color: var(--ink); }
.cko-step.is-on span { background: var(--pink); color: #fff; border-color: var(--pink); }
.cko-step.is-done span { background: var(--cyan); color: #fff; border-color: var(--cyan); }
.cko-card {
  background: #fff;
  border: 3px solid #fff;
  box-shadow: var(--sticker);
  border-radius: 24px;
  padding: 1.35rem 1.25rem 1.5rem;
}
.cko-card h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  margin: 0 0 .5rem;
}
.cko-card h3 { margin: 0 0 .75rem; }
.cko-auth-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin: 1.1rem 0 1rem;
}
.cko-auth {
  display: grid;
  gap: .7rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--bg-2);
}
.cko-auth label, .cko-card label {
  display: grid;
  gap: .35rem;
  font-size: .82rem;
  font-weight: 700;
}
.cko-auth input, .cko-card input, .cko-card select, .cko-card textarea {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 14px;
  padding: .75rem .85rem;
  outline: none;
}
.cko-nav {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  margin-top: 1.1rem;
}
.check-line {
  display: flex !important;
  flex-direction: row !important;
  align-items: center;
  gap: .55rem;
  font-weight: 600 !important;
}
.cko-saved { display: grid; gap: .55rem; margin: .85rem 0 1rem; }
.addr-chip, .pay-card {
  text-align: left;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 16px;
  padding: .8rem 1rem;
  cursor: pointer;
  display: grid;
  gap: .15rem;
}
.addr-chip span, .pay-card span { color: var(--muted); font-size: .82rem; font-weight: 500; }
.addr-chip.is-on, .pay-card.is-on { border-color: var(--pink); background: #fff0f8; }
.pay-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .65rem; margin: 1rem 0; }
.cko-aside { position: sticky; top: 92px; }
.cko-bag {
  background: #fff;
  border-radius: 22px;
  border: 3px solid #fff;
  box-shadow: var(--sticker);
  padding: 1.1rem;
  display: grid;
  gap: .7rem;
}
.cko-bag h3 { margin: 0; font-family: var(--font-display); }
.cko-bag-item { display: grid; grid-template-columns: 56px 1fr; gap: .7rem; align-items: center; }
.cko-bag-item img, .cko-bag-ph { width: 56px; height: 72px; object-fit: cover; border-radius: 10px; background: var(--bg-2); }
.cko-bag-item span { display: block; color: var(--muted); font-size: .8rem; }
.cko-hint { font-size: .88rem; color: var(--purple); }
.cko-done { text-align: center; }
.cko-total { font-family: var(--font-display); font-size: 2rem; margin: .4rem 0 1rem; }
.pix-box { background: var(--bg-3); border-radius: 16px; padding: 1rem; margin: 1rem 0; }
.pix-box code { display: block; margin: .4rem 0 .8rem; word-break: break-all; }
.acc-gate {
  max-width: 1180px;
  margin: 0 auto;
  min-height: calc(100vh - 72px);
  padding: 2.25rem 2.5rem 3.5rem;
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(340px, 460px);
  gap: 3.5rem;
  align-items: center;
}
.acc-gate-brand {
  max-width: 34rem;
}
.acc-gate-logo {
  height: 72px;
  width: auto;
  margin-bottom: 1.4rem;
  filter: drop-shadow(0 4px 10px rgba(233, 30, 140, 0.16));
}
.acc-gate-brand h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.4vw, 3rem);
  line-height: 1.12;
  margin: .2rem 0 1rem;
  font-weight: 700;
}
.acc-gate-brand > p {
  color: var(--ink-soft);
  font-size: 1.05rem;
  max-width: 38ch;
  margin: 0 0 1.75rem;
}
.acc-gate-perks {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: .9rem;
}
.acc-gate-perks li {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: .85rem;
  align-items: center;
}
.acc-gate-perks span {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fff;
  border: 2px solid #fff;
  box-shadow: var(--sticker);
  font-size: .78rem;
  font-weight: 800;
  color: var(--pink);
}
.acc-gate-perks strong { display: block; font-size: .95rem; }
.acc-gate-perks em {
  font-style: normal;
  color: var(--muted);
  font-size: .84rem;
}
.acc-gate-panel {
  background: #fff;
  border: 3px solid #fff;
  box-shadow: var(--sticker);
  border-radius: 28px;
  padding: 2rem 1.85rem 2.15rem;
}
.acc-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  padding: 4px;
  margin-bottom: 1.35rem;
  background: var(--bg-2);
  border-radius: 999px;
}
.acc-tab {
  border: 0;
  background: transparent;
  border-radius: 999px;
  padding: .7rem 1rem;
  font-weight: 800;
  cursor: pointer;
  color: var(--muted);
}
.acc-tab.is-on {
  background: #fff;
  color: var(--ink);
  box-shadow: 0 4px 14px rgba(58, 36, 99, 0.08);
}
.acc-form {
  display: grid;
  gap: .85rem;
}
.acc-form[hidden] { display: none !important; }
.acc-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .85rem;
}
.acc-form label {
  display: grid;
  gap: .35rem;
  font-size: .82rem;
  font-weight: 700;
}
.acc-form input {
  border: 1px solid var(--line);
  background: var(--bg);
  border-radius: 14px;
  padding: .85rem .95rem;
  outline: none;
}
.acc-form input:focus {
  border-color: var(--pink);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(233, 30, 140, 0.14);
}
.acc-form .btn { margin-top: .35rem; }
.acc-form-note {
  margin: .15rem 0 0;
  text-align: center;
  color: var(--muted);
  font-size: .84rem;
}
.acc-msg {
  margin: 0 0 1rem;
  padding: .7rem .85rem;
  border-radius: 12px;
  background: #fff1f2;
  color: #be123c;
  font-size: .88rem;
  font-weight: 700;
}
.acc-layout {
  max-width: 1120px;
  margin: 0 auto;
  padding: 1.75rem 2rem 3.5rem;
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 1.75rem;
  align-items: start;
}
.acc-side {
  background: #fff;
  border: 3px solid #fff;
  box-shadow: var(--sticker);
  border-radius: 24px;
  padding: 1.2rem 1rem 1.15rem;
  display: grid;
  gap: .25rem;
  align-content: start;
  position: sticky;
  top: 92px;
}
.acc-who { display: flex; gap: .75rem; align-items: center; padding: .15rem .35rem .85rem; }
.acc-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--pink); color: #fff;
  display: grid; place-items: center; font-weight: 800; flex-shrink: 0;
}
.acc-who span:last-child { display: block; color: var(--muted); font-size: .82rem; word-break: break-word; }
.acc-stats {
  margin: 0 .35rem .7rem;
  color: var(--muted);
  font-size: .82rem;
  font-weight: 700;
}
.acc-nav-list { display: grid; gap: 2px; }
.acc-nav {
  text-align: left;
  border: 0;
  background: transparent;
  padding: .7rem .9rem;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 700;
}
.acc-nav.is-on { background: #ffeaf6; color: var(--pink); }
.acc-main .cko-card { min-height: 280px; }
.order-card, .addr-row, .coupon-card {
  border-top: 1px solid var(--line);
  padding: .9rem 0;
}
.order-card ul { margin: .4rem 0 0; padding-left: 1.1rem; color: var(--muted); }
.addr-row { display: flex; justify-content: space-between; gap: 1rem; align-items: flex-start; }
.addr-actions { display: grid; gap: .35rem; justify-items: end; }
.fav-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: .85rem; }
.fav-card { border: 0; background: transparent; cursor: pointer; text-align: left; padding: 0; }
.fav-card img { width: 100%; aspect-ratio: 3/4; object-fit: cover; border-radius: 12px; margin-bottom: .4rem; }
.badge { display: inline-block; background: var(--yellow); color: var(--ink); font-size: .7rem; font-weight: 800; border-radius: 999px; padding: .12rem .45rem; }

@media (max-width: 860px) {
  .cko-layout, .cko-auth-grid { grid-template-columns: 1fr; }
  .cko-aside { position: static; }
  .cko-bar { grid-template-columns: 1fr auto; }
  .cko-secure { display: none; }
  .pay-grid, .fav-grid { grid-template-columns: 1fr 1fr; }
  .acc-gate {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 1.25rem 1.15rem 2.5rem;
    gap: 1.5rem;
    align-items: start;
  }
  .acc-gate-brand { max-width: none; }
  .acc-gate-logo { height: 56px; }
  .acc-gate-brand h2 { font-size: 1.85rem; }
  .acc-gate-perks { display: none; }
  .acc-layout {
    grid-template-columns: 1fr;
    padding: 1.15rem 1.15rem 2.5rem;
  }
  .acc-side { position: static; }
  .acc-nav-list {
    display: flex;
    gap: .35rem;
    overflow-x: auto;
    padding-bottom: .2rem;
  }
  .acc-nav { white-space: nowrap; }
  .acc-form-row { grid-template-columns: 1fr; }
}

/* Shop / catálogo */
.shop {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1.6rem 1.25rem 2.5rem;
}
.shop-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4.2vw, 3.4rem);
  margin: .15rem 0 .45rem;
  line-height: 1.05;
}
.shop-lead {
  margin: 0 0 1.15rem;
  color: var(--ink-soft);
  max-width: 42rem;
}
.shop-search-form {
  display: flex;
  align-items: center;
  gap: .55rem;
  max-width: 720px;
  background: #fff;
  border: 3px solid #fff;
  box-shadow: var(--sticker);
  border-radius: 999px;
  padding: .28rem .28rem .28rem 1.05rem;
}
.shop-search-form svg { flex-shrink: 0; color: var(--pink); }
.shop-search-form input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: none;
  background: transparent;
  padding: .7rem 0;
  font-weight: 700;
}
.shop-search-form .btn { border-radius: 999px; padding: .7rem 1.2rem; }
.shop-bar {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-wrap: wrap;
  margin: 1.5rem 0 .25rem;
}
.shop-count {
  margin: 0 auto 0 0;
  font-weight: 800;
  color: var(--ink-soft);
}
.shop-sort {
  display: flex;
  align-items: center;
  gap: .45rem;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
}
.shop-sort select {
  text-transform: none;
  letter-spacing: 0;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: .5rem .9rem;
  font-weight: 700;
  outline: none;
}
#btnOpenFilters { display: none; }
.shop-bar .btn-line {
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--line);
  box-shadow: var(--sticker);
}
.shop-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 1.6rem;
  align-items: start;
  margin-top: 1.1rem;
}
.shop-filters {
  background: #fff;
  border: 3px solid #fff;
  box-shadow: var(--sticker);
  border-radius: 24px;
  padding: 1.1rem 1rem 1.15rem;
  position: sticky;
  top: 96px;
  display: grid;
  gap: .15rem;
  align-content: start;
}
.shop-fg {
  margin: 0 0 .15rem;
  padding: 0 0 .85rem;
  border-bottom: 1px solid var(--line);
}
.shop-fg:last-of-type { border-bottom: 0; padding-bottom: 0; }
.shop-fg h3 {
  margin: .2rem 0 .5rem;
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.shop-check {
  display: flex;
  gap: .5rem;
  align-items: center;
  font-weight: 700;
  font-size: .88rem;
  padding: .18rem 0;
  cursor: pointer;
}
.shop-check input { accent-color: var(--pink); }
.shop-sizes {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem;
}
.shop-size {
  min-width: 40px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  font-weight: 800;
  cursor: pointer;
}
.shop-size.is-on {
  background: var(--pink);
  color: #fff;
  border-color: var(--pink);
}
.shop-price {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .4rem;
}
.shop-price input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: .5rem .55rem;
  outline: none;
}
.shop-price input:focus { border-color: var(--pink); }
.shop-filters-foot {
  display: flex;
  gap: .5rem;
  margin-top: .7rem;
}
.shop-chips {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  margin-bottom: 1rem;
}
.shop-chip {
  background: #ffeaf6;
  color: var(--pink);
  border: 0;
  border-radius: 999px;
  padding: .32rem .7rem;
  font-weight: 800;
  font-size: .8rem;
  cursor: pointer;
}
.shop-empty {
  background: #fff;
  border: 3px solid #fff;
  box-shadow: var(--sticker);
  border-radius: 24px;
  padding: 2.4rem 1.4rem;
  text-align: center;
}
.shop-empty h2 {
  font-family: var(--font-display);
  margin: 0 0 .4rem;
}
.shop-filters-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(58, 36, 99, .38);
  z-index: 79;
}
.shop-filters-backdrop[hidden] { display: none !important; }
.shop-filters-close { display: none; }

@media (max-width: 900px) {
  #btnOpenFilters { display: inline-flex; }
  .shop-layout { grid-template-columns: 1fr; }
  .shop-filters {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: min(88vw, 360px);
    z-index: 80;
    transform: translateX(-110%);
    transition: transform .28s var(--ease);
    border-radius: 0 28px 28px 0;
    overflow-y: auto;
    max-height: 100vh;
    margin: 0;
  }
  .shop-filters.is-open { transform: translateX(0); }
  .shop-filters-close { display: inline-grid; }
  .shop-search-form { max-width: none; }
  .shop-count { margin: 0; flex: 1; }
}

@media (max-width: 520px) {
  .shop-search-form { padding-right: .28rem; }
  .shop-search-form .btn { padding: .7rem .9rem; }
}
