:root {
  --bg: #f5effc;
  --surface: #fffbff;
  --surface-2: #efe6fb;
  --ink: #2b173f;
  --muted: #756984;
  --line: #e6d8f4;
  --rose: #b86ee8;
  --wine: #5e2b86;
  --sage: #8c65c8;
  --gold: #C8A24A;
  --blue: #6b56a5;
  --shadow: 0 20px 52px -38px rgba(74, 36, 114, .46);
  --radius: 8px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-height: 100vh;
  font-family: Manrope, system-ui, sans-serif;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255,255,255,.56), rgba(247,240,245,.9)),
    radial-gradient(circle at 18% 0%, rgba(184, 110, 232, .1), transparent 34%),
    radial-gradient(circle at 92% 8%, rgba(140, 101, 200, .09), transparent 30%),
    var(--bg);
}

body.locked { overflow: hidden; }

button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.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;
}

.wrap {
  width: min(1280px, calc(100vw - 18px));
  margin-inline: auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(231,219,228,.82);
  background: rgba(245,239,252,.88);
  backdrop-filter: blur(16px);
}

.topbar__inner {
  min-height: 56px;
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: space-between;
}

.brand, .nav, .hero__actions, .cart-pill, .chips, .rating, .price-row, .card-actions, .drawer__head, .summary__row {
  display: flex;
  align-items: center;
}

.brand { gap: 10px; min-width: max-content; }
.brand__wordmark {
  display: grid;
  gap: 1px;
  line-height: 1;
  padding-left: 10px;
  border-left: 1px solid rgba(94,43,134,.22);
}
.brand__wordmark strong {
  font-family: Fraunces, Georgia, serif;
  font-size: .98rem;
  font-weight: 400;
  color: var(--ink);
}
.brand__wordmark em {
  font-family: Manrope, system-ui, sans-serif;
  font-size: .62rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--purple);
}
.brand__wordmark small {
  margin-top: 3px;
  color: var(--muted);
  font-size: .52rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.brand__logo {
  width: 86px;
  height: 58px;
  display: block;
  flex: 0 0 auto;
}
.brand__mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: #fff;
  border-radius: 50%;
  background: linear-gradient(145deg, #4d2476, #a971e4);
  font-family: Fraunces, Georgia, serif;
  font-weight: 750;
}
.brand strong { display: block; font-family: Fraunces, Georgia, serif; font-size: 1.04rem; }
.brand small { color: var(--muted); font-size: .7rem; letter-spacing: .08em; text-transform: uppercase; }

.nav { gap: 8px; margin-left: auto; color: var(--muted); font-weight: 700; font-size: .82rem; }
.nav a, .ghost {
  padding: 7px 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  color: inherit;
}
.nav a:hover, .ghost:hover { border-color: var(--line); background: rgba(255,255,255,.48); color: var(--ink); }

.cart-pill {
  gap: 8px;
  border: 0;
  border-radius: 999px;
  padding: 9px 14px;
  color: #fff;
  background: linear-gradient(135deg, #5e2b86, #a971e4);
  font-weight: 800;
  box-shadow: 0 14px 26px -18px var(--wine);
}
.cart-pill span {
  min-width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.22);
  font-size: .78rem;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 22px;
  align-items: stretch;
  padding: 34px 0 18px;
}

.hero__content {
  min-height: 300px;
  padding: 38px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(115deg, rgba(255,251,255,.98), rgba(244,235,252,.5)),
    url("assets/products/28.webp") right 8% center / contain no-repeat;
  box-shadow: var(--shadow);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--rose);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .76rem;
}

h1, h2, h3 {
  margin: 0;
  font-family: Fraunces, Georgia, serif;
  line-height: 1.04;
}

h1 {
  max-width: 13ch;
  font-size: clamp(2.35rem, 5.4vw, 4.35rem);
  color: var(--wine);
  font-weight: 400;
  letter-spacing: .015em;
  line-height: 1.04;
}
h1 span { display: inline; }
.hero p:not(.eyebrow) { max-width: 44ch; color: var(--muted); font-size: .98rem; line-height: 1.62; }
.hero__actions { gap: 10px; flex-wrap: wrap; margin-top: 20px; }

.button {
  border: 0;
  border-radius: 999px;
  padding: 13px 18px;
  background: linear-gradient(135deg, #6f45a8, #b78aea);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 14px 26px -20px rgba(94,43,134,.86);
}
.button--soft {
  color: var(--wine);
  background: #fff;
  border: 1px solid var(--line);
}

.hero__panel {
  padding: 28px 24px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255,255,255,.58), rgba(255,255,255,0) 42%),
    radial-gradient(circle at 92% 0%, rgba(183,138,234,.18), transparent 36%),
    linear-gradient(180deg, #f4ebff, #fffafd);
  box-shadow: var(--shadow);
}
.hero__panel-head span {
  color: #7d6794;
  font-weight: 800;
  text-transform: uppercase;
  font-size: .7rem;
  letter-spacing: .12em;
}
.hero__panel-head strong {
  display: block;
  margin: 8px 0 6px;
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(2rem, 3vw, 2.55rem);
  line-height: .98;
  color: var(--wine);
  font-weight: 450;
}
.hero__panel-head p {
  margin: 0;
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.55;
}
.hero__panel-head b {
  color: var(--wine);
  font-weight: 850;
  white-space: nowrap;
}
.hero__perks {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.hero__perks span {
  padding: 7px 11px;
  border: 1px solid rgba(140,101,200,.22);
  border-radius: 999px;
  background: rgba(255,255,255,.72);
  color: #5e4a72;
  font-size: .72rem;
  font-weight: 800;
}
.hero__panel-action {
  width: 100%;
  border: 1px solid rgba(140,101,200,.26);
  border-radius: 999px;
  padding: 12px 14px;
  background: rgba(255,255,255,.78);
  color: var(--wine);
  font-weight: 850;
  box-shadow: 0 16px 28px -24px rgba(94,43,134,.7);
}

.shipping-progress__track {
  height: 9px;
  overflow: hidden;
  border-radius: 999px;
  background: #dbe7dd;
}
.shipping-progress__track span {
  width: 0;
  height: 100%;
  display: block;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--sage), var(--gold));
  transition: width .25s ease;
}
.shipping-progress small { display: block; margin-top: 10px; color: var(--muted); font-weight: 750; font-size: .82rem; }

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 4px auto 26px;
}
.trust-strip div {
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.72);
  box-shadow: 0 12px 34px -30px rgba(45,32,48,.55);
}
.trust-strip strong {
  display: block;
  color: var(--wine);
  font-family: Fraunces, Georgia, serif;
  font-size: 1rem;
}
.trust-strip span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: .78rem;
  font-weight: 700;
}

.toolbar {
  position: relative;
  z-index: 1;
  padding: 10px 0 6px;
  background: transparent;
}

.search {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 10px;
  padding: 7px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
}
.search span { color: var(--rose); font-weight: 850; font-size: .82rem; }
.search input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
}

.chips {
  display: none;
}
.chips::-webkit-scrollbar { display: none; }
.chip {
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(255,255,255,.7);
  color: var(--muted);
  font-weight: 800;
  font-size: .78rem;
}
.chip.active { background: var(--ink); border-color: var(--ink); color: #fff; }

.need-filters {
  display: flex;
  gap: 7px;
  width: 100%;
  flex-wrap: nowrap;
  padding-top: 9px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scrollbar-width: none;
  scroll-padding-inline: 12px;
  padding-right: 18px;
}
.need-filters::-webkit-scrollbar { display: none; }
.need-chip {
  flex: 0 0 auto;
  border: 1px solid rgba(140,101,200,.32);
  border-radius: 999px;
  padding: 7px 11px;
  background: rgba(239,230,251,.78);
  color: #5e2b86;
  font-size: .77rem;
  font-weight: 850;
}
.need-chip.active {
  color: #fff;
  border-color: var(--sage);
  background: var(--sage);
}

.kit-zone { padding: 10px 0 20px; }
.kit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.kit-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 16px 44px -34px rgba(45,32,48,.6);
}
.kit-card__images {
  height: 116px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px;
  background: linear-gradient(180deg, #fff, #f8f2f6);
  border-bottom: 1px solid var(--line);
}
.kit-card__images img {
  width: 31%;
  height: 92px;
  object-fit: contain;
}
.kit-card__body { padding: 13px; }
.kit-card__body span {
  color: var(--blue);
  font-size: .7rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.kit-card__body h3 { margin-top: 4px; font-size: 1.12rem; color: var(--wine); }
.kit-card__body p { min-height: 3.4em; margin: 8px 0; color: var(--muted); font-size: .8rem; }
.kit-card__body strong {
  display: block;
  margin-bottom: 10px;
  font-family: Fraunces, Georgia, serif;
  color: var(--wine);
  font-size: 1.24rem;
}
.kit-card__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.kit-card__actions button {
  border: 0;
  border-radius: var(--radius);
  padding: 10px 8px;
  background: linear-gradient(135deg, #6f45a8, #b78aea);
  color: #fff;
  font-size: .8rem;
  font-weight: 850;
  box-shadow: 0 12px 24px -18px rgba(94,43,134,.85);
}
.kit-card__actions .soft-action {
  background: #fff;
  color: var(--wine);
  border: 1px solid rgba(140,101,200,.32);
  box-shadow: none;
}

.product-zone { padding: 8px 0 34px; }
.section-title { margin: 12px 0 18px; }
.section-title span { color: var(--rose); font-size: .74rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.section-title h2 { margin-top: 3px; font-size: clamp(1.65rem, 2.7vw, 2.35rem); color: var(--wine); font-weight: 500; }

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

.product-card, .favorite-card, .related-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,250,252,.92);
  overflow: hidden;
  box-shadow: 0 14px 36px -32px rgba(45,32,48,.52);
}
.product-card { display: flex; flex-direction: column; min-height: 100%; }
.product-card:hover { transform: translateY(-3px); transition: transform .18s ease; }
.product-card.is-sold-out .thumb img,
.product-card.is-sold-out .card-body {
  opacity: .62;
}
.sold-out-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 3;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(43,23,63,.9);
  color: #fff;
  font-size: .72rem;
  font-weight: 850;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.favorite-toggle {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255,255,255,.9);
  color: var(--rose);
  font-size: 1.1rem;
}
.favorite-toggle.active { background: var(--rose); color: #fff; border-color: var(--rose); }

.thumb {
  aspect-ratio: 1.03;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    linear-gradient(180deg, #fff, #fffafc);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.product-card .thumb > img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain !important;
  object-position: center center !important;
  transform: none !important;
  flex: 0 0 auto;
}
.product-card .thumb > img[data-orientation="wide"] {
  max-width: 100%;
  max-height: 100%;
}
.product-card .thumb > img[data-orientation="tall"] {
  max-width: 100%;
  max-height: 100%;
}
.product-card .thumb > img[data-orientation="balanced"] {
  max-width: 100%;
  max-height: 100%;
}
.thumb .placeholder { color: var(--muted); font-weight: 900; font-family: Fraunces, Georgia, serif; font-size: 2rem; }

.card-body { padding: 13px 14px 14px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.category { color: var(--blue); font-size: .68rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.card-body h3 {
  min-height: 3.05em;
  font-size: .93rem;
  color: var(--ink);
  font-weight: 500;
  letter-spacing: .005em;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.description {
  display: none;
}
.rating { gap: 6px; color: var(--gold); font-weight: 700; font-size: .8rem; }
.rating-mark { color: var(--gold); font-size: .9rem; line-height: 1; }
.rating small { color: var(--muted); font-weight: 700; }
.price-row { justify-content: space-between; gap: 8px; margin-top: auto; }
.price { font-family: Fraunces, Georgia, serif; color: var(--wine); font-weight: 650; font-size: 1.24rem; }
.stock { color: var(--sage); font-size: .75rem; font-weight: 850; }
.stock--out { color: #9b5161; }
.card-actions { gap: 8px; }
.add, .related-button {
  width: 100%;
  border: 0;
  border-radius: var(--radius);
  padding: 11px 12px;
  background: linear-gradient(135deg, #6f45a8, #b78aea);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 14px 26px -20px rgba(94,43,134,.86);
  transition: background .18s ease, transform .18s ease, box-shadow .18s ease;
}
.add:hover {
  background: linear-gradient(135deg, #5e2b86, #ad80e4);
  transform: translateY(-1px);
  box-shadow: 0 18px 30px -20px rgba(94,43,134,.92);
}
.add:disabled,
.detail-add:disabled {
  cursor: not-allowed;
  background: #d3c8dc;
  color: #fff;
  box-shadow: none;
  transform: none;
}
.related-button { background: linear-gradient(135deg, #6f45a8, #b78aea); }
.quick-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
}
.quick-actions button {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 8px 8px;
  background: #fff;
  color: var(--wine);
  font-size: .78rem;
  font-weight: 750;
  transition: border-color .18s ease, background .18s ease, color .18s ease, transform .18s ease;
}
.quick-actions button:hover {
  transform: translateY(-1px);
  border-color: rgba(140,101,200,.38);
  background: rgba(255,255,255,.88);
}
.quick-actions .quick-detail {
  background: rgba(255,255,255,.82);
  color: #5e2b86;
}
.quick-actions .quick-whatsapp {
  color: #5e2b86;
  border-color: rgba(140,101,200,.28);
  background: linear-gradient(135deg, #ffffff, #f5edff);
}

.related { display: none; border-top: 1px solid var(--line); padding: 12px 14px 14px; background: rgba(239,230,251,.5); }
.related strong { display: block; margin-bottom: 8px; font-size: .78rem; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; }
.related-list { display: grid; gap: 7px; }
.related-card { display: grid; grid-template-columns: 42px 1fr auto; align-items: center; gap: 8px; padding: 7px; box-shadow: none; }
.related-card img { width: 42px; height: 42px; object-fit: contain; object-position: center; background: #fff; border-radius: 6px; }
.related-card span { font-size: .76rem; font-weight: 800; line-height: 1.15; }
.related-card button { border: 0; border-radius: 999px; padding: 7px 9px; color: #fff; background: var(--rose); font-weight: 850; }

.rail {
  min-height: 112px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 46px;
}
.favorite-card { display: grid; grid-template-columns: 70px 1fr; align-items: center; gap: 12px; padding: 10px; }
.favorite-card img { width: 70px; height: 70px; object-fit: contain; object-position: center; background: #fff; border-radius: 6px; }
.favorite-card b { display: block; font-size: .85rem; }
.favorite-card small, .empty { color: var(--muted); }
.empty { padding: 22px; border: 1px dashed var(--line); border-radius: var(--radius); background: rgba(255,255,255,.5); }

.overlay {
  position: fixed;
  inset: 0;
  z-index: 40;
  background: rgba(31,22,34,.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
}
.overlay.show { opacity: 1; pointer-events: auto; }

.drawer, .admin {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 50;
  width: min(470px, 100vw);
  height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--bg);
  transform: translateX(103%);
  transition: transform .24s ease;
  box-shadow: -32px 0 60px -42px rgba(0,0,0,.65);
}
.drawer.show, .admin.show { transform: none; }

.product-modal {
  position: fixed;
  inset: 0;
  z-index: 55;
  display: grid;
  place-items: center;
  padding: 34px;
  pointer-events: none;
  opacity: 0;
  transition: opacity .2s ease;
}
.product-modal.show {
  pointer-events: auto;
  opacity: 1;
}
.modal-card {
  position: relative;
  width: min(930px, 100%);
  max-height: min(620px, calc(100vh - 68px));
  display: grid;
  grid-template-columns: minmax(300px, 360px) minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}
.modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255,255,255,.82);
  color: var(--wine);
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1;
  transition: background .18s ease, transform .18s ease;
}
.modal-close:hover {
  background: #fff;
  transform: scale(1.03);
}
.detail-media {
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  padding: 26px;
  background: linear-gradient(180deg, #fff, #f8f2f6);
  border-right: 1px solid var(--line);
}
.detail-media__frame {
  min-height: 270px;
  display: grid;
  place-items: center;
  padding: 18px;
  border-radius: var(--radius);
  background: #fff;
}
.detail-media img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 250px;
  object-fit: contain;
}
.detail-purchase {
  display: grid;
  gap: 12px;
}
.detail-info {
  padding: 26px 30px 24px;
  overflow: auto;
}
.detail-info h2 {
  margin: 6px 0 8px;
  color: var(--wine);
  font-size: clamp(1.28rem, 2vw, 1.9rem);
  font-weight: 400;
  letter-spacing: .01em;
  line-height: 1.12;
}
.detail-info p {
  color: var(--muted);
  line-height: 1.44;
}
.detail-curation {
  margin: 12px 0 10px;
  padding: 13px 14px;
  border: 1px solid rgba(140,101,200,.24);
  border-radius: var(--radius);
  background: rgba(255,255,255,.62);
}
.detail-curation strong {
  display: block;
  margin-bottom: 5px;
  color: var(--wine);
  font-family: Fraunces, Georgia, serif;
  font-size: .98rem;
  font-weight: 400;
}
.detail-curation p {
  margin: 0;
  font-size: .84rem;
}
.benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 12px 0;
}
.benefits span {
  padding: 7px 9px;
  border-radius: 999px;
  background: rgba(239,230,251,.95);
  color: #5e2b86;
  font-size: .76rem;
  font-weight: 850;
}
.detail-price {
  margin: 0;
  color: var(--wine);
  font-family: Fraunces, Georgia, serif;
  font-size: 1.72rem;
  font-weight: 500;
  text-align: center;
}
.detail-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}
.whatsapp-mini {
  color: #39765f;
  background: linear-gradient(135deg, #ffffff, #eef8f3);
  border: 1px solid rgba(89,150,120,.32);
  box-shadow: none;
}
.detail-related {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
  margin-top: 12px;
}
.detail-related strong {
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.detail-related button {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 8px 10px;
  background: #fff;
  color: var(--ink);
  text-align: left;
  font-weight: 750;
  font-size: .74rem;
  line-height: 1.22;
  transition: border-color .18s ease, background .18s ease, transform .18s ease;
}
.detail-related button:hover {
  border-color: rgba(140,101,200,.36);
  background: rgba(239,230,251,.42);
  transform: translateY(-1px);
}

.drawer__head {
  justify-content: space-between;
  gap: 12px;
  padding: 20px;
  color: #fff;
  background: linear-gradient(135deg, var(--wine), var(--rose));
}
.drawer__head span { display: block; opacity: .78; font-weight: 850; font-size: .76rem; text-transform: uppercase; letter-spacing: .08em; }
.drawer__head h2 { font-size: 2rem; }
.icon-button {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,.26);
  border-radius: 50%;
  background: rgba(255,255,255,.14);
  color: #fff;
  font-size: 1.4rem;
}
.drawer__body { flex: 1; overflow: auto; padding: 18px; }
.drawer__foot { padding: 16px 18px 20px; border-top: 1px solid var(--line); background: #fff; }
.drawer__foot small { display: block; margin-top: 9px; text-align: center; color: var(--muted); }

.cart-item {
  display: grid;
  grid-template-columns: 62px 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}
.cart-item img { width: 62px; height: 62px; object-fit: contain; object-position: center; border-radius: 6px; background: #fff; }
.cart-item b { display: block; font-size: .85rem; }
.cart-item small { color: var(--muted); font-weight: 750; }
.qty { display: flex; align-items: center; gap: 6px; border: 1px solid var(--line); border-radius: 999px; padding: 3px; }
.qty button { width: 26px; height: 26px; border: 0; border-radius: 50%; background: var(--bg); font-weight: 900; }
.qty span { min-width: 18px; text-align: center; font-weight: 900; }

.coupon, .shipping { display: grid; grid-template-columns: 1fr auto; gap: 8px; margin-top: 12px; }
.coupon input, .shipping input, .admin-form input, .admin-form select, .admin-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px;
  background: #fff;
  color: var(--ink);
}
.coupon button, .shipping button {
  border: 0;
  border-radius: var(--radius);
  padding: 0 14px;
  background: var(--sage);
  color: #fff;
  font-weight: 850;
}
.shipping-options { display: grid; gap: 8px; margin: 12px 0; }
.shipping-option {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--muted);
  font-size: .85rem;
}
.shipping-option.active { border-color: var(--sage); color: var(--ink); box-shadow: inset 0 0 0 1px var(--sage); }

.summary {
  margin-top: 14px;
  padding: 14px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
}
.summary__row { justify-content: space-between; margin: 7px 0; color: var(--muted); }
.summary__row.total { margin-top: 12px; padding-top: 12px; border-top: 1px dashed var(--line); color: var(--wine); font-family: Fraunces, Georgia, serif; font-weight: 750; font-size: 1.35rem; }
.whatsapp {
  width: 100%;
  border: 1px solid rgba(89,150,120,.32);
  border-radius: var(--radius);
  padding: 15px;
  background: linear-gradient(135deg, #ffffff, #eef8f3);
  color: #39765f;
  font-weight: 850;
}
.whatsapp:disabled { background: #b8abb5; cursor: not-allowed; }

.admin-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.admin-grid article {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}
.admin-grid span { display: block; color: var(--wine); font-family: Fraunces, Georgia, serif; font-size: 1.8rem; font-weight: 750; }
.admin-grid small { color: var(--muted); font-weight: 800; }
.admin-form { display: grid; gap: 12px; margin-top: 18px; }
.admin-form label { display: grid; gap: 6px; color: var(--muted); font-weight: 850; }
.admin-note { margin-top: 14px; color: var(--muted); font-size: .84rem; line-height: 1.45; }
.admin-note code { color: var(--wine); font-weight: 850; }

.toast {
  position: fixed;
  left: 50%;
  bottom: 22px;
  z-index: 70;
  max-width: min(420px, calc(100vw - 28px));
  transform: translate(-50%, 18px);
  opacity: 0;
  pointer-events: none;
  padding: 12px 15px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-weight: 850;
  box-shadow: var(--shadow);
  transition: .22s ease;
}
.toast.show { transform: translate(-50%, 0); opacity: 1; }

.seo-note {
  margin: 4px auto 34px;
  padding: 22px 24px;
  border: 1px solid rgba(140,101,200,.18);
  border-radius: var(--radius);
  background: rgba(255,255,255,.56);
  box-shadow: 0 16px 42px -36px rgba(45,32,48,.48);
}
.seo-note span {
  color: var(--rose);
  font-size: .7rem;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.seo-note h2 {
  max-width: 720px;
  margin-top: 6px;
  color: var(--wine);
  font-size: clamp(1.28rem, 2.2vw, 1.85rem);
  font-weight: 450;
}
.seo-note p {
  max-width: 880px;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.7;
}

.service-cta {
  margin-top: 18px;
  padding: 48px 0 46px;
  background: #050406;
  color: #fff;
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.service-cta__inner {
  display: grid;
  justify-items: center;
  text-align: center;
}
.service-cta h2 {
  font-family: Manrope, system-ui, sans-serif;
  font-size: clamp(1.45rem, 2.6vw, 1.95rem);
  font-weight: 750;
  letter-spacing: 0;
}
.service-cta p {
  max-width: 560px;
  margin: 12px auto 24px;
  color: rgba(255,255,255,.72);
  line-height: 1.7;
}
.service-cta__button {
  border: 0;
  border-radius: var(--radius);
  padding: 14px 22px;
  background: linear-gradient(135deg, #6f45a8, #b78aea);
  color: #fff;
  font-weight: 850;
  box-shadow: 0 18px 34px -24px rgba(183,138,234,.9);
}

.site-footer {
  padding: 36px 0 24px;
  background: #050406;
  color: rgba(255,255,255,.78);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 1fr);
  gap: 42px;
  padding-bottom: 28px;
}
.footer-logo {
  width: 142px;
  max-height: 72px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: .9;
}
.site-footer p {
  max-width: 300px;
  margin: 14px 0 0;
  color: rgba(255,255,255,.66);
  line-height: 1.6;
  font-size: .9rem;
}
.site-footer h3 {
  margin: 0 0 14px;
  color: #fff;
  font-family: Manrope, system-ui, sans-serif;
  font-size: .82rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.site-footer ul {
  list-style: none;
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  color: rgba(255,255,255,.68);
  font-size: .88rem;
  line-height: 1.45;
}
.site-footer a {
  color: rgba(255,255,255,.82);
  text-decoration: none;
}
.site-footer a:hover { color: #fff; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.58);
  font-size: .82rem;
}
.footer-bottom button {
  border: 0;
  background: transparent;
  color: rgba(255,255,255,.42);
  font-size: .78rem;
}
.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 45;
  border: 0;
  border-radius: 999px;
  padding: 14px 18px;
  color: #fff;
  background: linear-gradient(135deg, #6f45a8, #b78aea);
  font-size: .86rem;
  font-weight: 850;
  box-shadow: 0 22px 44px -26px rgba(94,43,134,.92);
}

@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; }
  .hero__content { background-size: 46%; background-position: right 4% bottom 10%; }
  .product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .kit-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .trust-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .rail { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 30px; }
}

@media (max-width: 720px) {
  .wrap { width: min(100vw - 20px, 1280px); }
  .topbar { background: rgba(246,240,252,.94); }
  .topbar__inner { min-height: 48px; gap: 8px; }
  .brand { gap: 0; }
  .brand__wordmark {
    padding-left: 0;
    border-left: 0;
  }
  .brand__wordmark strong { font-size: .92rem; }
  .brand__wordmark em { font-size: .54rem; letter-spacing: .16em; }
  .brand__wordmark small,
  .brand small,
  .nav a { display: none; }
  .nav { margin-left: 0; }
  .cart-pill {
    padding: 8px 11px;
    font-size: .78rem;
    box-shadow: 0 12px 24px -18px var(--wine);
  }
  .cart-pill span {
    min-width: 18px;
    height: 18px;
    font-size: .72rem;
  }
  .hero {
    gap: 10px;
    padding-top: 14px;
    padding-bottom: 8px;
  }
  .hero__content {
    min-height: 246px;
    padding: 22px;
    background-size: 52%;
    background-position: right 4% bottom 8%;
    justify-content: center;
  }
  .eyebrow {
    margin-bottom: 8px;
    font-size: .64rem;
    letter-spacing: .1em;
  }
  h1 { font-size: 2.12rem; max-width: 9ch; }
  h1 span { display: block; }
  .hero p:not(.eyebrow) {
    max-width: 24ch;
    margin: 9px 0 0;
    font-size: .84rem;
    line-height: 1.46;
  }
  .hero__actions {
    gap: 8px;
    margin-top: 14px;
  }
  .button {
    padding: 10px 13px;
    font-size: .82rem;
  }
  .hero__panel {
    padding: 17px;
    gap: 12px;
  }
  .hero__panel-head strong {
    margin: 5px 0 3px;
    font-size: 1.56rem;
    line-height: 1.05;
  }
  .hero__panel-head p,
  .shipping-progress small { font-size: .78rem; }
  .hero__perks { display: none; }
  .hero__panel-action { padding: 10px 12px; font-size: .8rem; }
  .shipping-progress__track { height: 7px; }
  .toolbar { padding-top: 6px; padding-bottom: 2px; }
  .search {
    gap: 8px;
    padding: 6px 11px;
  }
  .search span { font-size: .74rem; }
  .search input { font-size: .88rem; }
  .chips,
  .need-filters {
    flex-wrap: nowrap;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scrollbar-width: none;
    scroll-padding-inline: 12px;
    padding-right: 18px;
  }
  .chips { display: none; }
  .need-filters {
    gap: 6px;
    padding-top: 7px;
    padding-bottom: 2px;
  }
  .need-chip {
    padding: 6px 9px;
    font-size: .7rem;
  }
  .section-title { margin: 10px 0 12px; }
  .section-title span { font-size: .66rem; }
  .section-title h2 { font-size: 1.58rem; }
  .kit-zone { padding-top: 6px; padding-bottom: 12px; }
  .product-zone { padding-top: 2px; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 11px; }
  .kit-grid { grid-template-columns: 1fr; }
  .trust-strip { grid-template-columns: 1fr; }
  .product-modal {
    padding: 0;
    align-items: end;
    place-items: end center;
  }
  .modal-card {
    width: 100%;
    max-height: 88vh;
    grid-template-columns: 1fr;
    border-radius: 18px 18px 0 0;
  }
  .detail-media {
    min-height: 176px;
    padding: 18px 18px 14px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    gap: 12px;
  }
  .detail-media__frame {
    min-height: 142px;
    padding: 12px;
  }
  .detail-media img { max-height: 150px; }
  .detail-info { padding: 18px; }
  .detail-info h2 { font-size: 1.24rem; line-height: 1.12; }
  .detail-info p { font-size: .86rem; }
  .detail-curation { margin: 10px 0; padding: 12px; }
  .detail-curation p { font-size: .82rem; line-height: 1.42; }
  .benefits { margin: 9px 0; }
  .detail-price { margin: 10px 0 12px; font-size: 1.42rem; }
  .detail-purchase { gap: 9px; }
  .detail-actions { grid-template-columns: 1fr; }
  .detail-related {
    grid-template-columns: 1fr;
    margin-top: 12px;
  }
  .modal-close {
    top: 9px;
    right: 9px;
    width: 32px;
    height: 32px;
  }
  .thumb { padding: 16px; }
  .card-body { padding: 10px; gap: 7px; }
  .category { font-size: .58rem; letter-spacing: .07em; }
  .card-body h3 {
    min-height: 2.95em;
    font-size: .82rem;
    line-height: 1.18;
  }
  .rating { font-size: .72rem; gap: 4px; }
  .rating-mark { font-size: .78rem; }
  .price-row { align-items: flex-end; }
  .price { font-size: 1rem; }
  .stock { font-size: .65rem; }
  .add {
    padding: 9px 8px;
    font-size: .78rem;
  }
  .quick-actions {
    grid-template-columns: 1fr;
    gap: 6px;
  }
  .quick-actions button {
    padding: 7px 8px;
    font-size: .72rem;
  }
  .quick-actions .quick-whatsapp { display: none; }
  .related { display: none; }
  .rail { grid-template-columns: 1fr; }
  .service-cta { padding: 34px 0; }
  .service-cta h2 { font-size: 1.55rem; }
  .service-cta p { font-size: .88rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 20px; }
  .site-footer { padding: 38px 0 20px; }
  .site-footer p { max-width: 28ch; }
  .site-footer ul { gap: 7px; font-size: .82rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; padding-top: 18px; }
  .floating-whatsapp { right: 14px; bottom: 14px; padding: 12px 15px; }
}

@media (max-width: 430px) {
  .wrap { width: min(100vw - 14px, 1280px); }
  .hero__content {
    min-height: 224px;
    padding: 18px;
    background-size: 54%;
    background-position: right -8% bottom 8%;
  }
  h1 { font-size: 1.92rem; }
  .hero p:not(.eyebrow) { max-width: 22ch; font-size: .8rem; }
  .button { padding: 9px 11px; }
  .hero__panel { padding: 15px; }
  .product-grid { gap: 8px; }
  .thumb { padding: 13px; }
  .favorite-toggle {
    top: 8px;
    right: 8px;
    width: 31px;
    height: 31px;
    font-size: .95rem;
  }
  .card-body { padding: 9px; }
  .card-body h3 { font-size: .78rem; }
  .price { font-size: .96rem; }
  .cart-pill { padding: 8px 10px; }
  .admin-grid { grid-template-columns: 1fr; }
}
