:root {
  --bg: #f5f5f7;
  --surface: #ffffff;
  --ink: #1d1d1f;
  --muted: #6e6e73;
  --line: rgba(0, 0, 0, 0.08);
  --accent: #1d1d1f;
  --blue: #128a4b;
  --green: #128a4b;
  --red: #ff3b30;
  --shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  --radius: 18px;
  --header: 56px;
  --safe-b: env(safe-area-inset-bottom, 0px);
  --font: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text",
    "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--ink);
  min-height: 100dvh;
  letter-spacing: -0.01em;
}
img { max-width: 100%; display: block; }
button, input, select { font-family: inherit; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: 0; background: none; color: inherit; }
.hidden { display: none !important; }

.announce {
  background: var(--green);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-align: center;
  padding: 8px 12px;
}

.header {
  position: sticky;
  top: 0;
  z-index: 40;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 8px 0 12px;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.header .brand {
  justify-self: start;
  font-weight: 800;
  font-size: 17px;
  letter-spacing: -0.04em;
  color: #111;
}
.seller-line {
  margin: 0 0 6px;
  font-size: 11px;
  color: var(--muted);
  line-height: 1.3;
}
.seller-line b { color: #111; font-weight: 700; }
.legal-box {
  margin: 16px;
  padding: 14px;
  background: #f5f5f7;
  border-radius: 12px;
  display: grid;
  gap: 4px;
  font-size: 12px;
  color: #3a3a3c;
  line-height: 1.4;
}
.legal-box b { color: #111; }
.legal-note { margin-top: 12px; font-size: 12px; color: var(--muted); line-height: 1.4; }
.icon-btn {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
}
.icon-btn svg { width: 22px; height: 22px; }
.brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.03em;
}
.brand img { height: 34px; width: auto; max-width: 210px; object-fit: contain; }
.brand.has-logo span { display: none; }
.menu-panel {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: none;
}
.menu-panel.open { display: block; }
.menu-panel.open .drawer-bg { opacity: 1; }
.menu-sheet {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: min(86vw, 340px);
  background: #fff;
  padding: 12px 18px calc(24px + var(--safe-b));
  overflow: auto;
  z-index: 2;
}
.menu-sheet a { display: block; padding: 12px 0; font-size: 17px; font-weight: 600; border-bottom: 1px solid var(--line); }
.menu-sheet h4 { margin: 22px 0 4px; font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; }
.ra { width: min(100%, 280px); margin: 18px auto 0; }
.cart-count {
  position: absolute;
  top: 8px;
  right: 8px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 99px;
  background: var(--red);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  display: grid;
  place-items: center;
}
.header-right { position: relative; display: flex; }

.app { min-height: 60dvh; padding-bottom: 68px; }
body { background: #fff; }

.hero {
  margin: 12px 12px 0;
  background: #111;
  color: #fff;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  min-height: 420px;
}
.hero img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  opacity: 0.92;
}
.hero-copy {
  position: absolute;
  inset: auto 0 0;
  padding: 28px 20px 22px;
  background: linear-gradient(transparent, rgba(0,0,0,.72));
}
.hero-kicker {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  opacity: 0.8;
}
.hero h1 {
  margin: 6px 0 8px;
  font-size: 28px;
  line-height: 1.1;
  letter-spacing: -0.04em;
}
.hero p { margin: 0 0 16px; color: rgba(255,255,255,.82); font-size: 14px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.btn-dark { background: #fff; color: #111; }
.btn-blue { background: var(--blue); color: #fff; width: 100%; }
.btn-ghost { background: #f2f2f7; color: var(--ink); width: 100%; }
.btn:disabled { opacity: 0.45; }

.trust {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 16px 12px 4px;
}
.trust article {
  background: var(--surface);
  border-radius: 16px;
  padding: 14px;
  min-height: 88px;
}
.trust h3 { margin: 0 0 4px; font-size: 13px; }
.trust p { margin: 0; font-size: 12px; color: var(--muted); line-height: 1.35; }

.section { padding: 8px 12px 20px; }
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  padding: 18px 4px 12px;
}
.section-head h2 { margin: 0; font-size: 22px; letter-spacing: -0.03em; }
.section-head a { color: var(--blue); font-size: 14px; font-weight: 600; }

.grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.card {
  background: var(--surface);
  border-radius: 18px;
  overflow: hidden;
}
.card-img {
  aspect-ratio: 1;
  background: #eee;
  position: relative;
}
.card-img img { width: 100%; height: 100%; object-fit: cover; }
.badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--red);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 999px;
}
.card-body { padding: 10px 11px 14px; }
.card h3 {
  margin: 0 0 6px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
  min-height: 34px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.price { font-size: 16px; font-weight: 700; letter-spacing: -0.03em; }
.compare { color: var(--muted); text-decoration: line-through; font-weight: 500; font-size: 12px; margin-left: 4px; }
.install { margin: 3px 0 0; font-size: 11px; color: var(--muted); }
.pix { margin-top: 4px; font-size: 12px; color: var(--green); font-weight: 600; }

.track-cta {
  margin: 8px 12px 24px;
  background: var(--surface);
  border-radius: 22px;
  padding: 22px 20px;
  text-align: center;
}
.track-cta h2 { margin: 0 0 6px; font-size: 20px; }
.track-cta p { margin: 0 0 16px; color: var(--muted); font-size: 14px; }

.footer {
  padding: 16px 16px calc(18px + var(--safe-b));
  color: var(--muted);
  font-size: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  background: #f5f5f7;
}
.footer a { padding: 4px 0; }
.footer .copy { width: 100%; margin-top: 4px; font-size: 11px; line-height: 1.45; }

.pdp-gallery {
  background: #f2f2f7;
  position: relative;
}
.pdp-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.pdp-track::-webkit-scrollbar { display: none; }
.pdp-track img {
  flex: 0 0 100%;
  width: 100%;
  min-width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  scroll-snap-align: start;
  background: #f2f2f7;
}
.dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 12px;
  display: flex;
  justify-content: center;
  gap: 5px;
  pointer-events: none;
}
.dots i {
  width: 5px;
  height: 5px;
  border-radius: 99px;
  background: rgba(255,255,255,.45);
}
.dots i.on { width: 14px; background: #fff; }
.g-count {
  position: absolute;
  right: 10px;
  top: 10px;
  background: rgba(0,0,0,.55);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 99px;
}
.thumbs {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  padding: 8px 12px 2px;
  background: #fff;
  scrollbar-width: none;
}
.thumbs::-webkit-scrollbar { display: none; }
.thumbs button {
  flex: none;
  width: 54px;
  height: 54px;
  padding: 0;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid #eee;
  background: #f2f2f7;
}
.thumbs button.on { border-color: #111; }
.thumbs img { width: 100%; height: 100%; object-fit: cover; }

.pdp {
  background: #fff;
  margin: 0;
  border-radius: 0;
  padding: 10px 14px 18px;
}
.sold {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
}
.pill {
  background: #111;
  color: #fff;
  border-radius: 999px;
  padding: 3px 8px;
  font-size: 10px;
  letter-spacing: 0.02em;
}
.pdp h1 {
  margin: 4px 0 2px;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: -0.04em;
}
.pdp h1 .only {
  display: inline-block;
  color: var(--red);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: -0.02em;
  vertical-align: 1px;
}
.stars { color: #1d1d1f; font-size: 12px; display: flex; align-items: center; gap: 6px; }
.stars span { color: var(--muted); font-weight: 500; }
.star-row { display: inline-flex; gap: 1px; color: #1d1d1f; vertical-align: -2px; }
.price-row { display: flex; align-items: baseline; gap: 8px; margin-top: 8px; flex-wrap: wrap; }
.price-lg { font-size: 24px; font-weight: 700; letter-spacing: -0.05em; }
.off {
  background: var(--red);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 7px;
  border-radius: 7px;
}
.save { color: var(--green); font-size: 12px; font-weight: 600; }

.deal {
  margin-top: 8px;
  display: grid;
  gap: 4px;
}
.lead {
  margin: 4px 0 6px;
  font-size: 14px;
  line-height: 1.35;
  color: #3a3a3c;
}
.deal-pix {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #e8f8ee;
  border-radius: 10px;
  padding: 8px 10px;
}
.pix-logo {
  height: 28px;
  width: auto;
  flex: none;
}
.deal-pix .tag { display: none; }
.deal-pix b { display: block; font-size: 16px; letter-spacing: -0.03em; line-height: 1.1; }
.deal-pix small {
  display: block;
  color: var(--green);
  font-weight: 600;
  font-size: 11px;
  line-height: 1.3;
  margin-top: 2px;
}
.deal-pix .off5 {
  margin-left: auto;
  color: #fff;
  background: var(--green);
  font-size: 10px;
  font-weight: 800;
  padding: 4px 6px;
  border-radius: 6px;
  flex: none;
}
.deal-pix > div { min-width: 0; }
.deal-sub { font-size: 12px; color: var(--muted); padding: 0 2px; }

.ship-card {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  margin-top: 12px;
  padding: 10px 12px 10px 10px;
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 14px;
  box-shadow: 0 1px 3px rgba(0,0,0,.04);
  text-align: left;
}
.ship-card .correios {
  flex: none;
  width: 45px;
  height: 45px;
  object-fit: contain;
  display: block;
  margin-top: 1px;
}
.ship-card .txt { flex: 1; min-width: 0; }
.ship-card .l1 { font-size: 13px; line-height: 1.25; }
.ship-card .free { color: #19a34a; font-weight: 800; }
.ship-card .via { color: #8a8a8a; font-weight: 500; }
.ship-card .l2 {
  margin-top: 2px;
  font-size: 14px;
  font-weight: 800;
  color: #1d1d1f;
  letter-spacing: -0.02em;
}
.ship-card .change {
  flex: none;
  align-self: center;
  font-size: 12px;
  font-weight: 700;
  color: #19a34a;
  padding: 6px 8px;
  border-radius: 8px;
  background: #f3faf6;
}

.chips {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  margin: 10px 0 2px;
  scrollbar-width: none;
}
.chips::-webkit-scrollbar { display: none; }
.chips {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  margin: 8px 0 0;
  scrollbar-width: none;
}
.chips::-webkit-scrollbar { display: none; }
.chips span {
  flex: none;
  background: #f2f2f7;
  border-radius: 999px;
  padding: 5px 9px;
  font-size: 11px;
  font-weight: 600;
}
.chips span.hot {
  background: var(--green);
  color: #fff;
}

.label { margin: 10px 0 6px; font-size: 12px; font-weight: 600; }
.colors {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 6px;
}
.color {
  padding: 0;
  background: none;
  text-align: center;
}
.color img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 10px;
  border: 2px solid #eee;
  background: #f2f2f7;
}
.color.on img { border-color: #1d1d1f; }
.color em {
  display: block;
  margin-top: 4px;
  font-style: normal;
  font-size: 9px;
  font-weight: 600;
  color: var(--muted);
}
.color.on em { color: var(--ink); }

.row-buy {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
}
.qty {
  display: inline-flex;
  align-items: center;
  background: #f2f2f7;
  border-radius: 10px;
  overflow: hidden;
  flex: none;
}
.qty button { width: 32px; height: 36px; font-size: 16px; }
.qty span { min-width: 20px; text-align: center; font-weight: 600; font-size: 13px; }
.row-buy .btn { flex: 1; min-height: 36px; }

.freight {
  margin-top: 10px;
  width: 100%;
  text-align: left;
  background: #f2f2f7;
  border-radius: 12px;
  padding: 11px 12px;
  font-size: 13px;
  font-weight: 600;
}
.freight b { color: var(--green); }
.cep {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}
.cep input {
  flex: 1;
  height: 36px;
  border-radius: 8px;
  border: 1px solid var(--line);
  padding: 0 12px;
  font-size: 15px;
  background: #fafafa;
}
.cep button {
  height: 36px;
  padding: 0 12px;
  border-radius: 8px;
  background: #f2f2f7;
  font-weight: 600;
  font-size: 13px;
}
.ship-ok { margin-top: 6px; color: var(--green); font-size: 12px; font-weight: 600; }

.ok-line {
  margin: 8px 0 0;
  font-size: 12px;
  font-weight: 700;
  color: var(--green);
  text-align: center;
}
.pay-safe {
  margin: 6px 0 0;
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.pay-icons {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 10px;
}
.pay-icons img {
  height: 20px;
  width: auto;
  max-width: 52px;
  object-fit: contain;
}

.visual {
  margin-top: 18px;
}
.visual h2 {
  margin: 0 16px 10px;
  font-size: 18px;
  letter-spacing: -0.03em;
}
.shots {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  padding: 0 4px;
}
.shots figure {
  margin: 0;
  background: #f2f2f7;
  overflow: hidden;
}
.shots img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.shots figcaption {
  padding: 8px 10px 10px;
  font-size: 11px;
  font-weight: 600;
}
.story { margin-top: 4px; }
.story img { width: 100%; display: block; }

.reviews {
  padding: 18px 0 8px;
  background: #f5f5f7;
}
.reviews h2 {
  margin: 0 16px 4px;
  font-size: 18px;
  letter-spacing: -0.03em;
}
.rev-head {
  margin: 0 16px 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.rev-score {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1;
}
.rev-head small { color: var(--muted); }
.rev-carousel {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 0 16px 16px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.rev-carousel::-webkit-scrollbar { display: none; }
.rev-slide {
  flex: none;
  width: 78vw;
  max-width: 340px;
  scroll-snap-align: start;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
}
.rev-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  background-color: #eee;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.rev-slide .cap { padding: 10px 12px 12px; }
.rev-slide .who {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 4px;
}
.rev-slide p {
  margin: 0;
  font-size: 13px;
  line-height: 1.4;
  color: #333;
}

.acc { margin: 8px 16px 0; border-top: 1px solid var(--line); }
.acc details { border-bottom: 1px solid var(--line); }
.acc summary {
  list-style: none;
  padding: 14px 0;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
}
.acc summary::-webkit-details-marker { display: none; }
.acc summary::after { content: "+"; font-weight: 400; color: var(--muted); }
.acc details[open] summary::after { content: "–"; }
.acc .body { padding: 0 0 14px; color: var(--muted); font-size: 14px; line-height: 1.5; }
.desc-imgs img { width: 100%; margin: 0; border-radius: 0; }
.ra { width: min(100%, 240px); margin: 12px auto; }

.sticky-buy {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 30;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--line);
  padding: 8px 12px calc(8px + var(--safe-b));
  display: flex;
  gap: 8px;
  align-items: center;
}
.sticky-buy .meta { flex: 1; }
.sticky-buy .meta b { display: block; font-size: 14px; }
.sticky-buy .meta small { color: var(--muted); font-size: 11px; }
.sticky-buy .btn { min-width: 120px; min-height: 36px; background: var(--green); font-size: 14px; }

.drawer {
  position: fixed;
  inset: 0;
  z-index: 60;
  pointer-events: none;
}
.drawer.open { pointer-events: auto; }
.drawer-bg {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.4);
  opacity: 0;
  transition: .2s;
}
.drawer.open .drawer-bg { opacity: 1; }
.drawer-panel {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: min(100%, 420px);
  background: #fff;
  transform: translateX(100%);
  transition: .28s cubic-bezier(.2,.8,.2,1);
  display: flex;
  flex-direction: column;
  padding-bottom: var(--safe-b);
}
.drawer.open .drawer-panel { transform: none; }
.drawer-h {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  border-bottom: 1px solid var(--line);
  font-weight: 700;
}
.cart-list { flex: 1; overflow: auto; padding: 8px 16px; }
.cart-item {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.cart-item img { width: 72px; height: 72px; object-fit: cover; border-radius: 12px; background: #f2f2f7; }
.cart-item h4 { margin: 0 0 4px; font-size: 14px; }
.cart-item p { margin: 0; font-size: 12px; color: var(--muted); }
.cart-foot { padding: 16px; border-top: 1px solid var(--line); }
.total { display: flex; justify-content: space-between; font-weight: 700; margin-bottom: 12px; }

.search-panel {
  position: fixed;
  inset: 0;
  z-index: 70;
  background: #fff;
  display: none;
  flex-direction: column;
}
.search-panel.open { display: flex; }
.search-bar {
  display: flex;
  gap: 8px;
  padding: 12px;
  border-bottom: 1px solid var(--line);
}
.search-bar input {
  flex: 1;
  height: 44px;
  border: 0;
  background: #f2f2f7;
  border-radius: 12px;
  padding: 0 14px;
  font-size: 16px;
}
.search-results { overflow: auto; padding: 8px; }

.page {
  padding: 20px 16px 40px;
}
.page h1 { font-size: 28px; letter-spacing: -0.04em; }
.page p, .page li { color: var(--muted); line-height: 1.55; }
.page a { color: var(--blue); }
.page .btn { margin-top: 12px; width: auto; display: inline-flex; padding: 12px 18px; }
.form { display: grid; gap: 10px; }
.form input, .form textarea, .form select {
  width: 100%;
  min-height: 48px;
  border-radius: 12px;
  border: 1px solid var(--line);
  padding: 12px 14px;
  font-size: 16px;
  background: #fff;
}
.toast {
  position: fixed;
  left: 50%;
  bottom: calc(88px + var(--safe-b));
  transform: translateX(-50%) translateY(20px);
  background: #1d1d1f;
  color: #fff;
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 13px;
  opacity: 0;
  pointer-events: none;
  transition: .2s;
  z-index: 80;
}
.toast.on { opacity: 1; transform: translateX(-50%) translateY(0); }

.filters {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 4px 0 12px;
  scrollbar-width: none;
}
.filters::-webkit-scrollbar { display: none; }

.empty { padding: 48px 20px; text-align: center; color: var(--muted); }

body.ck-on .announce,
body.ck-on .header,
body.ck-on .footer,
body.ck-on .sticky-buy { display: none; }
body.ck-on .app { padding-bottom: 0; min-height: 100dvh; background: #fafafa; }
body.ck-on { background: #fafafa; }

.ck { max-width: 1040px; margin: 0 auto; }
.ck-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.ck-head .brand img { height: 28px; }
.ck-head span { font-size: 12px; color: var(--muted); font-weight: 600; }
.ck-grid { display: block; }
.ck-main { padding: 12px 16px 32px; }
.ck-main section { margin: 18px 0; }
.ck-main h2 { font-size: 18px; margin: 0 0 10px; letter-spacing: -0.03em; }
.ck-main input {
  width: 100%;
  height: 46px;
  border: 1px solid #d9d9d9;
  border-radius: 8px;
  padding: 0 12px;
  font-size: 16px;
  background: #fff;
  margin-bottom: 8px;
}
.ck-main input:focus { outline: 2px solid #111; outline-offset: -1px; }
.ck-main input.is-bad { border-color: #e11d48; background: #fff5f6; }
.ck-field-err {
  display: none;
  margin: -4px 0 8px;
  font-size: 12px;
  font-weight: 700;
  color: #e11d48;
}
.ck-2 { display: grid; grid-template-columns: 1fr 88px; gap: 8px; }
.ck-2 input { margin-bottom: 8px; }
.ck-cep-box {
  background: #f3faf6;
  border: 1px solid #d8eee0;
  border-radius: 12px;
  padding: 12px;
  margin-bottom: 10px;
}
.ck-cep-box label { display: block; font-size: 12px; font-weight: 700; margin-bottom: 6px; }
.ck-cep-row { display: flex; align-items: center; gap: 8px; }
.ck-cep-row input { margin: 0; flex: 1; background: #fff; }
.ck-cep-st { font-size: 12px; font-weight: 700; color: var(--green); min-width: 28px; }
.ck-cep-ship { margin: 8px 0 0; font-size: 13px; font-weight: 700; color: #128a4b; }
.ck-opt {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border: 1px solid #d9d9d9;
  border-radius: 10px;
  margin-bottom: 8px;
  background: #fff;
  cursor: pointer;
}
.ck-opt.on { border-color: #111; box-shadow: 0 0 0 1px #111; }
.ck-opt input { width: 18px; height: 18px; margin: 0; accent-color: #111; }
.ck-opt img { flex: none; }
.ck-opt div { flex: 1; min-width: 0; }
.ck-opt b { display: block; font-size: 14px; }
.ck-opt small { display: block; font-size: 12px; color: var(--muted); }
.ck-opt > span { font-size: 13px; font-weight: 700; }
.ck-opt .free, .ck-row .free { color: var(--green); font-weight: 700; }
.ck-cards { display: flex; gap: 4px; align-items: center; }
.ck-pay { width: 100%; min-height: 48px; margin-top: 8px; font-size: 16px; }
.ck-note { margin: 10px 0 0; font-size: 12px; color: var(--muted); text-align: center; }
.ck-note a { text-decoration: underline; }
.ck-sum-m {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0 12px;
  margin-bottom: 8px;
}
.ck-sum-m summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  font-weight: 600;
  font-size: 14px;
}
.ck-sum-m summary::-webkit-details-marker { display: none; }
.ck-sum-body { padding-bottom: 12px; }
.ck-side { display: none; }
.ck-item {
  display: grid;
  grid-template-columns: 52px 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 8px 0;
  font-size: 13px;
}
.ck-item b { display: block; font-size: 13px; }
.ck-item small { color: var(--muted); }
.ck-thumb { position: relative; }
.ck-thumb img {
  width: 52px; height: 52px; object-fit: cover;
  border-radius: 8px; border: 1px solid var(--line); background: #f2f2f7;
}
.ck-thumb span {
  position: absolute; right: -6px; top: -6px;
  min-width: 18px; height: 18px; padding: 0 5px;
  border-radius: 99px; background: #666; color: #fff;
  font-size: 11px; font-weight: 700; display: grid; place-items: center;
}
.ck-row { display: flex; justify-content: space-between; padding: 6px 0; font-size: 13px; }
.ck-row.total { font-size: 16px; font-weight: 800; border-top: 1px solid var(--line); margin-top: 6px; padding-top: 10px; }
.ck-pix {
  margin-top: 18px;
  padding: 16px;
  border: 1px solid #d8eee0;
  background: #f3faf6;
  border-radius: 12px;
  text-align: center;
}
.ck-pix h3 { margin: 0 0 6px; font-size: 18px; }
.ck-pix p { margin: 0 0 12px; font-size: 13px; color: #3a3a3c; }
.ck-qr { width: 240px; height: 240px; margin: 0 auto 12px; background: #fff; border-radius: 8px; }
.ck-pix textarea {
  width: 100%;
  min-height: 72px;
  font-size: 12px;
  border: 1px solid #d9d9d9;
  border-radius: 8px;
  padding: 8px;
  resize: none;
  margin-bottom: 8px;
}
.ck-pix-wait { font-weight: 700; color: var(--green) !important; }
.ck-thanks { padding: 24px 16px 48px; max-width: 520px; margin: 0 auto; }
.ck-thanks h1 { font-size: 28px; letter-spacing: -0.04em; }
.ck-thanks .btn { margin-top: 16px; }

@media (min-width: 860px) {
  .announce span { animation: none; }
  .hero { margin: 20px auto 0; max-width: 1120px; min-height: 520px; }
  .hero img { height: 520px; }
  .hero h1 { font-size: 48px; max-width: 560px; }
  .trust, .section, .track-cta, .footer, .page { max-width: 1120px; margin-left: auto; margin-right: auto; }
  .trust { grid-template-columns: repeat(4, 1fr); }
  .grid { grid-template-columns: repeat(4, 1fr); gap: 16px; }
  .pdp-wrap {
    max-width: 1120px;
    margin: 20px auto;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 32px;
    align-items: start;
  }
  .pdp { margin: 0; border-radius: 24px; padding: 22px; }
  .pdp-gallery { border-radius: 24px; overflow: hidden; }
  .visual h2, .reviews h2 { margin-left: 0; }
  .shots { padding: 0; gap: 10px; }
  .reviews { border-radius: 24px; }
  .sticky-buy { display: none; }
  .app { padding-bottom: 40px; }
  .row-buy .btn { display: inline-flex; }
  .ck-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 40px;
    padding: 24px 20px 48px;
    align-items: start;
  }
  .ck-main { padding: 0; }
  .ck-sum-m { display: none; }
  .ck-side {
    display: block;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 16px;
    position: sticky;
    top: 16px;
  }
}
