/* ============================================================
   SHOPPING DA MULTIDÃO — Design System
   Base: "Modern Radiant Luxury" (Stitch) adaptada à identidade SM
   Fonts: Playfair Display (display) + Plus Jakarta Sans (body)
   ============================================================ */

:root {
  /* Cores primárias — coral/rosa quente */
  --primary: #B83838;
  --primary-strong: #A32E2E;
  --primary-text: #A32E2E;
  --primary-soft: #FEF1F1;
  --accent: #FF6B6B;

  /* Trust / selos */
  --tertiary: #047857;
  --tertiary-strong: #03603F;
  --tertiary-soft: rgba(4, 120, 87, 0.1);
  --amber: #EAB308;

  /* Neutros */
  --ink: #1E1E24;
  --ink-soft: #4A4A55;
  --surface: #FFFFFF;
  --surface-cream: #FAFAF9;
  --border: #F3E8E8;
  --border-strong: #EADFE0;

  /* Comunicado */
  --announcement-bg: linear-gradient(135deg, #E05353 0%, #C43D3D 100%);

  /* Tipografia */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, 'Segoe UI', sans-serif;

  /* Sombras (elevação leve, sem drop shadow pesado) */
  --shadow-1: 0px 4px 16px -2px rgba(224, 83, 83, 0.06);
  --shadow-2: 0px 10px 24px -4px rgba(30, 30, 36, 0.07), 0px 4px 12px -2px rgba(255, 107, 107, 0.06);
  --shadow-3: 0px 20px 40px -8px rgba(30, 30, 36, 0.12);

  /* Raios */
  --radius-sm: 0.5rem;
  --radius: 1rem;
  --radius-lg: 1.5rem;
  --radius-full: 9999px;

  /* Espaçamento (progressão 8pt) */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2.5rem;
  --space-2xl: 4rem;

  /* Containers */
  --container: 1360px;
  --gutter: 1.5rem;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--surface);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
input, select { font-family: inherit; }

.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;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  width: 100%;
}

/* ============= TIPOGRÁGIA ============= */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.display-hero {
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.08;
}

.headline-lg { font-size: clamp(1.75rem, 3.5vw, 2.5rem); }
.headline-md { font-size: clamp(1.4rem, 2.4vw, 1.75rem); }
.headline-sm { font-size: 1.25rem; font-weight: 600; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary-text);
}

.label-lg { font-size: 0.875rem; font-weight: 600; }
.label-md { font-size: 0.75rem; font-weight: 600; }
.label-sm {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.body-lg { font-size: 1.05rem; color: var(--ink-soft); }
.body-md { font-size: 0.9rem; color: var(--ink-soft); }
.body-sm { font-size: 0.8rem; color: var(--ink-soft); }

/* ============= BOTÕES ============= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  height: 48px;
  padding: 0 1.5rem;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 700;
  border: none;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-strong); box-shadow: var(--shadow-2); transform: translateY(-1px); }

.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: #000; }

.btn-white { background: #fff; color: var(--primary-text); box-shadow: var(--shadow-1); }
.btn-white:hover { box-shadow: var(--shadow-2); transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
}
.btn-outline:hover { background: var(--surface-cream); }

.btn-emerald { background: var(--tertiary); color: #fff; }
.btn-emerald:hover { background: var(--tertiary-strong); box-shadow: var(--shadow-2); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  padding: 0 0.25rem;
  height: auto;
  border-bottom: 2px solid transparent;
  border-radius: 0;
}
.btn-ghost:hover { border-bottom-color: var(--primary); color: var(--primary-text); }

.btn-sm { height: 40px; padding: 0 1rem; font-size: 0.8rem; }
.btn-block { width: 100%; }

/* ============= CHIPS / PILLS ============= */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--surface-cream);
  border: 1px solid var(--border);
  color: var(--ink-soft);
  transition: all 0.2s;
  white-space: nowrap;
}
.chip:hover { border-color: var(--primary); color: var(--primary-text); }
.chip.active { background: var(--primary); border-color: var(--primary); color: #fff; }
.chip-emerald { background: var(--tertiary-soft); border-color: transparent; color: var(--tertiary); }

/* Badge de selo (trust) */
.selo {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--tertiary);
  background: var(--tertiary-soft);
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
}
.selo i, .selo svg { font-size: 0.8rem; }

.badge-sale {
  background: var(--primary);
  color: #fff;
}

/* ============= ANNOUNCEMENT ============= */
.announcement {
  background: var(--announcement-bg);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 500;
  text-align: center;
  padding: 0.55rem var(--gutter);
}
.announcement b { font-weight: 700; text-decoration: underline; text-underline-offset: 2px; }

/* ============= HEADER ============= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
  padding: var(--space-md) 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
.logo span { color: var(--primary); }

.search-box {
  flex: 1;
  max-width: 560px;
  position: relative;
}
.search-box input {
  width: 100%;
  height: 46px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface-cream);
  padding: 0 3rem 0 1rem;
  font-size: 0.875rem;
  outline: none;
  transition: all 0.2s;
}
.search-box input:focus {
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(224, 83, 83, 0.15);
}
.search-box .search-icon {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--ink-soft);
  font-size: 1rem;
  pointer-events: none;
}

.header-actions { display: flex; align-items: center; gap: 1.25rem; flex-shrink: 0; }
.header-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--ink-soft);
  transition: color 0.2s;
  position: relative;
}
.header-action .material-symbols-rounded { font-size: 1.4rem; color: var(--ink); }
.header-action:hover { color: var(--primary-text); }
.header-action:hover .material-symbols-rounded { color: var(--primary); }
.header-action .count-bubble {
  position: absolute;
  top: -4px;
  right: -6px;
  background: var(--primary);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 700;
  min-width: 16px;
  height: 16px;
  padding: 0 3px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Nav */
.site-nav {
  border-top: 1px solid var(--border);
  background: var(--surface);
}
.site-nav .container {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  overflow-x: auto;
  scrollbar-width: none;
  padding-top: 0;
  padding-bottom: 0;
}
.site-nav::-webkit-scrollbar { display: none; }

.site-nav a {
  padding: 0.8rem 0.9rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-soft);
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition: all 0.2s;
}
.site-nav a:hover { color: var(--primary-text); border-bottom-color: var(--primary-text); }
.site-nav a.active { color: var(--primary-text); border-bottom-color: var(--primary-text); }
.site-nav a.promo { color: var(--primary-text); }

/* Mobile header toggles */
.hamburger, .mobile-search-toggle { display: none; }

/* ============= HERO ============= */
.hero {
  position: relative;
  background: var(--surface-cream);
  overflow: hidden;
}
.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}
.hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(26,26,36,0.72) 0%, rgba(26,26,36,0.35) 55%, rgba(26,26,36,0.05) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: clamp(4rem, 10vw, 7rem) 0;
  max-width: 640px;
}
.hero h1 {
  color: #fff;
  text-shadow: 0 2px 18px rgba(0,0,0,0.25);
  margin: var(--space-md) 0;
}
.hero p {
  color: rgba(255,255,255,0.92);
  font-size: 1.05rem;
  margin-bottom: var(--space-xl);
  max-width: 480px;
}
.hero-cta { display: flex; gap: var(--space-md); flex-wrap: wrap; }

.hero-badges {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  margin-bottom: var(--space-lg);
}
.hero-badges .chip {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.25);
  color: #fff;
  backdrop-filter: blur(8px);
}

/* ============= TRUST STRIP ============= */
.trust-strip {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}
.trust-strip .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
  padding-top: var(--space-lg);
  padding-bottom: var(--space-lg);
}
.trust-item { display: flex; align-items: center; gap: var(--space-md); }
.trust-item .icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary-soft);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.trust-item .icon .material-symbols-rounded { font-size: 1.4rem; }
.trust-item .label-lg { display: block; font-size: 0.85rem; }
.trust-item .body-sm { font-size: 0.75rem; }

/* ============= SEÇÕES ============= */
.section { padding: var(--space-2xl) 0; }
.section-tint { background: var(--surface-cream); }
.section-tint-strong { background: var(--primary-soft); }

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
  flex-wrap: wrap;
}
.section-head .eyebrow { margin-bottom: var(--space-sm); display: block; }
.section-head .body-md { margin-top: var(--space-sm); max-width: 520px; }

.link-more {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary-text);
  transition: gap 0.2s;
}
.link-more:hover { gap: 0.6rem; }

/* ============= CATEGORY CARDS ============= */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}
.cat-card {
  position: relative;
  min-height: 220px;
  border-radius: var(--radius);
  padding: var(--space-lg);
  background: var(--surface-cream);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  transition: all 0.3s;
  isolation: isolate;
}
.cat-card::after {
  content: '';
  position: absolute;
  right: -30px;
  bottom: -30px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--primary-soft);
  z-index: -1;
  transition: transform 0.5s;
}
.cat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-2); border-color: transparent; }
.cat-card:hover::after { transform: scale(1.35); }
.cat-card .cat-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: var(--primary-soft);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
}
.cat-card .cat-icon .material-symbols-rounded { font-size: 1.6rem; }
.cat-card h3 { margin: var(--space-md) 0 var(--space-xs); }
.cat-card .body-sm { margin-bottom: var(--space-sm); }
.cat-card .chip { align-self: flex-start; }

.cat-card.alt::after { background: rgba(5, 150, 105, 0.12); }
.cat-card.alt .cat-icon { background: var(--tertiary-soft); color: var(--tertiary); }

/* ============= PRODUCT CARDS ============= */
.prod-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}
.prod-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  transition: all 0.3s;
  position: relative;
}
.prod-card:hover { box-shadow: var(--shadow-2); border-color: transparent; transform: translateY(-3px); }

.prod-card .prod-media {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--surface-cream);
  margin-bottom: var(--space-md);
}
.prod-card .prod-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.prod-card:hover .prod-media img { transform: scale(1.05); }

.prod-card .prod-badges {
  position: absolute;
  top: 0.6rem;
  left: 0.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  z-index: 2;
}
.badge {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
  color: #fff;
}
.badge.badge-sale { background: var(--primary); }
.badge.badge-eco { background: var(--tertiary); }
.badge.badge-new { background: var(--ink); }

.prod-card .wish {
  position: absolute;
  top: 0.6rem;
  right: 0.6rem;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.9);
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-1);
  opacity: 0;
  transition: all 0.25s;
  z-index: 2;
}
.prod-card:hover .wish { opacity: 1; }
.prod-card .wish:hover { color: var(--primary-text); }
.prod-card .wish .material-symbols-rounded { font-size: 1.15rem; }

.prod-brand {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 0.2rem;
}
.prod-name {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.4;
  margin-bottom: var(--space-sm);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.5em;
}
.prod-name:hover { color: var(--primary-text); }

.prod-rating {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  margin-bottom: var(--space-sm);
}
.prod-rating .stars { color: var(--amber); font-size: 0.8rem; letter-spacing: 1px; }
.prod-rating .count { font-size: 0.72rem; color: var(--ink-soft); }

.prod-price { margin-bottom: var(--space-md); }
.prod-price .price-from {
  font-size: 0.75rem;
  color: var(--ink-soft);
  text-decoration: line-through;
}
.prod-price .price {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--primary);
}
.prod-price .price em { font-style: normal; font-family: var(--font-body); font-size: 0.78rem; color: var(--ink-soft); }
.prod-price .pix {
  font-size: 0.72rem;
  color: var(--tertiary);
  font-weight: 700;
}
.prod-price .pix b { font-weight: 700; }

.prod-card .btn { margin-top: auto; }

/* ============= BRAND STRIP ============= */
.brand-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
  flex-wrap: wrap;
}
.brand-logo {
  height: 44px;
  display: flex;
  align-items: center;
  transition: all 0.3s;
}
.brand-logo img { max-height: 44px; width: auto; max-width: 120px; object-fit: contain; }
.brand-logo:hover { transform: translateY(-2px); }

/* ============= PROMO BANNER ============= */
.promo-banner {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 320px;
  display: flex;
  align-items: center;
}
.promo-banner img.promo-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.promo-banner .promo-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(26,26,36,0.72) 0%, rgba(26,26,36,0.25) 65%, transparent 100%);
}
.promo-banner .promo-content {
  position: relative;
  z-index: 2;
  padding: var(--space-xl);
  max-width: 520px;
  color: #fff;
}
.promo-banner h2 { color: #fff; margin: var(--space-sm) 0 var(--space-sm); }
.promo-banner .body-md { color: rgba(255,255,255,0.92); margin-bottom: var(--space-lg); }

/* ============= BANNER DUPLO ============= */
.duo-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-md); }
.duo-banner {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16/8;
  display: flex;
  align-items: flex-end;
}
.duo-banner img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.duo-banner:hover img { transform: scale(1.04); }
.duo-banner .duo-label {
  position: relative;
  z-index: 2;
  padding: var(--space-md) var(--space-lg);
  width: 100%;
  background: linear-gradient(to top, rgba(26,26,36,0.7), transparent);
  color: #fff;
}
.duo-banner .duo-label .label-sm { color: rgba(255,255,255,0.85); }
.duo-banner .duo-label h3 { color: #fff; margin-top: 2px; }

/* ============= QUICK STEPS / FEATURES ============= */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-md); }
.step-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--space-lg);
}
.step-card .num {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: var(--space-sm);
}
.step-card h3 { margin-bottom: var(--space-sm); }

/* ============= TESTIMONIAL ============= */
.testimonial {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.testimonial .quote {
  font-family: var(--font-display);
  font-size: 1.5rem;
  line-height: 1.4;
  margin-bottom: var(--space-lg);
}
.testimonial .stars { color: var(--amber); letter-spacing: 4px; font-size: 1rem; }
.testimonial .author { font-size: 0.8rem; font-weight: 600; color: var(--ink-soft); margin-top: var(--space-sm); }

/* ============= NEWSLETTER ============= */
.newsletter {
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: var(--space-2xl) var(--space-xl);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.newsletter h2 { color: #fff; margin-bottom: var(--space-sm); }
.newsletter .body-md { color: rgba(255,255,255,0.75); max-width: 480px; margin: 0 auto var(--space-lg); }
.newsletter-form {
  display: flex;
  gap: var(--space-sm);
  max-width: 440px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.newsletter-form input {
  flex: 1;
  min-width: 220px;
  height: 48px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.08);
  color: #fff;
  padding: 0 1rem;
  font-size: 0.875rem;
  outline: none;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.5); }
.newsletter-form input:focus { border-color: var(--accent); }

/* ============= FOOTER ============= */
.site-footer {
  background: var(--surface-cream);
  border-top: 1px solid var(--border);
  padding-top: var(--space-2xl);
  margin-top: var(--space-2xl);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: var(--space-xl);
}
.footer-col h3 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-md);
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: var(--space-sm); }
.footer-col ul a { font-size: 0.85rem; color: var(--ink-soft); transition: color 0.2s; }
.footer-col ul a:hover { color: var(--primary-text); }
.footer-brand-desc { font-size: 0.85rem; color: var(--ink-soft); margin: var(--space-md) 0; }
.socials { display: flex; gap: var(--space-sm); }
.socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-soft);
  transition: all 0.2s;
}
.socials a:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
.footer-stores li { display: flex; gap: 0.4rem; font-size: 0.82rem; color: var(--ink-soft); align-items: flex-start; }
.footer-stores li .material-symbols-rounded { font-size: 1rem; color: var(--primary); }

.footer-bottom {
  margin-top: var(--space-xl);
  border-top: 1px solid var(--border);
  padding: var(--space-lg) 0 var(--space-xl);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  flex-wrap: wrap;
  color: var(--ink-soft);
  font-size: 0.78rem;
}
.footer-pay { display: flex; gap: var(--space-sm); align-items: center; font-size: 1.1rem; color: var(--ink-soft); }

/* ============= PDP ============= */
.breadcrumb { padding: var(--space-md) 0; font-size: 0.8rem; color: var(--ink-soft); }
.breadcrumb a:hover { color: var(--primary-text); }
.breadcrumb .sep { margin: 0 0.4rem; opacity: 0.5; }

.pdp-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: var(--space-2xl);
  align-items: start;
}

/* Galeria */
.gallery-main {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface-cream);
  aspect-ratio: 4/5;
}
.gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.gallery-main .gallery-badges { position: absolute; top: var(--space-md); left: var(--space-md); display: flex; flex-direction: column; gap: 0.35rem; }
.gallery-main .zoom {
  position: absolute;
  right: var(--space-md);
  bottom: var(--space-md);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.9);
  box-shadow: var(--shadow-1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
}
.gallery-thumbs {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}
.gallery-thumbs .thumb {
  width: 84px;
  aspect-ratio: 4/5;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 2px solid var(--border);
  background: var(--surface-cream);
  padding: 0;
}
.gallery-thumbs .thumb img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumbs .thumb.active { border-color: var(--primary); }

/* Info produto */
.pdp-brand-row { display: flex; align-items: center; gap: var(--space-sm); flex-wrap: wrap; margin-bottom: var(--space-sm); }
.pdp-brand { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--primary-text); }
.pdp h1 { margin-bottom: var(--space-sm); }
.pdp-desc { color: var(--ink-soft); margin-bottom: var(--space-md); }

.pdp-rating {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  background: var(--primary-soft);
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-md);
  flex-wrap: wrap;
}
.pdp-rating .stars { color: var(--amber); }
.pdp-rating b { font-size: 0.9rem; }
.pdp-rating .sep { opacity: 0.4; }
.pdp-rating a { font-size: 0.8rem; color: var(--primary-text); font-weight: 600; margin-left: auto; }

/* Preço */
.pdp-price-box {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--space-lg);
  margin-bottom: var(--space-lg);
}
.pdp-price-line { display: flex; align-items: baseline; gap: var(--space-md); flex-wrap: wrap; }
.pdp-price-line .from { color: var(--ink-soft); text-decoration: line-through; font-size: 0.9rem; }
.pdp-price-line .now {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--primary);
}
.pdp-price-line .save {
  background: var(--primary-soft);
  color: var(--primary);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-full);
}
.pdp-pix {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: var(--tertiary);
  font-weight: 700;
  margin-top: var(--space-sm);
}
.pdp-installments { font-size: 0.82rem; color: var(--ink-soft); margin-top: 0.2rem; }

/* Selector chips (volume) */
.selector-label { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: var(--space-sm); }
.selector-chips { display: flex; gap: var(--space-sm); flex-wrap: wrap; margin-bottom: var(--space-lg); }
.size-chip {
  padding: var(--space-sm) var(--space-lg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface-cream);
  text-align: left;
  transition: all 0.2s;
}
.size-chip .chip-label { font-weight: 700; font-size: 0.85rem; display: block; }
.size-chip .chip-sub { font-size: 0.72rem; color: var(--ink-soft); }
.size-chip.active { border-color: var(--primary); background: var(--primary-soft); }
.size-chip.active .chip-label { color: var(--primary); }

/* Qty + add */
.add-row { display: flex; gap: var(--space-sm); margin-bottom: var(--space-md); flex-wrap: wrap; }
.qty-box {
  display: flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface-cream);
}
.qty-box button {
  width: 42px;
  height: 48px;
  border: none;
  background: transparent;
  color: var(--ink);
  font-size: 1.2rem;
}
.qty-box button:hover { color: var(--primary-text); }
.qty-box span { min-width: 32px; text-align: center; font-weight: 700; }

.pdp-actions { display: flex; flex-direction: column; gap: var(--space-sm); margin-bottom: var(--space-lg); }

.trust-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-sm); margin-bottom: var(--space-lg); }
.trust-cell {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: var(--space-md);
  background: var(--surface-cream);
}
.trust-cell .icon { width: 34px; height: 34px; border-radius: 50%; background: var(--primary-soft); color: var(--primary); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.trust-cell .icon .material-symbols-rounded { font-size: 1.1rem; }
.trust-cell b { font-size: 0.8rem; display: block; }
.trust-cell span { font-size: 0.72rem; color: var(--ink-soft); }

/* Frete calc */
.shipping-box { border: 1px solid var(--border); border-radius: var(--radius); padding: var(--space-lg); }
.shipping-box .shipping-title { font-size: 0.8rem; font-weight: 700; margin-bottom: var(--space-sm); display: flex; align-items: center; gap: 0.4rem; }
.shipping-box .shipping-title .material-symbols-rounded { color: var(--primary); }
.shipping-form { display: flex; gap: var(--space-sm); }
.shipping-form input {
  flex: 1;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0 0.9rem;
  font-size: 0.85rem;
  background: var(--surface-cream);
  outline: none;
}
.shipping-form input:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(224,83,83,0.12); }
.shipping-result { margin-top: var(--space-md); font-size: 0.82rem; }
.shipping-result .opt { display: flex; justify-content: space-between; padding: var(--space-sm) 0; border-bottom: 1px dashed var(--border); }
.shipping-result .free { color: var(--tertiary); font-weight: 700; }

/* Tabs PDP */
.tabs-pdp {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  margin-bottom: var(--space-lg);
}
.tabs-pdp button {
  padding: 0.7rem 1.4rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--border);
  background: var(--surface);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--ink-soft);
  transition: all 0.2s;
}
.tabs-pdp button.active { background: var(--primary); border-color: var(--primary); color: #fff; }
.panel-pdp { display: none; }
.panel-pdp.active { display: block; }
.panel-pdp p { color: var(--ink-soft); margin-bottom: var(--space-md); }
.panel-pdp ul { list-style: none; display: grid; gap: var(--space-sm); grid-template-columns: 1fr 1fr; }
.panel-pdp ul li { display: flex; gap: 0.5rem; align-items: center; font-size: 0.85rem; color: var(--ink-soft); }
.panel-pdp ul li::before { content: '✓'; color: var(--tertiary); font-weight: 700; }

/* ============= PLP (listagem) ============= */
.plp-top {
  background: var(--surface-cream);
  border-bottom: 1px solid var(--border);
  padding-bottom: var(--space-lg);
}
.plp-cats { display: flex; gap: var(--space-sm); overflow-x: auto; padding-bottom: 0.5rem; scrollbar-width: none; }
.plp-cats::-webkit-scrollbar { display: none; }
.plp-cats .chip { flex-shrink: 0; }

.plp-layout { display: grid; grid-template-columns: 280px 1fr; gap: var(--space-xl); align-items: start; padding-top: var(--space-xl); }

/* Filtros */
.filters { position: sticky; top: 90px; display: flex; flex-direction: column; gap: var(--space-md); }
.filter-group {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--space-md);
  background: var(--surface);
}
.filter-group > b { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em; display: block; margin-bottom: var(--space-sm); }
.filter-group .opt { display: flex; align-items: center; gap: var(--space-sm); padding: 0.3rem 0; font-size: 0.85rem; color: var(--ink-soft); cursor: pointer; }
.filter-group .opt input { accent-color: var(--primary); width: 16px; height: 16px; }
.filter-group .opt:hover { color: var(--primary-text); }
.filter-group .opt .n { margin-left: auto; font-size: 0.75rem; opacity: 0.7; }

.filter-active {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}
.filter-active .chip { padding: 0.3rem 0.8rem; }
.filter-active .chip .close { cursor: pointer; color: inherit; opacity: 0.7; margin-left: 0.3rem; }

.sort-row { display: flex; align-items: center; justify-content: space-between; gap: var(--space-md); flex-wrap: wrap; margin-bottom: var(--space-lg); }
.sort-row .count { font-size: 0.85rem; color: var(--ink-soft); }

/* Views toggle */
.view-toggle { display: flex; border: 1px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; }
.view-toggle button {
  border: none;
  background: var(--surface);
  padding: 0.5rem 0.8rem;
  color: var(--ink-soft);
}
.view-toggle button.active { background: var(--ink); color: #fff; }

/* Paginação */
.pagination { display: flex; gap: var(--space-sm); justify-content: center; margin-top: var(--space-xl); flex-wrap: wrap; }
.page-btn {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--ink-soft);
  transition: all 0.2s;
}
.page-btn:hover { border-color: var(--primary); color: var(--primary-text); }
.page-btn.active { background: var(--primary); border-color: var(--primary); color: #fff; }

/* ============= MAMÃE & BEBÊ ============= */
.mae-hero { background: linear-gradient(135deg, #FDF2F8 0%, #FCE7F3 50%, #F5F3FF 100%); }
.mae-hero .hero-badges .chip { background: rgba(255,255,255,0.7); border-color: #F9D5E8; color: #9D174D; }
.mae-hero h1 { color: #9D174D; }
.mae-hero p { color: #6B3B57; }
.mae-hero .btn-primary { background: #BE185D; }
.mae-hero .btn-primary:hover { background: #BE185D; }

.mae-trust .trust-item .icon { background: #FDF2F8; color: #BE185D; }
.mae-trust .label-lg { color: #6B3B57; }

.selo-baby {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.68rem;
  font-weight: 700;
  color: #BE185D;
  background: #FCE7F3;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
}

/* ============= CART DRAWER ============= */
body.drawer-open { overflow: hidden; }

.cart-overlay {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(30, 30, 36, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease;
}
.cart-overlay.show { opacity: 1; visibility: visible; }

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
  width: min(420px, 100vw);
  background: var(--surface);
  box-shadow: var(--shadow-3);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.28s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.cart-drawer.open { transform: translateX(0); }

.cart-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-lg);
  border-bottom: 1px solid var(--border);
}
.cart-drawer-head h3 { display: flex; align-items: center; gap: 0.5rem; }
.cart-drawer-close {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--surface-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  transition: all 0.2s;
}
.cart-drawer-close:hover { color: var(--primary-text); border-color: var(--primary); }

.cart-drawer-scroll {
  flex: 1;
  overflow-y: auto;
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.cart-freeship {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface-cream);
  padding: var(--space-md);
  font-size: 0.82rem;
  color: var(--ink-soft);
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.cart-freeship b { color: var(--primary-text); }
.cart-freeship-track { height: 8px; border-radius: 999px; background: var(--border-strong); overflow: hidden; }
.cart-freeship-fill {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transition: width 0.4s ease;
}
.cart-freeship.done { border-color: var(--tertiary); background: var(--tertiary-soft); }
.cart-freeship.done b { color: var(--tertiary); }
.cart-freeship-title { display: flex; align-items: center; gap: 0.4rem; }
.cart-freeship-title .material-symbols-rounded { font-size: 1.05rem; color: var(--tertiary); }
.cart-freeship.done .cart-freeship-fill { background: linear-gradient(90deg, var(--tertiary), #10B981); }

.cart-items { display: flex; flex-direction: column; gap: var(--space-md); }
.cart-item {
  display: flex;
  gap: var(--space-md);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--space-md);
}
.cart-item-thumb {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  background: var(--surface-cream);
  flex-shrink: 0;
}
.cart-item-info { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 0.25rem; }
.cart-item-title { font-size: 0.82rem; font-weight: 600; line-height: 1.35; }
.cart-item-variant { font-size: 0.72rem; color: var(--ink-soft); }
.cart-item-qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface-cream);
  margin-top: 0.3rem;
  width: fit-content;
}
.cart-item-qty button {
  width: 30px;
  height: 30px;
  border: none;
  background: transparent;
  font-size: 1.05rem;
  color: var(--ink);
  border-radius: var(--radius-sm);
}
.cart-item-qty button:hover { color: var(--primary-text); background: var(--primary-soft); }
.cart-item-qty span { min-width: 26px; text-align: center; font-weight: 700; font-size: 0.85rem; }
.cart-item-price { display: flex; flex-direction: column; align-items: flex-end; justify-content: space-between; }
.cart-item-price b { font-size: 0.9rem; }
.cart-item-remove { border: none; background: transparent; color: var(--ink-soft); padding: 2px; }
.cart-item-remove:hover { color: var(--primary-text); }

.cart-empty {
  text-align: center;
  padding: var(--space-xl) var(--space-md);
  color: var(--ink-soft);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
}
.cart-empty .material-symbols-rounded { font-size: 2.6rem; color: var(--border-strong); }
.cart-empty p { font-size: 0.9rem; }
.cart-empty .btn { max-width: 220px; }

.cart-cross { border-top: 1px dashed var(--border); padding-top: var(--space-lg); }
.cart-cross-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--space-md);
  background: var(--surface-cream);
}
.cart-cross-card .eyebrow { margin-bottom: var(--space-sm); display: block; }
.cart-cross-body { display: flex; align-items: center; gap: var(--space-md); }
.cart-cross-thumb {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  background: #fff;
  flex-shrink: 0;
}
.cart-cross-info { flex: 1; min-width: 0; }
.cart-cross-info p { font-size: 0.78rem; }
.cart-cross-info span { font-size: 0.82rem; font-weight: 700; color: var(--ink); }

.cart-drawer-foot {
  border-top: 1px solid var(--border);
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  background: var(--surface);
}
.cart-foot-row { display: flex; justify-content: space-between; align-items: baseline; }
.cart-foot-row b { font-size: 1.15rem; }
.cart-foot-note { font-size: 0.72rem; color: var(--ink-soft); margin-top: -0.5rem; }
.cart-drawer-foot .btn { height: 52px; font-size: 0.95rem; }
/* ============= CHECKOUT ============= */
.checkout-header {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 1.1rem 0;
}
.checkout-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.checkout-logo {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.checkout-logo .logo-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--primary);
}
.checkout-trust-badge {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--tertiary);
  background: var(--tertiary-soft);
  padding: 6px 12px;
  border-radius: var(--radius-full);
}
.checkout-trust-badge .material-symbols-rounded { font-size: 1.1rem; }
.checkout-back-link {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  gap: 0.3rem;
  text-decoration: none;
}
.checkout-back-link:hover { color: var(--primary-text); }

.checkout-main {
  padding: var(--space-xl) 0 var(--space-3xl);
  background: var(--surface-cream);
  min-height: calc(100vh - 80px);
}

.checkout-stepper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
  flex-wrap: wrap;
}
.checkout-step-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--ink-soft);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  background: transparent;
  border: none;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  transition: all 0.2s;
}
.checkout-step-item:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}
.checkout-step-num {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--border-strong);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
}
.checkout-step-item.active {
  color: var(--primary-text);
  background: var(--primary-soft);
}
.checkout-step-item.active .checkout-step-num {
  background: var(--primary);
  color: #fff;
}
.checkout-step-item.completed {
  color: var(--tertiary);
}
.checkout-step-item.completed .checkout-step-num {
  background: var(--tertiary);
  color: #fff;
}
.checkout-step-sep {
  color: var(--border-strong);
  font-size: 0.8rem;
}

.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: var(--space-xl);
  align-items: start;
}
.checkout-layout.full-width {
  grid-template-columns: 1fr;
  max-width: 720px;
  margin: 0 auto;
}

.checkout-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-1);
}
.checkout-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--border);
}
.checkout-card-header h2 {
  font-size: 1.25rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.checkout-form-grid {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}
.checkout-form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: var(--space-md);
}
.checkout-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.checkout-form-group label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
}
.checkout-form-group label .optional {
  font-weight: 400;
  color: var(--ink-soft);
}
.checkout-input, .checkout-select {
  height: 46px;
  padding: 0 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface);
  font-size: 0.9rem;
  color: var(--ink);
  transition: all 0.2s;
  width: 100%;
}
.checkout-input:focus, .checkout-select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(224,83,83,0.12);
}
.checkout-input.input-error {
  border-color: #ef4444;
  background: #fff5f5;
}
.field-error-msg {
  font-size: 0.75rem;
  color: #ef4444;
}

.checkout-option-card {
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: var(--space-md) var(--space-lg);
  cursor: pointer;
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  transition: all 0.2s;
  background: var(--surface);
}
.checkout-option-card:hover {
  border-color: var(--border-strong);
}
.checkout-option-card.selected {
  border-color: var(--primary);
  background: var(--primary-soft);
}
.checkout-option-card input[type="radio"] {
  margin-top: 4px;
  accent-color: var(--primary);
  width: 18px;
  height: 18px;
}

.checkout-actions-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: var(--space-xl);
  gap: var(--space-md);
}

/* Payment mock */
.pay-methods-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}
.pay-tab-btn {
  padding: 12px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: all 0.2s;
}
.pay-tab-btn.active {
  border-color: var(--primary);
  color: var(--primary-text);
  background: var(--primary-soft);
}

.pix-box {
  border: 1px dashed var(--border-strong);
  background: var(--surface-cream);
  border-radius: var(--radius);
  padding: var(--space-lg);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
}
.pix-qr-wrap {
  background: #fff;
  padding: 14px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-1);
  display: inline-flex;
}
.pix-code-field {
  display: flex;
  width: 100%;
  max-width: 480px;
  gap: 8px;
}
.pix-code-field input {
  flex: 1;
  background: #fff;
  font-family: monospace;
  font-size: 0.8rem;
  padding: 0 10px;
}

/* Order Summary */
.checkout-summary-sticky {
  position: sticky;
  top: 24px;
}
.summary-items-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-height: 280px;
  overflow-y: auto;
  padding-right: 4px;
  margin-bottom: var(--space-md);
}
.summary-item-row {
  display: flex;
  align-items: center;
  gap: 12px;
}
.summary-item-thumb {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  background: var(--surface-cream);
  border: 1px solid var(--border);
  flex-shrink: 0;
}
.summary-item-details {
  flex: 1;
  min-width: 0;
}
.summary-item-title {
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.summary-item-sub {
  font-size: 0.72rem;
  color: var(--ink-soft);
}
.summary-item-price {
  font-size: 0.85rem;
  font-weight: 700;
  white-space: nowrap;
}

.summary-calc-rows {
  border-top: 1px solid var(--border);
  padding-top: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.88rem;
}
.summary-row {
  display: flex;
  justify-content: space-between;
  color: var(--ink-soft);
}
.summary-row.total-row {
  border-top: 1px solid var(--border);
  padding-top: 10px;
  margin-top: 6px;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
}
.summary-row.discount-row {
  color: var(--tertiary);
  font-weight: 600;
}

.coupon-box {
  margin-top: var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px dashed var(--border);
}
.coupon-input-row {
  display: flex;
  gap: 6px;
}
.coupon-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--tertiary-soft);
  color: var(--tertiary);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  margin-top: 8px;
}

/* Success Card */
.order-success-banner {
  text-align: center;
  padding: var(--space-2xl) var(--space-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
}
.order-success-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--tertiary-soft);
  color: var(--tertiary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.8rem;
}
.order-badge-code {
  font-family: monospace;
  font-size: 1.15rem;
  font-weight: 700;
  background: var(--surface-cream);
  border: 1px dashed var(--border-strong);
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  color: var(--ink);
}

/* ============= RESPONSIVE ============= */
@media (max-width: 1024px) {
  .checkout-layout { grid-template-columns: 1fr; }
  .checkout-summary-sticky { position: static; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .prod-grid { grid-template-columns: repeat(3, 1fr); }
  .trust-strip .container { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .plp-layout { grid-template-columns: 1fr; }
  .filters { position: static; }
  .pdp-grid { grid-template-columns: 1fr; gap: var(--space-xl); }
}

@media (max-width: 768px) {
  .container { --gutter: 1rem; }
  .search-box { display: none; }
  .header-action .header-action-label { display: none; }
  .header-actions { gap: 1rem; }
  .site-nav a { font-size: 0.8rem; padding: 0.7rem 0.7rem; }
  .prod-grid { grid-template-columns: repeat(2, 1fr); }
  .duo-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .promo-banner { min-height: 240px; }
  .promo-banner .promo-content { padding: var(--space-lg); }
  .hero-content { padding: var(--space-2xl) 0; }
  .hero h1 { font-size: 2rem; }
  .pdp-price-line .now { font-size: 1.8rem; }
  .gallery-thumbs .thumb { width: 64px; }
  .panel-pdp ul { grid-template-columns: 1fr; }
  .section { padding: var(--space-xl) 0; }
}

@media (max-width: 480px) {
  .cat-grid { grid-template-columns: 1fr 1fr; gap: var(--space-sm); }
  .cat-card { min-height: 170px; padding: var(--space-md); }
  .trust-strip .container { grid-template-columns: 1fr 1fr; gap: var(--space-sm); padding-top: var(--space-md); padding-bottom: var(--space-md); }
  .trust-item { gap: var(--space-sm); }
  .trust-item .icon { width: 40px; height: 40px; }
  .trust-item .label-lg { font-size: 0.75rem; }
  .trust-item .body-sm { font-size: 0.65rem; }
  .prod-name { font-size: 0.8rem; }
}