:root {
  --bg: #ffffff;
  --bg-soft: #ffedf8;
  --fg: #282828;
  --muted: #727273;
  --line: #ebeaef;
  --lilac: #bd8fe5;
  --lilac-deep: #a667da;
  --purple: #652d90;
  --magenta: #e91e63;
  --announce: #c9a0e8;
  --star: #ffc240;
  --radius: 16px;
  --pill: 999px;
  --font: "Montserrat", system-ui, sans-serif;
  --shadow: 0 10px 30px rgba(101, 45, 144, 0.08);
  --max: 1200px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font);
  color: var(--fg);
  background: var(--bg);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input { font: inherit; }
.container { width: min(var(--max), calc(100% - 2rem)); margin: 0 auto; }

.announcement {
  background: var(--announce);
  color: #fff;
  text-align: center;
  font-size: .78rem;
  font-weight: 600;
  padding: .55rem 1rem;
}
.announcement a { color: #fff; text-decoration: underline; }

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: #fff;
  border-bottom: 1px solid #f3eef5;
}
.header-top {
  display: grid;
  grid-template-columns: auto minmax(220px, 520px) auto;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 76px;
  padding: .7rem 0;
}
.logo img { height: 38px; width: auto; }
.search-form {
  display: flex; align-items: center; gap: .5rem;
  width: 100%;
  border: 1px solid #d7d8d8;
  border-radius: var(--pill);
  padding: .55rem 1rem;
  background: #fff;
}
.search-form input {
  border: 0; outline: 0; width: 100%;
  font-size: .88rem; background: transparent;
}
.search-form input::placeholder { color: #9a9a9a; text-transform: lowercase; }
.search-form button {
  border: 0; background: transparent; cursor: pointer; color: var(--lilac);
}
.header-utils { display: flex; align-items: center; gap: .75rem; }
.util-link {
  display: inline-flex; align-items: center; gap: .3rem;
  font-size: .7rem; font-weight: 600; color: var(--lilac-deep);
}
.icon-btn {
  border: 0; background: transparent; cursor: pointer;
  font-size: 1.15rem; padding: .35rem; border-radius: 10px;
  color: var(--lilac-deep); position: relative;
}
.icon-btn:hover { background: var(--bg-soft); }
.cart-count {
  position: absolute; top: -2px; right: -4px;
  min-width: 1.05rem; height: 1.05rem; border-radius: 999px;
  background: var(--magenta); color: #fff;
  font-size: .65rem; font-weight: 700;
  display: inline-flex; align-items: center; justify-content: center;
}
.nav-bar { padding: .45rem 0 .7rem; border-top: 1px solid #f7f2f8; }
.nav {
  display: flex; justify-content: center; flex-wrap: wrap; gap: 1.4rem;
}
.nav a {
  font-size: .88rem; font-weight: 500; color: #505050;
  text-transform: lowercase;
}
.nav a:hover, .nav a.active { color: var(--purple); }

.mobile-only { display: none; }
.desktop-only { display: flex; }
.mobile-nav {
  display: none; flex-direction: column; gap: .8rem;
  padding: 1rem; background: #fff; border-bottom: 1px solid var(--line);
}
.mobile-nav[hidden] { display: none !important; }
.mobile-nav:not([hidden]) { display: flex; }
.mobile-nav a { text-transform: lowercase; font-weight: 600; color: #505050; }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  border: 0; border-radius: var(--pill); padding: .72rem 1.3rem;
  font-weight: 700; cursor: pointer; transition: .15s ease;
  text-transform: lowercase;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--lilac); color: #fff; }
.btn-primary:hover { background: var(--lilac-deep); }
.btn-outline { background: #fff; color: var(--magenta); border: 2px solid var(--magenta); }
.btn-ghost { background: transparent; border: 1px solid var(--line); color: var(--fg); }
.btn-sm { padding: .58rem 1rem; font-size: .86rem; }
.btn.block { width: 100%; }
.btn:disabled { opacity: .55; cursor: not-allowed; transform: none; }

.hero-carousel {
  position: relative;
  background: #f4e9fb;
  overflow: hidden;
  width: 100%;
}
.hero-track {
  display: flex;
  width: 100%;
  transition: transform .5s ease;
  will-change: transform;
}
.hero-slide {
  flex: 0 0 100%;
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  position: relative;
  line-height: 0;
}
.hero-slide a { display: block; line-height: 0; }
.hero-slide picture { display: block; width: 100%; }
.hero-slide img {
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
  object-position: center center;
  display: block;
  background: #f4e9fb;
}
.hero-dots {
  position: absolute; left: 0; right: 0; bottom: .8rem;
  display: flex; justify-content: center; gap: .4rem; z-index: 2;
}
.hero-dots button {
  width: 8px; height: 8px; border: 0; border-radius: 999px;
  background: rgba(255,255,255,.55); cursor: pointer; padding: 0;
}
.hero-dots button.active { width: 18px; background: #fff; }
.hero-nav {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 2;
  width: 42px; height: 42px; border: 0; border-radius: 999px;
  background: rgba(255,255,255,.95); color: var(--purple);
  cursor: pointer; font-size: 1.25rem; box-shadow: var(--shadow);
}
.hero-nav.prev { left: .9rem; }
.hero-nav.next { right: .9rem; }

.color-strip { display: grid; grid-template-columns: repeat(4, 1fr); height: 10px; }
.color-strip span:nth-child(1) { background: #ffb6d9; }
.color-strip span:nth-child(2) { background: #e91e63; }
.color-strip span:nth-child(3) { background: #af0541; }
.color-strip span:nth-child(4) { background: #bd8fe5; }

.cat-row {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(78px, 1fr);
  gap: .75rem;
  padding: 1.6rem 0 1rem;
  overflow-x: auto;
}
.cat-item { display: grid; justify-items: center; gap: .5rem; }
.cat-item .ring {
  width: 76px; height: 76px; border-radius: 999px; overflow: hidden;
  background: #fff; border: 1px solid #eee; box-shadow: 0 4px 14px rgba(0,0,0,.04);
}
.cat-item img { width: 100%; height: 100%; object-fit: cover; }
.cat-item span {
  font-size: .76rem; color: #727273; text-transform: lowercase; font-weight: 500;
}

.trust {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: .8rem;
  padding: .25rem 0 1.4rem;
}
.trust-item {
  text-align: center; padding: .95rem .7rem;
  border: 1px solid var(--line); border-radius: 14px;
  font-size: .8rem; font-weight: 600; color: #505050; background: #fff;
}

.section { padding: 1.6rem 0 2.1rem; }
.section-head {
  display: flex; align-items: center; justify-content: center;
  position: relative; margin-bottom: 1.15rem;
}
.section-head h2 {
  margin: 0; font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  font-weight: 800; color: var(--lilac); text-transform: lowercase;
}
.section-head .more {
  position: absolute; right: 0; font-size: .82rem; color: var(--muted);
}
.section-sub { text-align: center; color: var(--muted); margin: -.4rem 0 1.1rem; font-size: .88rem; }

.product-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
}
.product-card {
  background: #fff; border-radius: 18px; padding: .85rem;
  display: flex; flex-direction: column;
  transition: box-shadow .2s ease, transform .2s ease;
}
.product-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.product-card-media {
  position: relative; aspect-ratio: 1; border-radius: 14px;
  overflow: hidden; background: #faf7fb; margin-bottom: .7rem;
}
.product-card-media img { width: 100%; height: 100%; object-fit: cover; }
.badge {
  position: absolute; top: .5rem; left: .5rem;
  background: var(--magenta); color: #fff;
  font-size: .68rem; font-weight: 800; padding: .25rem .45rem;
  border-radius: var(--pill);
}
.stars { color: var(--star); font-size: .76rem; margin-bottom: .3rem; }
.stars span { color: var(--muted); font-size: .7rem; margin-left: .15rem; }
.product-card-body h3 {
  font-size: .88rem; margin: 0 0 .35rem; line-height: 1.3;
  min-height: 2.45em; font-weight: 700; text-transform: lowercase;
}
.prices { display: flex; gap: .4rem; align-items: baseline; flex-wrap: wrap; }
.compare { color: var(--muted); text-decoration: line-through; font-size: .78rem; }
.price { font-weight: 800; font-size: 1.02rem; }
.installments { margin: .2rem 0 0; color: var(--muted); font-size: .72rem; }
.pix-hint { margin: .3rem 0 .65rem; color: var(--purple); font-size: .78rem; font-weight: 700; }
.product-card .btn { margin-top: auto; }

.promo-banner {
  border-radius: 20px; padding: 1.5rem 1.3rem;
  background: linear-gradient(100deg, var(--purple), var(--lilac), var(--magenta));
  color: #fff; display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; flex-wrap: wrap;
}
.promo-banner h2 { margin: .2rem 0; text-transform: lowercase; }
.promo-banner .btn { background: #fff; color: var(--purple); }

.cart-drawer { position: fixed; inset: 0; z-index: 80; background: rgba(20,8,24,.4); }
.cart-drawer[hidden] { display: none !important; }
.cart-drawer-panel {
  position: absolute; right: 0; top: 0; bottom: 0; width: min(420px, 100%);
  background: #fff; display: flex; flex-direction: column;
  box-shadow: -16px 0 40px rgba(0,0,0,.12);
}
.cart-drawer-head, .cart-drawer-foot { padding: 1rem 1.1rem; border-bottom: 1px solid var(--line); }
.cart-drawer-foot { border-bottom: 0; border-top: 1px solid var(--line); margin-top: auto; display: grid; gap: .65rem; }
.cart-drawer-items { padding: 1rem; overflow: auto; flex: 1; display: grid; gap: .75rem; align-content: start; }
.cart-line { display: grid; grid-template-columns: 64px 1fr auto; gap: .75rem; align-items: center; }
.cart-line img { width: 64px; height: 64px; object-fit: cover; border-radius: 12px; background: var(--bg-soft); }
.qty { display: inline-flex; align-items: center; gap: .35rem; margin-top: .25rem; }
.qty button { width: 28px; height: 28px; border-radius: 8px; border: 1px solid var(--line); background: #fff; cursor: pointer; }
.row-between { display: flex; justify-content: space-between; gap: 1rem; }
.pix-row { color: var(--purple); }

.page { padding: 1.5rem 0 3rem; }
.page h1 { margin: 0 0 1rem; font-size: 1.55rem; text-transform: lowercase; }
.checkout-page { padding-top: 1.1rem; }
.checkout-hero {
  margin: 0 0 1.35rem;
  padding: 1.15rem 1.25rem;
  border-radius: 22px;
  background:
    radial-gradient(120% 140% at 0% 0%, rgba(189, 143, 229, .28), transparent 55%),
    linear-gradient(135deg, #faf5ff 0%, #fff 48%, #ffedf8 100%);
  border: 1px solid #efe4f8;
}
.checkout-kicker {
  margin: 0 0 .35rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--lilac-deep);
}
.checkout-hero h1 {
  margin: 0 0 .9rem;
  font-size: clamp(1.55rem, 3vw, 2rem);
  text-transform: lowercase;
  color: var(--purple);
}
.checkout-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: .55rem .9rem;
}
.checkout-steps li {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-size: .8rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: lowercase;
}
.checkout-steps li span {
  width: 1.45rem;
  height: 1.45rem;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  background: #efe6f7;
  color: var(--purple);
  font-size: .75rem;
  font-weight: 800;
}
.checkout-steps li.is-active { color: var(--purple); }
.checkout-steps li.is-active span {
  background: var(--lilac);
  color: #fff;
}
.checkout-grid, .pdp-grid, .cart-page-grid {
  display: grid; grid-template-columns: 1.35fr .9fr; gap: 1.2rem; align-items: start;
}
.checkout-form { display: grid; gap: 1rem; }
.checkout-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 1.15rem 1.2rem 1.25rem;
  box-shadow: 0 10px 28px rgba(101, 45, 144, 0.045);
}
.checkout-card-head {
  display: flex;
  gap: .85rem;
  align-items: flex-start;
  margin-bottom: 1rem;
  padding-bottom: .9rem;
  border-bottom: 1px solid #f1eaf6;
}
.checkout-card-num {
  width: 2rem;
  height: 2rem;
  border-radius: 12px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  background: linear-gradient(145deg, var(--lilac), var(--lilac-deep));
  color: #fff;
  font-weight: 800;
  font-size: .9rem;
}
.checkout-card-head h2 {
  margin: 0;
  font-size: 1.05rem;
  text-transform: lowercase;
  color: var(--purple);
}
.checkout-card-head p {
  margin: .2rem 0 0;
  font-size: .8rem;
  color: var(--muted);
  font-weight: 500;
}
.checkout-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .85rem .9rem;
}
.checkout-fields .field-span-2,
.checkout-fields .field-cep,
.checkout-fields .freight-box {
  grid-column: 1 / -1;
}
.field {
  display: grid;
  gap: .35rem;
  font-size: .86rem;
  font-weight: 600;
  color: #3b2a46;
}
.field-label { font-size: .78rem; letter-spacing: .02em; color: #5a4568; }
.field input,
.field textarea,
.form-grid input,
.form-grid textarea {
  width: 100%;
  border: 1px solid #e4d8ef;
  border-radius: 14px;
  padding: .78rem .95rem;
  background: #fffcff;
  color: var(--fg);
  outline: none;
  transition: border-color .15s ease, box-shadow .15s ease, background .15s ease;
}
.field input::placeholder,
.form-grid input::placeholder { color: #b0a0bc; font-weight: 500; }
.field input:hover,
.form-grid input:hover { border-color: #d3bfE6; }
.field input:focus,
.field textarea:focus,
.form-grid input:focus {
  border-color: var(--lilac);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(189, 143, 229, .18);
}
.field-inline {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: .55rem;
  align-items: stretch;
}
.field-inline .btn { white-space: nowrap; }
.checkout-banner {
  border-radius: 14px;
  padding: .8rem 1rem;
  font-size: .86rem;
  background: #f4ecfb;
  border: 1px solid #e5d4f5;
  color: #4a2d66;
}
.checkout-banner.ok {
  background: #eaf7ef;
  border-color: #c8e8d2;
  color: #1f6b3a;
}
.checkout-banner strong { font-weight: 800; }
.btn-checkout {
  width: 100%;
  margin-top: .35rem;
  padding: .95rem 1.3rem;
  font-size: 1rem;
  box-shadow: 0 12px 24px rgba(166, 103, 218, .28);
}
.checkout-secure {
  margin: .55rem 0 0;
  text-align: center;
  font-size: .76rem;
  color: var(--muted);
  font-weight: 500;
}
.checkout-summary {
  position: sticky;
  top: 5.5rem;
  display: grid;
  gap: .9rem;
  padding: 1.2rem;
  background:
    linear-gradient(180deg, #fffcff 0%, #faf5ff 100%);
  border-color: #eadff4;
}
.checkout-summary h2 {
  margin: 0;
  font-size: 1.05rem;
  text-transform: lowercase;
  color: var(--purple);
}
.checkout-summary-list { display: grid; gap: .15rem; }
.checkout-totals {
  display: grid;
  gap: .55rem;
  padding-top: .85rem;
  border-top: 1px dashed #e4d6f0;
  font-size: .92rem;
}
.checkout-coupon-row strong { color: #2f855a; }
.checkout-total-line {
  margin-top: .25rem;
  padding-top: .7rem;
  border-top: 1px solid #eadff4;
  font-size: 1.05rem;
}
.coupon-box {
  border: 1px solid #e7d8f4;
  border-radius: 16px;
  padding: .95rem 1rem;
  background: linear-gradient(135deg, #fbf7ff, #fff8fc);
}
.coupon-box .field { margin: 0; }
.coupon-box input {
  text-transform: uppercase;
  letter-spacing: .04em;
  font-weight: 700;
}
.checkout-perks {
  list-style: none;
  margin: 0;
  padding: .75rem .85rem;
  display: grid;
  gap: .4rem;
  background: #fff;
  border: 1px solid #efe4f8;
  border-radius: 14px;
  font-size: .78rem;
  color: #5a4568;
  font-weight: 600;
}
.checkout-perks li::before {
  content: "✓ ";
  color: var(--lilac-deep);
  font-weight: 800;
}
.checkout-pix-page { max-width: 560px; }
.pix-total { margin: 0 0 .35rem; color: var(--muted); }
.pix-status {
  font-size: .88rem;
  color: var(--lilac-deep);
  font-weight: 600;
  padding: .65rem .85rem;
  border-radius: 12px;
  background: #f7f0fc;
  width: 100%;
}
.freight-pill {
  display: inline-flex;
  align-items: center;
  padding: .28rem .7rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #e5d4f5;
  color: var(--lilac-deep);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.welcome-popup {
  position: fixed; inset: 0; z-index: 120;
  display: grid; place-items: center;
  padding: 1rem;
}
.welcome-popup[hidden] { display: none !important; }
.welcome-popup-backdrop {
  position: absolute; inset: 0;
  background: rgba(28, 10, 40, .55);
  backdrop-filter: blur(2px);
}
.welcome-popup-dialog {
  position: relative;
  width: min(420px, calc(100vw - 1.5rem));
  max-height: min(92vh, 860px);
  overflow: auto;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(40, 10, 60, .28);
  animation: welcomeIn .35s ease;
}
@keyframes welcomeIn {
  from { opacity: 0; transform: translateY(12px) scale(.98); }
  to { opacity: 1; transform: none; }
}
.welcome-popup-close {
  position: absolute; top: .7rem; right: .7rem; z-index: 2;
  width: 2.1rem; height: 2.1rem; border: 0; border-radius: 999px;
  background: #fff; color: var(--lilac-deep); font-size: 1.35rem; line-height: 1;
  cursor: pointer; box-shadow: 0 4px 14px rgba(101,45,144,.18);
}
.welcome-popup-art {
  width: 100%; height: auto; display: block; border-radius: 24px 24px 0 0;
}
.welcome-popup-actions {
  display: grid; gap: .55rem; justify-items: center;
  padding: .85rem 1.1rem 1.15rem;
  background: #fff;
  border-radius: 0 0 24px 24px;
}
.welcome-copy-btn { width: 100%; }
.welcome-copy-btn.is-copied { background: #2f855a; }
.welcome-dismiss-link {
  border: 0; background: transparent; cursor: pointer;
  color: var(--lilac-deep); font-size: .82rem; font-weight: 600;
  text-decoration: underline; padding: .2rem;
}
.breadcrumb {
  display: flex; flex-wrap: wrap; gap: .4rem; align-items: center;
  font-size: .78rem; color: var(--muted); margin: 0 0 1.1rem; text-transform: lowercase;
}
.breadcrumb a { color: var(--lilac-deep); }
.pdp-grid {
  grid-template-columns: 1.15fr .85fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.pdp-gallery { display: grid; gap: .75rem; }
.pdp-main-media {
  position: relative;
  background: #faf7fb;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 1;
  border: 1px solid var(--line);
}
.pdp-main-media img {
  width: 100%; height: 100%; object-fit: contain; padding: 1rem;
}
.pdp-badge { z-index: 2; }
.pdp-thumbs {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(64px, 1fr);
  gap: .5rem;
  overflow-x: auto;
}
.pdp-thumb {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: .25rem;
  background: #fff;
  cursor: pointer;
  aspect-ratio: 1;
}
.pdp-thumb.active, .pdp-thumb:hover { border-color: var(--lilac); }
.pdp-thumb img { width: 100%; height: 100%; object-fit: contain; }
.pdp-buybox {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.2rem 1.15rem;
  position: sticky;
  top: 5.5rem;
  display: grid;
  gap: .85rem;
  align-content: start;
}
.pdp-brand {
  margin: 0; font-size: .72rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase; color: var(--lilac-deep);
}
.pdp-title {
  margin: 0; font-size: clamp(1.25rem, 2.4vw, 1.65rem);
  line-height: 1.25; text-transform: lowercase;
}
.pdp-prices .price { font-size: 1.55rem; font-weight: 800; }
.pdp-prices .compare { display: block; margin-bottom: .15rem; }
.pdp-ship {
  display: grid; gap: .2rem;
  padding: .75rem .85rem;
  background: var(--bg-soft);
  border-radius: 12px;
  font-size: .84rem;
}
.pdp-ship span { color: var(--muted); line-height: 1.4; }
.pdp-qty-row { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.pdp-qty-label { font-size: .86rem; font-weight: 600; text-transform: lowercase; }
.pdp-qty input {
  width: 48px; text-align: center; border: 0; font-weight: 700;
}
.pdp-actions { display: grid; gap: .55rem; }
.pdp-pay-note { margin: 0; font-size: .74rem; color: var(--muted); line-height: 1.4; }
.pdp-desc { margin-bottom: 1.5rem; }
.pdp-desc h2 {
  margin: 0 0 .85rem; font-size: 1.15rem; text-transform: lowercase; color: var(--purple);
}
.pdp-desc-body { display: grid; gap: .75rem; color: #444; line-height: 1.55; font-size: .95rem; }
.pdp-desc-body p { margin: 0; }
.pdp-related { padding-top: 0; }
.panel { background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 1.05rem; }
.form-grid { display: grid; gap: .75rem; }
.form-grid label { display: grid; gap: .3rem; font-size: .86rem; font-weight: 600; }
.field-hint { font-weight: 500; color: var(--muted); font-size: .76rem; }
.field-hint.ok { color: #2f855a; }
.field-hint.err { color: #af0541; }
.field-hint.loading { color: var(--lilac-deep); }
.form-grid input.is-loading,
.form-grid input:disabled,
.field input.is-loading,
.field input:disabled {
  opacity: .85;
  background: #faf7fb;
}
.freight-box {
  border: 1px solid #e7d8f4;
  border-radius: 16px;
  padding: .95rem 1rem;
  background: linear-gradient(135deg, #fbf7ff, #fff8fc);
  display: grid;
  gap: .75rem;
}
.freight-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  flex-wrap: wrap;
}
.freight-sub {
  margin: .2rem 0 0;
  font-size: .78rem;
  color: var(--muted);
  font-weight: 500;
}
.freight-result {
  border-top: 1px dashed #e5d7ef;
  padding-top: .7rem;
}
.pay-option {
  display: flex; gap: .85rem; align-items: flex-start;
  border: 1.5px solid #e4d6f0; border-radius: 16px; padding: 1rem 1.05rem;
  cursor: pointer; background: #fffcff; margin-bottom: .85rem;
  transition: border-color .15s ease, background .15s ease, box-shadow .15s ease;
}
.pay-option:hover { border-color: var(--lilac); }
.pay-option.active {
  border-color: var(--lilac);
  background: linear-gradient(135deg, #fbf5ff, #fff8fc);
  box-shadow: 0 8px 20px rgba(166, 103, 218, .12);
}
.pay-option input { margin-top: .2rem; accent-color: var(--lilac-deep); }
.pay-option-body { display: grid; gap: .3rem; }
.pay-option-top {
  display: flex; align-items: center; gap: .55rem; flex-wrap: wrap;
}
.pay-option-body p {
  margin: 0; color: var(--muted); font-size: .84rem; font-weight: 500; line-height: 1.4;
}
.pay-badge {
  display: inline-flex;
  padding: .18rem .55rem;
  border-radius: 999px;
  background: var(--lilac);
  color: #fff;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.checkout-line { display: grid; grid-template-columns: 56px 1fr auto; gap: .65rem; align-items: center; margin-bottom: .75rem; }
.checkout-line img { width: 56px; height: 56px; object-fit: cover; border-radius: 10px; background: var(--bg-soft); }
.pix-box { text-align: center; display: grid; gap: .75rem; justify-items: center; padding: 1.4rem 1.25rem; }
.pix-box textarea { width: 100%; min-height: 90px; font-size: .8rem; resize: vertical; }
.pix-qr { width: 220px; height: 220px; background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: .5rem; box-shadow: 0 10px 24px rgba(101,45,144,.08); }

.empty { text-align: center; padding: 2rem 1rem; color: var(--muted); }
.alert { padding: .85rem 1rem; border-radius: 12px; background: #fff3f8; border: 1px solid #f3cfe0; }
.alert.error { background: #fff1f1; border-color: #f3c0c0; color: #8a1f1f; }
.alert.ok { background: #e5f4ec; border-color: #b7e6c4; color: #146c2e; }

.site-footer {
  margin-top: 2.4rem; padding: 2.2rem 0 1.2rem;
  background: #1b0b22; color: #f7eef8;
}
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 1.4rem;
}
.footer-grid-inst { grid-template-columns: 1.4fr 1.2fr 1fr 1.2fr; }
.footer-legal-mini { font-size: .72rem; opacity: .75; margin-top: .6rem; }
.footer-address { font-size: .7rem; opacity: .7; margin-top: .45rem; line-height: 1.45; max-width: 28ch; }
.footer-hours { font-size: .78rem; opacity: .8; margin: .35rem 0; }
.footer-bottom p { margin: .25rem 0; }
.footer-bottom a { text-decoration: underline; opacity: .9; }
.inst-page { max-width: 920px; }
.inst-article h1 {
  margin: 0 0 1rem; font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  text-transform: lowercase; color: var(--purple);
}
.inst-body { display: grid; gap: .85rem; color: #3a3a3a; line-height: 1.6; font-size: .95rem; }
.inst-body h2, .inst-body h3 { margin: .6rem 0 .2rem; color: var(--purple); text-transform: lowercase; }
.inst-body p, .inst-body li { margin: 0; }
.inst-body ul, .inst-body ol { margin: 0; padding-left: 1.2rem; display: grid; gap: .35rem; }
.inst-faq { display: grid; gap: .65rem; }
.inst-acc {
  border: 1px solid var(--line); border-radius: 14px; background: #fff; padding: .85rem 1rem;
}
.inst-acc summary {
  cursor: pointer; font-weight: 700; list-style: none; color: var(--fg);
}
.inst-acc summary::-webkit-details-marker { display: none; }
.inst-acc-body { margin-top: .65rem; color: var(--muted); display: grid; gap: .5rem; }
.inst-regs { display: grid; gap: 1rem; }
.inst-reg-card {
  display: block; border-radius: 16px; overflow: hidden;
  border: 1px solid var(--line); background: #fff;
}
.inst-reg-card img { width: 100%; height: auto; display: block; }
@media (max-width: 1000px) {
  .footer-grid-inst { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 820px) {
  .footer-grid-inst { grid-template-columns: 1fr; }
}
.footer-grid h4 { margin: 0 0 .7rem; text-transform: lowercase; font-size: .92rem; }
.footer-grid a { display: block; opacity: .85; margin: .35rem 0; font-size: .86rem; }
.footer-logo { height: 34px; width: auto; border-radius: 6px; margin-bottom: .55rem; }
.footer-bottom {
  margin-top: 1.6rem; padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,.12);
  font-size: .76rem; opacity: .7; line-height: 1.5;
}
@media (max-width: 1000px) {
  .util-link .label { display: none; }
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 820px) {
  .desktop-only { display: none !important; }
  .mobile-only { display: inline-flex; }
  .nav-bar { display: none; }
  .header-top {
    grid-template-columns: auto 1fr auto;
    gap: .45rem;
  }
  .logo { justify-self: center; }
  .search-form { grid-column: 1 / -1; order: 3; }
  .trust { grid-template-columns: 1fr 1fr; }
  .product-grid { grid-template-columns: 1fr 1fr; gap: .75rem; }
  .checkout-grid, .pdp-grid, .cart-page-grid { grid-template-columns: 1fr; }
  .pdp-buybox { position: static; }
  .checkout-summary { position: static; }
  .checkout-fields { grid-template-columns: 1fr; }
  .field-inline { grid-template-columns: 1fr; }
  .hero-nav { display: none; }
  .cat-row { padding-top: 1.1rem; gap: .55rem; }
  .cat-item .ring { width: 68px; height: 68px; }
  .section-head {
    justify-content: space-between;
  }
  .section-head .more { position: static; }
  .product-card { padding: .65rem; }
  .product-card-body h3 { font-size: .8rem; min-height: 2.4em; }
}
