:root {
  color-scheme: light;
  --radius: 0.65rem;
  --primary: oklch(0.32 0.12 262);
  --primary-foreground: oklch(0.985 0 0);
  --background: oklch(0.985 0.003 250);
  --foreground: oklch(0.24 0.04 262);
  --card: oklch(1 0 0);
  --secondary: oklch(0.955 0.015 250);
  --secondary-foreground: oklch(0.32 0.08 262);
  --muted: oklch(0.955 0.01 250);
  --muted-foreground: oklch(0.5 0.03 262);
  --destructive: oklch(0.577 0.245 27.325);
  --border: oklch(0.91 0.012 250);
  --input: oklch(0.89 0.015 250);
  --font-sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-heading: var(--font-sans);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { font-family: var(--font-heading); margin: 0; }
p { margin: 0; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; touch-action: manipulation; -webkit-tap-highlight-color: transparent; }
a { touch-action: manipulation; -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
[hidden] { display: none !important; }
:focus-visible { outline: 3px solid color-mix(in oklch, var(--primary) 50%, white); outline-offset: 3px; }

.min-h-screen { min-height: 100vh; }
.bg-background { background: var(--background); }
.max-w-lg { max-width: 32rem; margin-left: auto; margin-right: auto; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }

/* ---------- Header ---------- */
.site-header {
  background: #fff;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 2px rgba(0,0,0,0.04);
  position: sticky;
  top: 0;
  z-index: 40;
}
.site-header .inner {
  max-width: 32rem;
  margin: 0 auto;
  padding: 0.5rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.site-header img.logo { height: 3rem; object-fit: contain; }
.site-header.small img.logo { height: 2.5rem; }
.header-back {
  position: absolute;
  left: 1rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--muted-foreground);
  background: none;
  border: none;
}
.header-secure {
  position: absolute;
  right: 1rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.6875rem;
  font-weight: 700;
  color: #059669;
}

/* ---------- Urgency bar ---------- */
.urgency-bar {
  background: #dc2626;
  color: #fff;
  text-align: center;
  font-size: 0.8125rem;
  font-weight: 700;
  padding: 0.5rem 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

/* ---------- Cards ---------- */
.card {
  background: #fff;
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  box-shadow: 0 1px 2px rgba(0,0,0,0.04);
  padding: 1rem;
}
main.page { max-width: 32rem; margin: 0 auto; padding: 0 1rem; }
.section { margin-top: 1rem; }
.demo-banner {
  width: fit-content;
  margin: 0.75rem auto 0;
  color: var(--muted-foreground);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 9999px;
  padding: 0.35rem 0.75rem;
  font-size: 0.6875rem;
}

/* ---------- Carousel ---------- */
.carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 0.75rem;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 1px 2px rgba(0,0,0,0.04);
}
.carousel-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  overscroll-behavior-x: contain;
}
.carousel-track::-webkit-scrollbar { display: none; }
.carousel-slide { flex: 0 0 100%; min-width: 0; scroll-snap-align: start; scroll-snap-stop: always; }
.carousel-image-button { display: block; width: 100%; padding: 0; border: 0; background: #fff; cursor: zoom-in; }
.carousel-image-button:focus-visible { outline-offset: -4px; }
.carousel-track img {
  width: 100%;
  height: auto;
  flex-shrink: 0;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background: #fff;
  cursor: zoom-in;
}
.carousel-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: #dc2626;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.25rem 0.625rem;
  border-radius: 9999px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}
.carousel-arrow {
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  color: var(--primary);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.9);
  border: 1px solid var(--border);
  border-radius: 9999px;
  padding: 0.375rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.15);
}
.carousel-arrow.left { left: 0.5rem; }
.carousel-arrow.right { right: 0.5rem; }
.carousel-dots {
  position: absolute;
  bottom: 0.4rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0;
  padding: 0 0.25rem;
  border-radius: 9999px;
  background: rgba(255,255,255,0.94);
}
.carousel-dot {
  display: grid;
  place-items: center;
  height: 2.75rem;
  width: 2.75rem;
  border-radius: 9999px;
  background: transparent;
  border: none;
  padding: 0;
}
.carousel-dot::after { content: ""; height: 0.5rem; width: 0.5rem; border-radius: 9999px; background: #b5c2da; transition: width 0.2s; }
.carousel-dot.active::after { width: 1.25rem; background: var(--primary); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip-path: inset(50%); white-space: nowrap; border: 0; }
@media (prefers-reduced-motion: reduce) {
  .carousel-dot::after, .lightbox-img { transition: none; }
}

/* ---------- Badges ---------- */
.badge-row { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.75rem; flex-wrap: wrap; }
.factory-badge {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  background: linear-gradient(to right, var(--primary), #1d4ed8);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  padding: 0.375rem 0.875rem;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  box-shadow: 0 0 0 2px color-mix(in oklch, var(--primary) 25%, transparent);
}
.factory-badge::after {
  content: "";
  position: absolute;
  top: 0; left: -80%; width: 50%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.35), transparent);
  animation: factory-shine 2.8s ease-in-out infinite;
}
@keyframes factory-shine { 0% { left: -80%; } 45% { left: 130%; } 100% { left: 130%; } }
.badge-original {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  background: #d1fae5;
  color: #047857;
  font-size: 0.6875rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 0.25rem 0.625rem;
  border-radius: 9999px;
}

/* ---------- Stars ---------- */
.stars { display: inline-flex; align-items: center; gap: 0.125rem; }
.stars svg { fill: #fbbf24; color: #fbbf24; }

/* ---------- Typography helpers ---------- */
.title-xl { font-size: 1.25rem; font-weight: 800; line-height: 1.3; color: var(--foreground); }
.text-muted { color: var(--muted-foreground); }
.price-big { font-size: 2.25rem; font-weight: 900; color: #059669; line-height: 1; }
.price-note { font-size: 0.75rem; color: var(--muted-foreground); margin-top: 0.25rem; }
.price-note strong { color: var(--foreground); }
.product-subtitle { font-size: 0.875rem; margin-top: 0.125rem; }
.rating-line { display: flex; align-items: center; gap: 0.5rem; margin-top: 0.5rem; }
.rating-line.compact { gap: 0.375rem; margin-top: 0; }
.rating-score { font-size: 0.875rem; font-weight: 700; }
.rating-count { font-size: 0.75rem; }
.price-wrap { margin-top: 0.75rem; }
.buy-button { margin-top: 1rem; }
.section-card-title { font-size: 1.125rem; font-weight: 800; margin-bottom: 0.5rem; }
.product-description-title { font-size: 0.875rem; font-weight: 700; margin-bottom: 0.5rem; }
.body-copy { font-size: 0.875rem; line-height: 1.6; }
.description-end { margin-top: 0.75rem; }

.stock-alert {
  margin-top: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #dc2626;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 0.5rem;
  padding: 0.5rem 0.75rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: none;
  border-radius: 0.75rem;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.15s, background 0.15s;
}
.btn:active { transform: scale(0.97); }
.btn:disabled { opacity: 0.7; cursor: not-allowed; }
.btn-primary {
  background: #10b981;
  color: #fff;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
}
.btn-outline {
  background: #fff;
  border: 1px solid color-mix(in oklch, var(--primary) 40%, transparent);
  color: var(--primary);
}
.btn-block { width: 100%; }
.btn-lg { height: 3.5rem; font-size: 1.125rem; }
.btn-md { height: 3rem; font-size: 1rem; }

.pulse-cta { animation: pulse-cta 2s ease-in-out infinite; }
@keyframes pulse-cta {
  0%, 100% { box-shadow: 0 0 0 0 rgba(16,185,129,0.55); }
  50% { box-shadow: 0 0 0 12px rgba(16,185,129,0); }
}

.trust-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  font-size: 0.6875rem;
  color: var(--muted-foreground);
  margin-top: 0.5rem;
}

/* ---------- Trust badges grid ---------- */
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.5rem; margin-top: 1rem; text-align: center; }
.trust-item {
  display: flex; flex-direction: column; align-items: center; gap: 0.25rem;
  background: var(--secondary); border-radius: 0.5rem; padding: 0.625rem;
}
.trust-item svg { color: var(--primary); }
.trust-item span { font-size: 0.625rem; font-weight: 700; color: var(--secondary-foreground); line-height: 1.2; }

/* ---------- Description ---------- */
.benefit-list { margin-top: 0.75rem; display: flex; flex-direction: column; gap: 0.5rem; padding: 0; list-style: none; }
.benefit-list li { display: flex; align-items: flex-start; gap: 0.5rem; font-size: 0.875rem; }
.benefit-list svg { color: #10b981; flex-shrink: 0; }

/* ---------- Reviews ---------- */
.review-summary { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.25rem; }
.rating-dist { display: flex; flex-direction: column; gap: 0.25rem; margin: 1rem 0; }
.rating-row { display: flex; align-items: center; gap: 0.5rem; font-size: 0.6875rem; color: var(--muted-foreground); }
.rating-row .label { width: 1.5rem; flex-shrink: 0; font-weight: 600; }
.rating-row .bar-bg { flex: 1; height: 0.5rem; background: var(--muted); border-radius: 9999px; overflow: hidden; }
.rating-row .bar-fill { height: 100%; background: #fbbf24; border-radius: 9999px; }
.rating-row .pct { width: 2rem; flex-shrink: 0; text-align: right; }

.review-card { border: 1px solid var(--border); border-radius: 0.75rem; padding: 0.75rem; background: var(--background); margin-top: 1rem; }
.review-head { display: flex; align-items: center; gap: 0.625rem; }
.review-head img.avatar { height: 2.5rem; width: 2.5rem; border-radius: 9999px; object-fit: cover; border: 1px solid var(--border); }
.avatar-initials {
  height: 2.5rem;
  width: 2.5rem;
  border-radius: 9999px;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}
.review-avatar-photo {
  object-fit: cover;
  object-position: center;
  border: 2px solid #fff;
  box-shadow: 0 0 0 1px rgba(29, 78, 216, 0.16);
}
.avatar-1 { background: #7c3aed; }
.avatar-2 { background: #db2777; }
.avatar-3 { background: #0284c7; }
.avatar-4 { background: #059669; }
.review-person { min-width: 0; }
.review-name-row { display: flex; align-items: center; gap: 0.375rem; }
.review-name-row .name { font-size: 0.875rem; font-weight: 700; }
.review-name-row svg { color: var(--primary); }
.review-time { display: flex; align-items: center; gap: 0.375rem; font-size: 0.6875rem; color: var(--muted-foreground); }
.review-comment { font-size: 0.875rem; margin-top: 0.5rem; line-height: 1.6; }
.review-photo { margin-top: 0.5rem; border-radius: 0.5rem; border: 1px solid var(--border); width: 10rem; height: 10rem; object-fit: cover; cursor: zoom-in; }
.review-verified { display: flex; align-items: center; gap: 0.375rem; margin-top: 0.5rem; font-size: 0.6875rem; color: #059669; font-weight: 600; }
.reviews-total { font-size: 0.75rem; margin-bottom: 0.75rem; }
.reviews-more-wrap { position: relative; margin-top: 0.5rem; }
.reviews-more-button { height: 2.75rem; }
.reviews-done { text-align: center; font-size: 0.75rem; margin-top: 1rem; }

/* ---------- Lightbox ---------- */
.lightbox-overlay {
  position: fixed; inset: 0; z-index: 100; background: rgba(0,0,0,0.85);
  display: flex; align-items: center; justify-content: center;
}
.lightbox-close {
  position: absolute; top: 1rem; right: 1rem; z-index: 10;
  background: rgba(255,255,255,0.95); border: none; border-radius: 9999px;
  padding: 0.625rem; box-shadow: 0 4px 10px rgba(0,0,0,0.25);
}
.lightbox-img { max-height: 85vh; max-width: 92vw; object-fit: contain; cursor: zoom-in; user-select: none; transition: transform 0.2s; }
.lightbox-img.zoomed { max-width: none; max-height: none; width: 170vw; height: auto; cursor: zoom-out; }
.lightbox-zoom { position: absolute; top: 1rem; left: 1rem; z-index: 1; min-height: 2.75rem; padding: 0.5rem 1rem; border: 1px solid #fff; border-radius: 9999px; background: #fff; color: var(--primary); font-weight: 700; }
.lightbox-img-wrap { max-height: 100%; max-width: 100%; overflow: auto; }
.lightbox-hint {
  position: absolute; bottom: 1.25rem; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,0.8); font-size: 0.75rem; font-weight: 500;
  background: rgba(0,0,0,0.4); padding: 0.375rem 0.75rem; border-radius: 9999px;
}

/* ---------- Popup de oferta / cupom ---------- */
.offer-overlay {
  position: fixed; inset: 0; z-index: 150;
  background: rgba(15, 23, 42, 0.7);
  display: flex; align-items: center; justify-content: center;
  padding: 1rem;
  animation: offer-fade 0.2s ease-out;
}
@keyframes offer-fade { from { opacity: 0; } to { opacity: 1; } }
.offer-modal {
  position: relative;
  width: 100%;
  max-width: 22rem;
  max-height: calc(100vh - 2rem);
  overflow-y: auto;
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 20px 40px rgba(0,0,0,0.35);
  animation: offer-pop 0.35s cubic-bezier(0.18, 0.89, 0.32, 1.28);
}
@keyframes offer-pop {
  0% { transform: scale(0.92) translateY(14px); opacity: 0; }
  100% { transform: none; opacity: 1; }
}
.offer-head {
  background: linear-gradient(to right, var(--primary), #1d4ed8);
  border-radius: 1rem 1rem 0 0;
  padding: 1.25rem 1.25rem 3.25rem;
  text-align: center;
  color: #fff;
}
.offer-close {
  position: absolute; top: 0.625rem; right: 0.625rem;
  height: 2rem; width: 2rem;
  display: flex; align-items: center; justify-content: center;
  border: none; border-radius: 9999px;
  background: rgba(255,255,255,0.18);
  color: #fff;
  transition: background 0.15s;
}
.offer-pill {
  display: inline-flex; align-items: center; gap: 0.375rem;
  background: rgba(255,255,255,0.18);
  color: #fff;
  font-size: 0.75rem; font-weight: 800;
  padding: 0.3125rem 0.75rem;
  border-radius: 9999px;
}
.offer-head h2 {
  font-size: 1.25rem; font-weight: 900;
  margin-top: 0.75rem;
}
.offer-head p {
  font-size: 0.8125rem; font-weight: 600; line-height: 1.45;
  color: rgba(255,255,255,0.85);
  margin-top: 0.375rem;
}
.offer-body { padding: 0 1.25rem 1.25rem; }
.offer-thumb {
  height: 5rem; width: 5rem;
  margin: -2.75rem auto 0.75rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 0.25rem;
  object-fit: contain;
  box-shadow: 0 4px 10px rgba(0,0,0,0.12);
}
.offer-coupon {
  background: #ecfdf5;
  border: 1px dashed #6ee7b7;
  border-radius: 0.75rem;
  padding: 0.875rem 0.75rem;
  text-align: center;
}
.offer-coupon .offer-coupon-label {
  display: inline-flex; align-items: center; gap: 0.375rem;
  font-size: 0.75rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.02em; color: #047857;
}
.offer-coupon .offer-coupon-price {
  font-size: 1.375rem; font-weight: 900; color: #059669;
  line-height: 1.2; margin-top: 0.25rem;
}
.offer-coupon .offer-coupon-note {
  font-size: 0.75rem; font-weight: 700; color: var(--foreground);
  margin-top: 0.125rem;
}
.offer-coupon .offer-coupon-from {
  font-size: 0.6875rem; color: var(--muted-foreground); margin-top: 0.25rem;
}
.offer-coupon .offer-coupon-from s { color: var(--muted-foreground); }
.offer-lasts {
  display: flex; align-items: center; gap: 0.625rem;
  margin-top: 0.875rem;
  background: var(--secondary);
  border-radius: 0.5rem;
  padding: 0.625rem 0.75rem;
  font-size: 0.8125rem; font-weight: 600; line-height: 1.4;
  color: var(--secondary-foreground);
}
.offer-lasts .offer-lasts-icon { flex-shrink: 0; color: var(--primary); display: flex; }
.offer-expire {
  display: flex; align-items: center; gap: 0.625rem;
  margin-top: 0.75rem;
  font-size: 0.8125rem; font-weight: 600; line-height: 1.35;
  color: var(--muted-foreground);
}
.offer-expire .offer-expire-icon {
  flex-shrink: 0;
  height: 2rem; width: 2rem; border-radius: 9999px;
  display: flex; align-items: center; justify-content: center;
  background: color-mix(in oklch, var(--primary) 10%, transparent);
  color: var(--primary);
}
.offer-dismiss {
  display: block; width: 100%;
  margin-top: 0.75rem;
  background: none; border: none;
  font-size: 0.8125rem; font-weight: 600;
  color: var(--muted-foreground);
  padding: 0.25rem;
}

/* ---------- Cupom aplicado no resumo do pedido ---------- */
.coupon-applied {
  display: flex; align-items: center; gap: 0.5rem;
  background: #ecfdf5;
  border: 1px dashed #6ee7b7;
  border-radius: 0.5rem;
  padding: 0.5rem 0.625rem;
  margin-bottom: 0.5rem;
}
.coupon-applied svg { color: #059669; flex-shrink: 0; }
.coupon-applied .coupon-applied-text { min-width: 0; flex: 1; }
.coupon-applied .coupon-applied-title { font-size: 0.75rem; font-weight: 800; color: #047857; }
.coupon-applied .coupon-applied-sub { font-size: 0.6875rem; color: var(--muted-foreground); }
.coupon-applied .coupon-applied-value { font-size: 0.875rem; font-weight: 900; color: #059669; white-space: nowrap; }

/* ---------- Final CTA ---------- */
.final-cta { margin-top: 1rem; margin-bottom: 1.5rem; background: var(--primary); border-radius: 0.75rem; padding: 1.25rem; text-align: center; }
.final-cta h2 { color: #fff; font-size: 1.25rem; font-weight: 800; }
.final-cta p { color: rgba(255,255,255,0.8); font-size: 0.875rem; margin-top: 0.25rem; }
.final-cta strong { color: #fff; font-weight: 800; }
.final-buy-button { margin-top: 0.75rem; }

/* ---------- Footer ---------- */
.site-footer { text-align: center; font-size: 0.6875rem; color: var(--muted-foreground); padding-bottom: 1.5rem; }
.site-footer p { display: flex; align-items: center; justify-content: center; gap: 0.25rem; margin-top: 0.25rem; }

/* ---------- Fixed bottom CTA ---------- */
.fixed-cta {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 50;
  background: rgba(255,255,255,0.95); backdrop-filter: blur(6px);
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 12px rgba(0,0,0,0.08);
}
.fixed-cta .inner { max-width: 32rem; margin: 0 auto; padding: 0.625rem 1rem; display: flex; align-items: center; gap: 0.75rem; }
.fixed-cta .price-label { font-size: 0.6875rem; color: var(--muted-foreground); line-height: 1; }
.fixed-cta .price-value { font-size: 1.25rem; font-weight: 900; color: #059669; line-height: 1.2; }
.fixed-cta .btn { flex: 1; height: 3rem; font-size: 1rem; }
.fixed-price { min-width: 0; }
body.has-fixed-cta { padding-bottom: 5.5rem; }

/* ---------- Forms ---------- */
.form-section { margin-top: 1rem; display: flex; flex-direction: column; gap: 1rem; }
.field-label { display: block; font-size: 0.75rem; font-weight: 700; margin-bottom: 0.375rem; }
.field-input {
  width: 100%; height: 2.75rem; border-radius: 0.5rem;
  border: 1px solid var(--input); background: #fff; padding: 0 0.75rem;
  font-size: 0.875rem; font-family: inherit; color: var(--foreground);
}
.field-input:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 2px color-mix(in oklch, var(--primary) 20%, transparent); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.field-row-3 { display: grid; grid-template-columns: 1fr 1fr 4.5rem; gap: 0.75rem; }
.field-wrap { position: relative; }
.field-spinner { position: absolute; right: 0.75rem; top: 50%; transform: translateY(-50%); }
.section-title { font-size: 0.875rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.02em; color: var(--muted-foreground); margin-bottom: 0.75rem; }

.order-summary-row { display: flex; gap: 0.75rem; }
.order-summary-row img { height: 5rem; width: 5rem; border-radius: 0.5rem; border: 1px solid var(--border); object-fit: contain; background: #fff; flex-shrink: 0; }
.qty-control { display: flex; align-items: center; border: 1px solid var(--border); border-radius: 0.5rem; width: fit-content; }
.qty-control button { background: none; border: none; padding: 0.375rem; color: var(--muted-foreground); }
.qty-control button:disabled { opacity: 0.4; }
.qty-control span { width: 2rem; text-align: center; font-size: 0.875rem; font-weight: 700; }
.order-totals { border-top: 1px solid var(--border); margin-top: 0.75rem; padding-top: 0.75rem; display: flex; flex-direction: column; gap: 0.25rem; font-size: 0.875rem; }
.order-totals .row { display: flex; justify-content: space-between; color: var(--muted-foreground); }
.order-totals .row.total { font-weight: 800; color: var(--foreground); font-size: 1rem; }
.order-totals .row.total span:last-child { color: #059669; }

.trust-inline { display: flex; align-items: center; justify-content: center; gap: 1rem; font-size: 0.6875rem; color: var(--muted-foreground); }
.trust-inline span { display: flex; align-items: center; gap: 0.25rem; }

/* ---------- Local demo checkout ---------- */
.demo-checkout-bar { font-size: 0.6875rem; letter-spacing: 0.03em; }
.checkout-page { padding-bottom: 2rem; }
.checkout-title { font-size: 1.375rem; font-weight: 900; margin-top: 1rem; }
.demo-notice {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  padding: 0.75rem;
  border: 1px solid #bfdbfe;
  border-radius: 0.75rem;
  background: #eff6ff;
  color: #1e40af;
  font-size: 0.75rem;
  line-height: 1.45;
}
.demo-notice svg { flex-shrink: 0; margin-top: 0.125rem; }
.demo-notice p { margin-top: 0.125rem; color: #31568f; }
.checkout-summary { margin-top: 1rem; align-items: center; }
.checkout-summary img { height: 5.5rem; width: 5.5rem; }
.summary-name { font-size: 0.875rem; font-weight: 800; }
.summary-detail { font-size: 0.75rem; margin-top: 0.125rem; }
.summary-price { color: #059669; font-size: 1.125rem; font-weight: 900; margin-top: 0.35rem; }
.checkout-submit { margin-top: 1rem; }
.checkout-success { text-align: center; padding: 1.5rem; }
.checkout-success h2 { margin-top: 0.75rem; font-size: 1.25rem; }
.checkout-success > p { margin: 0.5rem 0 1rem; font-size: 0.875rem; line-height: 1.5; }

@media (max-width: 390px) {
  .site-header .inner { padding-left: 0.75rem; padding-right: 0.75rem; }
  .header-back { left: 0.75rem; font-size: 0.75rem; }
  .header-secure { right: 0.75rem; }
  .field-row { grid-template-columns: 1fr; }
  .trust-grid { gap: 0.375rem; }
  .fixed-cta .inner { padding-left: 0.75rem; padding-right: 0.75rem; }
  .fixed-cta .btn { font-size: 0.875rem; }
}

/* ---------- PIX payment screen ---------- */
.pix-status-badge {
  display: inline-flex; align-items: center; gap: 0.375rem;
  background: #d1fae5; color: #047857; font-size: 0.75rem; font-weight: 800;
  padding: 0.25rem 0.75rem; border-radius: 9999px;
}
.pix-qr-wrap { display: flex; justify-content: center; margin-top: 1rem; }
.pix-qr-box { background: #fff; border: 2px solid color-mix(in oklch, var(--primary) 20%, transparent); border-radius: 1rem; padding: 1rem; box-shadow: 0 1px 2px rgba(0,0,0,0.04); }
.pix-amount { text-align: center; font-size: 1.875rem; font-weight: 900; color: #059669; margin-top: 1rem; }
.pix-timer { display: flex; align-items: center; justify-content: center; gap: 0.5rem; margin-top: 0.5rem; font-size: 0.875rem; font-weight: 700; color: #dc2626; }
.pix-copy-label { font-size: 0.75rem; font-weight: 700; color: var(--muted-foreground); margin-bottom: 0.5rem; text-align: center; }
.pix-code-box {
  width: 100%; text-align: left; background: var(--secondary);
  border: 1px dashed color-mix(in oklch, var(--primary) 40%, transparent);
  border-radius: 0.75rem; padding: 0.625rem 0.75rem; margin-bottom: 0.75rem;
  font-family: monospace; font-size: 0.6875rem; color: var(--muted-foreground);
  word-break: break-all; overflow: hidden; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  border-style: dashed; cursor: pointer;
}
.pix-waiting { margin-top: 1.25rem; background: var(--secondary); border-radius: 0.75rem; padding: 1rem; display: flex; align-items: flex-start; gap: 0.75rem; }
.pix-waiting p:first-child { font-size: 0.875rem; font-weight: 700; }
.pix-waiting p:last-child { font-size: 0.75rem; color: var(--muted-foreground); margin-top: 0.125rem; }
.pix-steps { margin-top: 1rem; display: flex; flex-direction: column; gap: 0.5rem; font-size: 0.75rem; color: var(--muted-foreground); }
.pix-steps p { display: flex; align-items: center; gap: 0.375rem; }
.pix-steps svg { color: #10b981; flex-shrink: 0; }
.pix-expired { text-align: center; padding: 1rem 0; }
.pix-expired svg { color: #ef4444; margin: 0 auto 0.75rem; display: block; }

/* ---------- Icon sizing utilities ---------- */
.h-3, .w-3 { height: 0.75rem; width: 0.75rem; }
.h-3-5, .w-3-5 { height: 0.875rem; width: 0.875rem; }
.h-4, .w-4 { height: 1rem; width: 1rem; }
.h-5, .w-5 { height: 1.25rem; width: 1.25rem; }
.h-6, .w-6 { height: 1.5rem; width: 1.5rem; }
.h-8, .w-8 { height: 2rem; width: 2rem; }
.h-9, .w-9 { height: 2.25rem; width: 2.25rem; }
.h-12, .w-12 { height: 3rem; width: 3rem; }
.h-16, .w-16 { height: 4rem; width: 4rem; }
.shrink-0 { flex-shrink: 0; }
.animate-spin { animation: spin 1s linear infinite; }

/* ---------- Spinner ---------- */
.spinner { animation: spin 1s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- Thank you / tracking generic ---------- */
.center-py { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.75rem; padding: 4rem 0; text-align: center; }
.status-card { background: #fff; border-radius: 0.75rem; border: 1px solid var(--border); box-shadow: 0 1px 2px rgba(0,0,0,0.04); padding: 1.5rem; text-align: center; }
.status-icon-circle { height: 4rem; width: 4rem; border-radius: 9999px; display: flex; align-items: center; justify-content: center; margin: 0 auto; }
.status-icon-circle.amber { background: var(--secondary); }
.status-icon-circle.emerald { background: #d1fae5; }
.status-icon-circle.emerald svg { color: #059669; }
.success-pop { animation: success-pop 0.5s cubic-bezier(0.18, 0.89, 0.32, 1.28); }
@keyframes success-pop { 0% { transform: scale(0.4); opacity: 0; } 60% { transform: scale(1.08); opacity: 1; } 100% { transform: scale(1); } }

.info-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; margin-top: 1.5rem; text-align: left; }
.info-box { background: var(--secondary); border-radius: 0.75rem; padding: 0.75rem; display: flex; align-items: flex-start; gap: 0.5rem; }
.info-box svg { color: var(--primary); flex-shrink: 0; margin-top: 0.125rem; }
.info-box p:first-child { font-size: 0.75rem; font-weight: 700; }
.info-box p:last-child { font-size: 0.6875rem; color: var(--muted-foreground); }

/* ---------- Tracking ---------- */
.search-box label { display: block; font-size: 0.75rem; font-weight: 700; margin: 1rem 0 0.375rem; }
.search-row { display: flex; gap: 0.5rem; }
.search-row .field-input { height: 3rem; }
.search-row .btn { flex-shrink: 0; height: 3rem; padding: 0 1.25rem; }
.error-text { font-size: 0.75rem; font-weight: 600; color: var(--destructive); margin-top: 0.5rem; }
.stored-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.5rem; }
.stored-item {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 0.75rem;
  border: 1px solid var(--border); border-radius: 0.75rem; padding: 0.75rem; text-align: left; background: none;
}
.stored-item svg { color: var(--primary); flex-shrink: 0; }

.order-header-strip { padding: 0.75rem 1rem; display: flex; align-items: center; gap: 0.5rem; }
.order-header-strip.paid { background: #10b981; }
.order-header-strip.pending { background: #f59e0b; }
.order-header-strip svg { color: #fff; flex-shrink: 0; }
.order-header-strip .title { font-size: 0.875rem; font-weight: 900; color: #fff; }
.order-header-strip .subtitle { font-size: 0.6875rem; color: rgba(255,255,255,0.9); }
.order-body { padding: 1rem; }
.order-body-top { display: flex; align-items: center; justify-content: space-between; gap: 0.75rem; }
.tracking-code-label { font-size: 0.6875rem; font-weight: 700; color: var(--muted-foreground); text-transform: uppercase; letter-spacing: 0.02em; }
.tracking-code-value { font-size: 1.125rem; font-weight: 900; letter-spacing: 0.05em; }
.copy-btn { display: flex; align-items: center; gap: 0.375rem; font-size: 0.75rem; font-weight: 800; padding: 0.5rem 0.75rem; border-radius: 0.5rem; background: color-mix(in oklch, var(--primary) 10%, transparent); color: var(--primary); border: none; }
.copy-btn.copied { background: #d1fae5; color: #047857; }
.order-meta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; margin-top: 1rem; font-size: 0.875rem; }
.order-meta-grid .label { font-size: 0.6875rem; font-weight: 700; color: var(--muted-foreground); text-transform: uppercase; }
.order-meta-grid .value { font-weight: 700; }
.order-meta-grid .value.green { color: #059669; }

.dl-row { display: flex; justify-content: space-between; gap: 0.75rem; font-size: 0.875rem; padding: 0.25rem 0; }
.dl-row dt { color: var(--muted-foreground); }
.dl-row dd { font-weight: 700; text-align: right; margin: 0; }

.section-heading { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; font-weight: 800; margin-bottom: 0.75rem; }
.section-heading svg { color: var(--primary); }

.pending-box { background: #fffbeb; border: 1px solid #fde68a; border-radius: 0.75rem; padding: 1rem; text-align: center; }
.pending-box svg { color: #f59e0b; margin: 0 auto 0.5rem; }
.pending-box p:first-of-type { font-size: 0.875rem; font-weight: 700; color: #b45309; }
.pending-box p:last-of-type { font-size: 0.75rem; color: #d97706; margin-top: 0.25rem; }

/* ---------- Timeline ---------- */
.timeline { list-style: none; padding: 0; margin: 0; position: relative; }
.timeline-item { position: relative; display: flex; gap: 1rem; padding-bottom: 1.5rem; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-connector { position: absolute; left: 19px; top: 40px; bottom: 0; width: 2px; background: var(--border); }
.timeline-connector.done { background: #10b981; }
.timeline-icon { position: relative; z-index: 1; flex-shrink: 0; height: 2.5rem; width: 2.5rem; border-radius: 9999px; border: 2px solid var(--border); background: #fff; color: var(--muted-foreground); display: flex; align-items: center; justify-content: center; }
.timeline-icon.done { background: #10b981; border-color: #10b981; color: #fff; }
.timeline-icon.current { background: var(--primary); border-color: var(--primary); color: #fff; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.6; } }
.timeline-body { min-width: 0; flex: 1; padding-top: 0.25rem; }
.timeline-title-row { display: flex; flex-wrap: wrap; align-items: center; gap: 0.5rem; }
.timeline-title { font-size: 0.875rem; font-weight: 800; color: var(--foreground); }
.timeline-title.upcoming { color: var(--muted-foreground); }
.timeline-tag { font-size: 0.625rem; font-weight: 900; text-transform: uppercase; letter-spacing: 0.02em; padding: 0.125rem 0.5rem; border-radius: 9999px; }
.timeline-tag.current { background: color-mix(in oklch, var(--primary) 10%, transparent); color: var(--primary); }
.timeline-tag.done { background: #d1fae5; color: #047857; }
.timeline-desc { font-size: 0.75rem; color: var(--muted-foreground); margin-top: 0.125rem; line-height: 1.5; }
.timeline-date { font-size: 0.6875rem; margin-top: 0.25rem; font-weight: 600; color: color-mix(in oklch, var(--muted-foreground) 70%, transparent); }
.timeline-date.done { color: #059669; }

/* ---------- Toast ---------- */
#toast-container { position: fixed; top: 1rem; left: 50%; transform: translateX(-50%); z-index: 200; display: flex; flex-direction: column; gap: 0.5rem; align-items: center; width: 100%; padding: 0 1rem; }
.toast {
  background: #fff; border: 1px solid var(--border); border-radius: 0.5rem; box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  padding: 0.75rem 1rem; font-size: 0.875rem; font-weight: 600; max-width: 24rem; text-align: center;
  animation: toast-in 0.2s ease-out;
}
.toast.success { border-color: #6ee7b7; color: #047857; }
.toast.error { border-color: #fca5a5; color: #b91c1c; }
@keyframes toast-in { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }

@media (hover: hover) and (pointer: fine) {
  .btn-primary:hover { background: #059669; }
  .btn-outline:hover { background: color-mix(in oklch, var(--primary) 5%, white); }
  .offer-close:hover { background: rgba(255,255,255,0.32); }
  .offer-dismiss:hover { color: var(--foreground); }
  .stored-item:hover { background: var(--secondary); }
}

@media (prefers-reduced-motion: reduce) {
  .pulse-cta, .factory-badge::after, .success-pop, .timeline-icon.current { animation: none; }
}

/* ---------- OMO offer and commerce flow ---------- */
.omo-wordmark {
  display: inline-block;
  color: #08367a;
  font-size: 2rem;
  font-weight: 1000;
  font-style: italic;
  letter-spacing: -0.11em;
  line-height: 1;
  padding-right: 0.12em;
  text-shadow: 0 1px 0 #fff;
}
.omo-wordmark::after {
  content: "";
  display: block;
  height: 0.18rem;
  margin: 0.08rem 0.1rem 0;
  border-radius: 999px;
  background: #df172e;
  transform: skewX(-18deg);
}
.omo-wordmark.compact { font-size: 1.65rem; }
.anchor-price { color: var(--muted-foreground); font-size: 0.75rem; margin-bottom: 0.2rem; }
.anchor-price s { font-weight: 700; }
.savings-note { color: #047857; font-size: 0.6875rem; margin-top: 0.4rem; }
.savings-note strong { font-weight: 900; }

.checkout-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  margin-bottom: 1rem;
  color: var(--muted-foreground);
  font-size: 0.65rem;
  font-weight: 800;
}
.checkout-steps span { display: inline-flex; align-items: center; gap: 0.25rem; white-space: nowrap; }
.checkout-steps b {
  display: grid;
  place-items: center;
  height: 1.35rem;
  width: 1.35rem;
  border-radius: 50%;
  background: var(--muted);
  font-size: 0.65rem;
}
.checkout-steps i { width: 1.5rem; height: 2px; background: var(--border); }
.checkout-steps .active { color: var(--primary); }
.checkout-steps .active b { color: #fff; background: var(--primary); }
.checkout-steps .done { color: #047857; }
.checkout-steps .done b { color: #fff; background: #10b981; }
.summary-anchor { margin-top: 0.25rem; color: var(--muted-foreground); font-size: 0.6875rem; }
.summary-anchor span { margin-left: 0.25rem; color: #b91c1c; font-weight: 900; }
.checkout-section-title { margin-top: 1.25rem; }
.free-label { color: #047857; font-weight: 800; }
.form-error { margin-top: 0.75rem; padding: 0.65rem; border-radius: 0.5rem; background: #fef2f2; color: #b91c1c; font-size: 0.75rem; font-weight: 700; }

.payment-page { padding-bottom: 2rem; }
.payment-card { padding: 1.25rem 1rem; text-align: center; }
.payment-title { margin-top: 0.75rem; font-size: 1.6rem; font-weight: 900; }
.payment-subtitle { margin: 0.35rem auto 0; max-width: 20rem; font-size: 0.8rem; line-height: 1.45; }
.payment-card .pix-status-badge { margin-top: 0.15rem; }
.pix-qr-box canvas, .pix-qr-box img { display: block; width: min(68vw, 16rem); height: auto; image-rendering: pixelated; }
.field-label em { color: var(--muted-foreground); font-size: 0.65rem; font-style: normal; font-weight: 500; }
.field-row-address { grid-template-columns: minmax(0, 2fr) minmax(5rem, 0.7fr); }
.field-row-state { grid-template-columns: minmax(4.5rem, 0.45fr) minmax(0, 2fr); }
.demo-qr-label { margin-top: 0.4rem; color: #b91c1c; font-size: 0.6rem; font-weight: 900; letter-spacing: 0.08em; }
.pix-code-section { margin-top: 1.25rem; text-align: left; }
.pix-code-section .btn.copied { border-color: #6ee7b7; background: #ecfdf5; color: #047857; }
.payment-instructions { border-top: 1px solid var(--border); margin-top: 1.25rem; padding-top: 1rem; text-align: left; }
.simulation-box {
  margin-top: 1.25rem;
  padding: 0.9rem;
  border: 1px dashed #93c5fd;
  border-radius: 0.75rem;
  background: #eff6ff;
  color: #1e3a8a;
  text-align: left;
}
.simulation-box > strong { font-size: 0.8rem; }
.simulation-box > p { margin: 0.25rem 0 0.8rem; color: #3f5f94; font-size: 0.7rem; line-height: 1.45; }
.simulation-box .btn { font-size: 0.85rem; }
.compact-center { gap: 1rem; padding: 2.5rem 1rem; }
.compact-center h1 { font-size: 1.35rem; }
.compact-center p { font-size: 0.85rem; }

.success-strip { padding: 0.55rem 0.75rem; background: #059669; color: #fff; text-align: center; font-size: 0.7rem; font-weight: 900; letter-spacing: 0.05em; }
.thank-you-page { padding-bottom: 2rem; }
.thank-you-card { padding: 1.25rem; text-align: center; }
.thank-you-card .status-icon-circle { margin-top: 0.75rem; }
.success-kicker { margin-top: 0.65rem; color: #047857; font-size: 0.7rem; font-weight: 900; letter-spacing: 0.06em; text-transform: uppercase; }
.thank-you-card h1 { margin-top: 0.2rem; font-size: 1.55rem; font-weight: 900; }
.thank-you-copy { margin: 0.45rem auto 0; max-width: 24rem; font-size: 0.9rem; line-height: 1.55; }
.order-number-box { display: flex; align-items: center; justify-content: space-between; margin-top: 1.2rem; padding: 0.7rem 0.85rem; border-radius: 0.55rem; background: var(--secondary); font-size: 0.72rem; }
.order-number-box strong { font-size: 0.8rem; letter-spacing: 0.06em; }
.tracking-highlight {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: 0.75rem;
  padding: 0.9rem;
  border: 1px solid #bfdbfe;
  border-radius: 0.75rem;
  background: #eff6ff;
  color: #123d7a;
  text-align: left;
}
.tracking-highlight > svg { flex-shrink: 0; color: var(--primary); }
.tracking-highlight > div { min-width: 0; flex: 1; }
.tracking-label { font-size: 0.65rem; font-weight: 700; }
.tracking-code { margin-top: 0.15rem; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 1rem; font-weight: 900; letter-spacing: 0.06em; overflow-wrap: anywhere; }
.copy-icon-button { display: grid; place-items: center; height: 2.3rem; width: 2.3rem; flex-shrink: 0; border: 0; border-radius: 0.55rem; background: #fff; color: var(--primary); box-shadow: 0 1px 3px rgb(0 0 0 / 10%); }
.copy-icon-button.copied { background: #d1fae5; color: #047857; }
.delivery-promise { display: flex; align-items: center; gap: 0.7rem; margin-top: 0.75rem; padding: 0.85rem; border: 1px solid #a7f3d0; border-radius: 0.75rem; background: #ecfdf5; color: #065f46; text-align: left; }
.delivery-promise > svg { flex-shrink: 0; }
.delivery-promise strong { font-size: 0.78rem; }
.delivery-promise p { margin-top: 0.15rem; font-size: 0.68rem; }
.thank-you-summary { align-items: center; margin-top: 0.9rem; padding: 0.75rem 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); text-align: left; }
.thank-you-summary img { height: 4rem; width: 4rem; }
.thank-you-summary .summary-copy { min-width: 0; flex: 1; }
.thank-you-summary > strong { color: #047857; font-size: 0.85rem; white-space: nowrap; }
.tracking-main-button { display: flex; align-items: center; justify-content: center; gap: 0.5rem; margin-top: 1rem; }
.back-home-link { display: inline-block; margin-top: 0.9rem; color: var(--muted-foreground); font-size: 0.75rem; font-weight: 700; text-decoration: underline; }
.demo-footnote { margin-top: 0.9rem; color: var(--muted-foreground); font-size: 0.62rem; line-height: 1.4; }

.tracking-header { position: sticky; background: #ffffff; border-bottom: 1px solid #e2e8f0; }
.tracking-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 16px;
}
.tracking-brand-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.tracking-logo {
  font-size: 1.6rem;
  font-weight: 950;
  color: #002b66;
  line-height: 1;
}
.tracking-brand-sub {
  font-size: 0.52rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  color: #0b3b82;
}
.tracking-security {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #16a34a;
}
.tracking-security strong {
  display: block;
  font-size: 0.68rem;
  color: #0f172a;
  line-height: 1.15;
}
.tracking-security small {
  font-size: 0.56rem;
  color: #64748b;
}

.tracking-trust-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 8px 16px;
  background: #002b66;
  color: #ffffff;
  font-size: 0.72rem;
}
.trust-bar-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.tracking-page { max-width: 52rem !important; padding: 16px 14px 40px; }
.tracking-intro { padding: 1.5rem 0.5rem 1rem; text-align: center; }
.tracking-hero-icon { display: grid; place-items: center; height: 3.6rem; width: 3.6rem; margin: 0 auto 0.8rem; border-radius: 50%; background: #e0edff; color: #002b66; }
.tracking-intro h1 { font-size: 1.55rem; font-weight: 900; color: #002b66; letter-spacing: -0.02em; }
.tracking-intro p { margin-top: 0.4rem; color: #64748b; font-size: 0.88rem; }

.tracking-search {
  margin-top: 0.5rem;
  padding: 18px 16px;
  border: 1px solid #dbe6f5;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 43, 102, 0.05);
}
.tracking-search-label { font-size: 0.82rem; font-weight: 800; color: #002b66; display: block; margin-bottom: 8px; }
.tracking-search .search-row {
  display: flex;
  gap: 8px;
}
.tracking-input {
  height: 52px !important;
  font-size: 16px !important;
  letter-spacing: 0.04em;
  font-weight: 700;
  text-transform: uppercase;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  padding: 0 14px;
  color: #0f172a;
}
.tracking-search-btn {
  height: 52px !important;
  padding: 0 20px !important;
  font-size: 0.88rem !important;
  font-weight: 900 !important;
  border-radius: 10px !important;
  background: linear-gradient(180deg, #ffdf37, #f5bc00) !important;
  color: #002b66 !important;
  border: 1px solid #e5a800 !important;
  white-space: nowrap;
  touch-action: manipulation;
}
.tracking-search-hint {
  display: block;
  margin-top: 10px;
  font-size: 0.7rem;
  color: #64748b;
}

.tracking-result {
  margin-top: 16px;
  padding: 20px 18px;
  border: 1px solid #dbe6f5;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 4px 16px rgba(0, 43, 102, 0.06);
  scroll-margin-top: 5rem;
}
.tracking-result-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid #f1f5f9;
}
.tracking-code-block { min-width: 0; }
.tracking-code-label { font-size: 0.68rem; font-weight: 800; color: #64748b; text-transform: uppercase; letter-spacing: 0.05em; }
.tracking-code-copy-row { display: flex; align-items: center; gap: 0.5rem; margin-top: 0.2rem; }
.tracking-code-value { font-size: 1.15rem; font-weight: 950; color: #002b66; font-family: monospace; letter-spacing: 0.03em; }
.tracking-copy-button {
  width: 32px;
  height: 32px;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  background: #f8fafc;
  display: grid;
  place-items: center;
  cursor: pointer;
  color: #0b3b82;
}
.tracking-copy-button.copied { background: #dcfce7; border-color: #86efac; color: #166534; }

.shipment-badge {
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.shipment-badge.active {
  background: #dcfce7;
  color: #15803d;
  border: 1px solid #bbf7d0;
}
.shipment-badge.delivered {
  background: #d1fae5;
  color: #047857;
  border: 1px solid #a7f3d0;
}

.tracking-delivery {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  margin: 14px 0;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 12px;
}
.tracking-delivery svg { width: 26px; height: 26px; color: #16a34a; flex-shrink: 0; }
.delivery-promise-text strong { display: block; font-size: 0.82rem; color: #15803d; }
.delivery-promise-text p { font-size: 0.72rem; color: #376346; margin-top: 2px; }
.delivery-free-badge {
  margin-left: auto;
  font-size: 0.62rem;
  font-weight: 900;
  background: #dcfce7;
  color: #166534;
  padding: 3px 7px;
  border-radius: 4px;
  white-space: nowrap;
}

.tracking-details-grid { display: grid; gap: 12px; margin: 16px 0; }
.tracking-detail-card {
  min-width: 0;
  padding: 14px 16px;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  background: #f8fafc;
}
.tracking-detail-title {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  font-size: 0.85rem;
  font-weight: 850;
  color: #002b66;
}
.tracking-detail-title svg { width: 18px; height: 18px; color: #0b3b82; }
.tracking-help-card {
  margin-top: 16px;
  padding: 16px;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  background: #ffffff;
}
.tracking-help-title { font-size: 0.92rem; font-weight: 850; color: #002b66; margin-bottom: 8px; }
.tracking-help-item { border-bottom: 1px solid #f1f5f9; padding: 8px 0; }
.tracking-help-item:last-child { border-bottom: none; }
.tracking-help-item summary { font-size: 0.76rem; font-weight: 750; color: #1e3a8a; cursor: pointer; }
.tracking-help-item p { font-size: 0.7rem; color: #64748b; margin-top: 4px; line-height: 1.45; }
.tracking-footer { margin-top: 24px; text-align: center; }
.tracking-product { display: flex; align-items: center; gap: 0.85rem; }
.tracking-product img { width: 4.5rem; height: 4.5rem; object-fit: contain; border-radius: 0.55rem; background: #fff; }
.tracking-product-copy { min-width: 0; }
.tracking-product strong { display: block; font-size: 0.9rem; line-height: 1.35; }
.tracking-product p { margin-top: 0.2rem; color: var(--muted-foreground); font-size: 0.8rem; }
.tracking-product b { display: block; margin-top: 0.35rem; color: #047857; font-size: 0.9rem; }
.tracking-info-list { display: grid; gap: 0.55rem; margin: 0; }
.tracking-info-list > div { display: flex; justify-content: space-between; gap: 1rem; }
.tracking-info-list dt { color: var(--muted-foreground); font-size: 0.8rem; }
.tracking-info-list dd { min-width: 0; margin: 0; font-size: 0.82rem; font-weight: 750; text-align: right; overflow-wrap: anywhere; }
.tracking-info-list .paid-value { color: #047857; }
.tracking-address { color: var(--secondary-foreground); font-size: 0.85rem; line-height: 1.65; white-space: pre-line; }
.tracking-history-heading { margin-top: 0.25rem; font-size: 1rem; }
.tracking-notice { margin-top: 1rem; color: var(--muted-foreground); font-size: 0.8125rem; line-height: 1.5; }
.timeline-tag.upcoming { background: var(--muted); color: var(--muted-foreground); }

@media (min-width: 700px) {
  .tracking-details-grid { grid-template-columns: 1fr 1fr; }
  .tracking-address-card { grid-column: 1 / -1; }
}

@media (max-width: 390px) {
  .checkout-steps { gap: 0.2rem; }
  .checkout-steps i { width: 0.8rem; }
  .tracking-code { font-size: 0.86rem; }
  .tracking-result-head { flex-direction: column; }
  .tracking-search .search-row { flex-direction: column; }
  .tracking-search .search-row .btn { width: 100%; }
}

/* ==========================================================================
   NOVO DESIGN DE PRODUTO - PADRÃO GRANDES LOJAS (AMERICANAS, CASAS BAHIA, MAGALU)
   ========================================================================== */

.product-header-clean {
  height: 54px;
  background: #ffffff;
  border-bottom: 1px solid #e5eaf2;
}
.product-header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 16px;
}
.product-logo-compact {
  font-size: 1.6rem;
  font-weight: 950;
  letter-spacing: -0.04em;
  color: #002b66;
  line-height: 1;
}
.header-security-compact {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #1e3a6a;
}
.header-security-compact svg {
  width: 17px;
  height: 17px;
  color: #16a34a;
}
.header-security-compact span {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.header-security-compact strong {
  font-size: 0.68rem;
  font-weight: 800;
  color: #0f172a;
}
.header-security-compact small {
  font-size: 0.58rem;
  color: #64748b;
}

/* Barra de Benefícios Discreta sem Emojis */
.product-benefits-strip {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  padding: 8px 16px;
  background: #002b66;
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 600;
}
.benefit-strip-item {
  display: flex;
  align-items: center;
  gap: 6px;
}
.benefit-strip-item svg {
  width: 15px;
  height: 15px;
  color: #93c5fd;
}

/* Banner Direto da Fábrica Logo Após a Imagem */
.product-carousel-section {
  margin-bottom: 10px;
}
.factory-direct-banner {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  background: #f0f7ff;
  border: 1px solid #cde0f7;
  border-radius: 12px;
  margin-bottom: 12px;
}
.factory-icon-box {
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: #002b66;
  color: #ffffff;
  display: grid;
  place-items: center;
}
.factory-icon-box svg {
  width: 18px;
  height: 18px;
}
.factory-text-box {
  display: flex;
  flex-direction: column;
}
.factory-text-box strong {
  font-size: 0.78rem;
  font-weight: 850;
  color: #002b66;
  line-height: 1.2;
}
.factory-text-box span {
  font-size: 0.66rem;
  color: #4b6282;
  margin-top: 1px;
}

/* Card Principal */
.product-main-card {
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 18px 16px;
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 43, 102, 0.04);
}
.product-title {
  font-size: 1.32rem;
  font-weight: 900;
  color: #0f172a;
  letter-spacing: -0.02em;
  line-height: 1.25;
}
.product-subtitle-clean {
  font-size: 0.8rem;
  color: #64748b;
  margin-top: 4px;
}
.product-rating-line {
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Box de Preço das Grandes Lojas */
.product-price-box {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 14px 16px;
  margin-top: 14px;
}
.price-big {
  font-size: 2.35rem;
  font-weight: 950;
  color: #002b66;
  letter-spacing: -0.03em;
  line-height: 1;
}
.savings-highlight-clean {
  margin-top: 8px;
  padding: 6px 10px;
  background: #dcfce7;
  border-radius: 6px;
  font-size: 0.72rem;
  font-weight: 750;
  color: #15803d;
  display: inline-block;
}
.product-stock-alert {
  background: #fffbeb;
  border: 1px solid #fef3c7;
  color: #92400e;
  font-size: 0.72rem;
  padding: 8px 12px;
  border-radius: 8px;
  margin-top: 12px;
}
.product-stock-alert svg {
  width: 15px;
  height: 15px;
  color: #d97706;
}

/* Grid de Garantias */
.product-trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid #f1f5f9;
}
.product-trust-grid .trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 8px 6px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
}
.product-trust-grid .trust-item strong {
  font-size: 0.7rem;
  color: #0f172a;
  font-weight: 800;
  margin-top: 2px;
}
.product-trust-grid .trust-item small {
  font-size: 0.58rem;
  color: #64748b;
  margin-top: 1px;
}

/* CARROSSEL DE AVALIAÇÕES HORIZONTAL (IGUAL AO CHECKOUT) */
.product-reviews-section {
  overflow: hidden;
}
.review-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.reviews-kicker-clean {
  font-size: 0.62rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  color: #0b56b5;
}
.reviews-title-clean {
  font-size: 1.15rem;
  font-weight: 850;
  color: #0f172a;
  margin-top: 2px;
}
.reviews-score-clean {
  text-align: right;
}
.reviews-score-clean strong {
  font-size: 1.35rem;
  font-weight: 900;
  color: #0f172a;
}
.reviews-score-clean small {
  font-size: 0.72rem;
  color: #64748b;
}
.reviews-subtitle-clean {
  font-size: 0.72rem;
  margin-top: 3px;
  margin-bottom: 12px;
}
.reviews-carousel-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(270px, 82vw);
  gap: 12px;
  margin-right: -16px;
  padding-right: 16px;
  padding-bottom: 8px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  scrollbar-width: none;
}
.reviews-carousel-track::-webkit-scrollbar {
  display: none;
}
.product-review-card {
  min-width: 0;
  scroll-snap-align: start;
  padding: 14px;
  border: 1px solid #e2e8f0;
  border-radius: 13px;
  background: #fafbfd;
  display: flex;
  flex-direction: column;
}
.product-review-person {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 8px;
}
.product-review-avatar {
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.72rem;
  font-weight: 850;
  color: #1d4ed8;
  background: #dbeafe;
  object-fit: cover;
}
.product-review-avatar.tone-1 { color: #7c3aed; background: #ede9fe; }
.product-review-avatar.tone-2 { color: #047857; background: #d1fae5; }
.product-review-meta {
  flex: 1;
  min-width: 0;
}
.product-review-name-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.product-review-name-row strong {
  font-size: 0.76rem;
  color: #0f172a;
}
.product-review-verified {
  font-size: 0.58rem;
  font-weight: 750;
  color: #15803d;
  display: flex;
  align-items: center;
  gap: 2px;
}
.product-review-verified svg {
  width: 11px;
  height: 11px;
}
.product-review-rating-row {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 2px;
}
.product-review-stars svg {
  fill: #eab308;
  color: #eab308;
  width: 12px;
  height: 12px;
}
.product-review-time {
  font-size: 0.58rem;
  color: #64748b;
}
.product-review-comment {
  font-size: 0.75rem;
  color: #334155;
  line-height: 1.45;
  margin-bottom: 10px;
  flex: 1;
}
.product-review-photo {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 9px;
  cursor: pointer;
  border: 1px solid #e2e8f0;
}

/* CTA Final */
.product-final-card-clean {
  background: #002b66;
  color: #ffffff;
  border-radius: 16px;
  padding: 24px 20px;
  text-align: center;
}
.product-final-card-clean h2 {
  color: #ffffff;
  font-size: 1.35rem;
  font-weight: 900;
}
.product-final-card-clean p {
  color: #cbd5e1;
  margin-top: 6px;
  font-size: 0.88rem;
}
.product-final-card-clean .btn-primary {
  background: linear-gradient(180deg, #ffdf37, #f5bc00);
  color: #002b66;
  border: 1px solid #e5a800;
  font-weight: 900;
  margin-top: 14px;
}

/* Botão de Compra Dourado Alto Impacto */
.buy-button {
  background: linear-gradient(180deg, #ffdf37, #f5bc00) !important;
  color: #002b66 !important;
  border: 1px solid #e5a800 !important;
  font-size: 1.02rem !important;
  font-weight: 950 !important;
  border-radius: 13px !important;
  box-shadow: 0 4px 14px rgba(229, 168, 0, 0.35) !important;
}

@media (min-width: 768px) {
  .reviews-carousel-track {
    grid-auto-columns: minmax(300px, 1fr);
    grid-template-columns: repeat(3, 1fr);
    grid-auto-flow: row;
    margin-right: 0;
    padding-right: 0;
    overflow-x: visible;
  }
}
