/* ===================================================================
   Laluá Concept & Flor de Prata — Editorial Magazine
   Design tokens, components & motion · v3.0
   =================================================================== */

/* ============ TOKENS ============ */
:root {
  /* Paleta refinada — preto profundo, cremes quentes, rosé, blossom */
  --ink:          #0A0908;
  --ink-soft:     #2B2421;
  --ink-muted:    #6D5F55;
  --ink-faint:    #A89A8E;
  --ink-line:     rgba(10, 9, 8, 0.08);

  --cream:        #F5EDE3;
  --cream-soft:   #FAF4EC;
  --cream-deep:   #EBE0CF;
  --white:        #FFFFFF;

  --blossom:      #E8B7BD;
  --blossom-soft: #F4D8DD;
  --blossom-deep: #B88990;

  --rose:         #B89368;
  --rose-deep:    #8B6A47;
  --rose-faint:   #DCC4A6;

  --silver:       #C0BCB7;
  --silver-deep:  #8B847E;

  --line:         #E5D7C7;
  --line-faint:   #EFE4D6;

  --success:      #5C8F6B;
  --danger:       #B43A3A;

  /* Tipografia */
  --font-display: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-script:  'Italianno', 'Allura', cursive;
  --font-sans:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono:    'JetBrains Mono', ui-monospace, monospace;

  /* Escala modular 1.333 */
  --fs-xs:    11px;
  --fs-sm:    13px;
  --fs-base:  16px;
  --fs-md:    19px;
  --fs-lg:    25px;
  --fs-xl:    33px;
  --fs-2xl:   44px;
  --fs-3xl:   58px;
  --fs-4xl:   77px;
  --fs-5xl:   103px;

  /* Spacing 8pt */
  --s-1:  4px;  --s-2:  8px;  --s-3: 12px;
  --s-4: 16px;  --s-5: 24px;  --s-6: 32px;
  --s-7: 48px;  --s-8: 64px;  --s-9: 96px;
  --s-10:128px; --s-11:160px; --s-12:200px;

  /* Radii — luxo prefere bordas afiadas */
  --r-0: 0; --r-1: 1px; --r-2: 2px; --r-3: 4px; --r-4: 8px; --r-full: 999px;

  --sh-1: 0 1px 2px rgba(10,9,8,.04);
  --sh-2: 0 4px 16px rgba(10,9,8,.06), 0 2px 4px rgba(10,9,8,.03);
  --sh-3: 0 30px 60px rgba(10,9,8,.12), 0 10px 20px rgba(10,9,8,.04);
  --sh-img: 0 40px 100px rgba(10,9,8,.22);

  --ease:     cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --dur-fast:   200ms;
  --dur-base:   400ms;
  --dur-slow:   700ms;
  --dur-slower: 1100ms;

  --container: 1440px;
  --container-narrow: 1080px;
}

/* ============ RESET ============ */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: var(--fs-base);
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: 'kern', 'liga', 'calt';
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; transition: color var(--dur-fast) var(--ease); }
button { font-family: inherit; cursor: pointer; border: none; background: none; padding: 0; }
p { margin: 0 0 1em; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 0 0 0.4em;
  color: var(--ink);
}
h1 { font-size: clamp(var(--fs-3xl), 8vw, var(--fs-5xl)); font-weight: 300; }
h2 { font-size: clamp(var(--fs-2xl), 5vw, var(--fs-4xl)); font-weight: 300; }
h3 { font-size: clamp(var(--fs-xl), 3vw, var(--fs-2xl)); }
h4 { font-size: var(--fs-lg); }

::selection { background: var(--blossom); color: var(--ink); }

:focus-visible {
  outline: 1px solid var(--rose);
  outline-offset: 4px;
}

/* ============ TYPOGRAPHY ============ */
.eyebrow {
  font-family: var(--font-sans);
  font-size: var(--fs-xs);
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--rose-deep);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
}
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--rose);
}
.script {
  font-family: var(--font-script);
  font-size: 1.5em;
  color: var(--rose-deep);
  line-height: 0.8;
}
.numeral {
  font-family: var(--font-display);
  font-size: var(--fs-xs);
  letter-spacing: 0.3em;
  color: var(--rose-deep);
  font-weight: 400;
  font-style: italic;
}
.divider {
  display: block;
  width: 48px;
  height: 1px;
  background: var(--rose);
  margin: var(--s-5) auto;
  border: 0;
}
.divider-soft {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
  border: 0;
  margin: var(--s-7) 0;
}

/* ============ CONTAINER ============ */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--s-5);
}
.container-narrow {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 var(--s-5);
}
@media (min-width: 768px) {
  .container, .container-narrow { padding: 0 var(--s-8); }
}

/* ============ ANNOUNCEMENT BAR ============ */
.announce {
  background: var(--ink);
  color: var(--cream);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  padding: var(--s-3) 0;
  font-weight: 400;
}
.announce-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--s-5);
  flex-wrap: wrap;
}
.announce-msg { display: flex; align-items: center; gap: var(--s-3); opacity: 0.9; }
.announce-msg::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 4px;
  background: var(--blossom);
  border-radius: 50%;
}
.announce-contacts { display: flex; gap: var(--s-6); opacity: 0.6; }
.announce-contacts a { transition: opacity var(--dur-fast); }
.announce-contacts a:hover { opacity: 1; color: var(--blossom); }
@media (max-width: 720px) {
  .announce-contacts { display: none; }
  .announce-inner { justify-content: center; }
}

/* ============ HEADER ============ */
.header {
  background: rgba(245, 237, 227, 0.88);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border-bottom: 1px solid var(--line-faint);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: all var(--dur-base) var(--ease);
}
.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: var(--s-6) 0;
  gap: var(--s-7);
}
.header.scrolled .header-inner { padding: var(--s-3) 0; }
.header.scrolled .header-logo img { height: 52px; }

.header-logo {
  display: block;
  text-align: center;
  transition: transform var(--dur-base) var(--ease);
}
.header-logo img {
  height: 76px;
  width: auto;
  margin: 0 auto;
  transition: height var(--dur-base) var(--ease);
  mix-blend-mode: multiply; /* remove o fundo branco da logo sobre o creme */
}

.header-nav {
  display: flex;
  gap: var(--s-7);
  align-items: center;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 500;
}
.header-nav a {
  position: relative;
  padding: var(--s-2) 0;
  color: var(--ink-soft);
  transition: color var(--dur-fast) var(--ease);
}
.header-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background: var(--rose);
  transition: width var(--dur-base) var(--ease-out);
}
.header-nav a:hover { color: var(--ink); }
.header-nav a:hover::after,
.header-nav a.active::after { width: 100%; }

.header-actions {
  display: flex;
  gap: var(--s-3);
  justify-content: flex-end;
  align-items: center;
}
.header-actions a,
.header-actions button {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  position: relative;
  transition: color var(--dur-fast) var(--ease);
}
.header-actions a:hover { color: var(--rose-deep); }
.header-actions svg { width: 18px; height: 18px; stroke-width: 1.25; }

.cart-badge {
  position: absolute;
  top: 6px;
  right: 6px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  background: var(--ink);
  color: var(--cream);
  border-radius: var(--r-full);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
}

.mobile-toggle { display: none; }

@media (max-width: 900px) {
  .header-inner { grid-template-columns: auto 1fr auto; gap: var(--s-3); }
  .header-nav { display: none; }
  .header-nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    padding: var(--s-6) var(--s-5);
    border-bottom: 1px solid var(--line);
    gap: var(--s-4);
    box-shadow: var(--sh-2);
  }
  .header-nav.open a { font-size: 12px; padding: var(--s-2) 0; }
  .mobile-toggle { display: inline-flex; }
  .header-logo img { height: 56px; }
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-3);
  padding: 18px 36px;
  background: var(--ink);
  color: var(--cream);
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  border: 1px solid var(--ink);
  border-radius: var(--r-0);
  cursor: pointer;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all var(--dur-base) var(--ease);
  z-index: 1;
  white-space: nowrap;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--rose-deep);
  transform: translateY(101%);
  transition: transform var(--dur-base) var(--ease-out);
  z-index: -1;
}
.btn:hover {
  border-color: var(--rose-deep);
  color: var(--cream);
}
.btn:hover::before { transform: translateY(0); }

.btn-outline {
  background: transparent;
  color: var(--ink);
}
.btn-outline::before { background: var(--ink); }
.btn-outline:hover { color: var(--cream); border-color: var(--ink); }

.btn-light {
  background: var(--cream);
  color: var(--ink);
  border-color: var(--cream);
}
.btn-light::before { background: var(--blossom); }
.btn-light:hover { color: var(--ink); border-color: var(--blossom); }

.btn-ghost {
  background: transparent;
  color: var(--cream);
  border-color: rgba(245, 237, 227, 0.35);
}
.btn-ghost::before { background: var(--cream); }
.btn-ghost:hover { color: var(--ink); border-color: var(--cream); }

.btn-sm { padding: 12px 22px; font-size: 10px; }
.btn-lg { padding: 22px 44px; font-size: 12px; }
.btn-block { width: 100%; }

.btn-arrow {
  display: inline-flex;
  align-items: center;
  gap: var(--s-3);
}
.btn-arrow svg {
  width: 16px;
  height: 10px;
  transition: transform var(--dur-base) var(--ease-out);
}
.btn:hover .btn-arrow svg,
.btn-arrow:hover svg { transform: translateX(6px); }

.btn-link {
  background: none;
  border: none;
  color: var(--ink);
  padding: var(--s-2) 0;
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 500;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: var(--s-3);
}
.btn-link::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--rose);
  transform-origin: right;
  transform: scaleX(1);
  transition: transform var(--dur-base) var(--ease-out);
}
.btn-link svg { width: 16px; height: 10px; transition: transform var(--dur-base) var(--ease-out); }
.btn-link:hover { color: var(--rose-deep); }
.btn-link:hover::after { transform-origin: left; transform: scaleX(0.6); }
.btn-link:hover svg { transform: translateX(6px); }

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 92vh;
  background: var(--cream);
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -10%;
  width: 60vw;
  height: 60vw;
  max-width: 800px;
  max-height: 800px;
  background: radial-gradient(circle, var(--blossom-soft) 0%, transparent 65%);
  opacity: 0.55;
  border-radius: 50%;
  z-index: 0;
  animation: float 18s ease-in-out infinite;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -15%;
  left: -10%;
  width: 50vw;
  height: 50vw;
  max-width: 600px;
  max-height: 600px;
  background: radial-gradient(circle, var(--rose-faint) 0%, transparent 60%);
  opacity: 0.35;
  border-radius: 50%;
  z-index: 0;
  animation: float 22s ease-in-out infinite reverse;
}
@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-30px, 40px); }
}

.hero-meta {
  position: absolute;
  top: var(--s-7);
  left: 0;
  right: 0;
  z-index: 5;
}
.hero-meta-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--s-5);
  display: flex;
  justify-content: space-between;
  font-family: var(--font-display);
  font-size: var(--fs-xs);
  letter-spacing: 0.3em;
  font-style: italic;
  color: var(--rose-deep);
  text-transform: uppercase;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: var(--s-9);
  align-items: center;
  width: 100%;
  padding: var(--s-10) var(--s-5) var(--s-9);
  max-width: var(--container);
  margin: 0 auto;
}
@media (min-width: 768px) {
  .hero-inner { padding: var(--s-10) var(--s-8) var(--s-9); }
}
.hero-content { max-width: 640px; }
.hero h1 {
  font-size: clamp(52px, 7.5vw, 108px);
  font-weight: 300;
  letter-spacing: -0.03em;
  line-height: 0.98;
  margin-bottom: var(--s-6);
}
.hero h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--rose-deep);
}
.hero h1 .script-accent {
  font-family: var(--font-script);
  font-size: 1.2em;
  font-weight: 400;
  color: var(--rose-deep);
  display: inline-block;
  line-height: 0.8;
  margin: 0 0.05em;
  vertical-align: -0.05em;
}
.hero p {
  font-size: var(--fs-md);
  color: var(--ink-soft);
  line-height: 1.75;
  margin-bottom: var(--s-7);
  max-width: 480px;
  font-weight: 300;
}
.hero-cta {
  display: flex;
  gap: var(--s-4);
  flex-wrap: wrap;
  align-items: center;
}

.hero-visual {
  position: relative;
  aspect-ratio: 3/4;
  max-height: 720px;
}
.hero-visual-stack {
  position: relative;
  width: 100%;
  height: 100%;
}
.hero-visual-stack img {
  position: absolute;
  box-shadow: var(--sh-img);
  object-fit: cover;
}
.hero-visual-stack .img-1 {
  top: 0;
  right: 0;
  width: 72%;
  height: 72%;
  z-index: 2;
}
.hero-visual-stack .img-2 {
  bottom: 0;
  left: 0;
  width: 58%;
  height: 58%;
  z-index: 3;
  border: 10px solid var(--cream);
}
.hero-frame {
  position: absolute;
  top: 8%;
  right: 4%;
  width: 76%;
  height: 76%;
  border: 1px solid var(--rose);
  z-index: 1;
  opacity: 0.6;
}
.hero-stats {
  position: absolute;
  bottom: var(--s-5);
  left: var(--s-5);
  right: var(--s-5);
  display: flex;
  justify-content: space-between;
  gap: var(--s-5);
  z-index: 5;
  background: rgba(245, 237, 227, 0.92);
  backdrop-filter: blur(8px);
  padding: var(--s-5) var(--s-6);
  border-top: 1px solid var(--rose);
}
.hero-stat { text-align: left; }
.hero-stat .num {
  font-family: var(--font-display);
  font-size: var(--fs-2xl);
  font-weight: 300;
  line-height: 1;
  color: var(--ink);
  display: block;
  font-style: italic;
}
.hero-stat .label {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-top: var(--s-2);
  font-weight: 500;
}

.scroll-cue {
  position: absolute;
  bottom: var(--s-6);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: var(--s-3);
  z-index: 5;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 500;
}
.scroll-cue::before, .scroll-cue::after {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--ink-muted);
  opacity: 0.4;
}

@media (max-width: 980px) {
  .hero { min-height: auto; padding: var(--s-8) 0; }
  .hero-inner { grid-template-columns: 1fr; gap: var(--s-7); padding: var(--s-10) var(--s-5) var(--s-9); }
  .hero-visual { max-height: 520px; margin: 0 auto; max-width: 440px; }
  .hero-stats { position: static; padding: var(--s-5) 0; margin-top: var(--s-5); background: none; backdrop-filter: none; }
  .hero-meta-inner { font-size: 10px; }
  .scroll-cue { display: none; }
}

/* ============ BRAND SPLIT ============ */
.brand-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 88vh;
}
.brand-card {
  position: relative;
  padding: var(--s-9) var(--s-8);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  cursor: pointer;
  transition: all var(--dur-slow) var(--ease);
  isolation: isolate;
  min-height: 600px;
}
.brand-card-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}
.brand-card-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slower) var(--ease-out), filter var(--dur-slow);
  filter: brightness(0.5) contrast(1.05) saturate(0.9);
}
.brand-card::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  transition: opacity var(--dur-slow);
}
.brand-card.lalua::after {
  background: linear-gradient(135deg, rgba(43, 25, 15, 0.5) 0%, rgba(10, 9, 8, 0.88) 100%);
}
.brand-card.prata::after {
  background: linear-gradient(135deg, rgba(20, 25, 35, 0.5) 0%, rgba(10, 9, 8, 0.88) 100%);
}
.brand-card:hover .brand-card-bg img {
  transform: scale(1.06);
  filter: brightness(0.65) contrast(1) saturate(1);
}
.brand-card * { color: var(--cream); }

.brand-card-top {
  display: flex;
  align-items: center;
  gap: var(--s-4);
}
.brand-card-top .num {
  font-family: var(--font-display);
  font-size: var(--fs-md);
  font-weight: 400;
  font-style: italic;
  color: var(--blossom);
  letter-spacing: 0.2em;
}
.brand-card.prata .brand-card-top .num { color: var(--silver); }
.brand-card-top .line {
  flex: 1;
  height: 1px;
  background: rgba(245, 237, 227, 0.25);
  max-width: 80px;
}
.brand-card-top .label {
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(245, 237, 227, 0.65);
  font-weight: 500;
}

.brand-card-content {
  max-width: 500px;
  margin-top: auto;
}
.brand-card h2 {
  font-size: clamp(var(--fs-2xl), 4.5vw, 80px);
  font-weight: 300;
  letter-spacing: -0.025em;
  line-height: 0.95;
  margin: var(--s-3) 0 var(--s-4);
  color: var(--cream);
}
.brand-card .tagline {
  font-family: var(--font-script);
  font-size: 42px;
  color: var(--blossom);
  margin-bottom: var(--s-5);
  line-height: 0.8;
}
.brand-card.prata .tagline { color: var(--silver); }
.brand-card .description {
  font-size: var(--fs-base);
  color: rgba(245, 237, 227, 0.78);
  max-width: 400px;
  margin-bottom: var(--s-7);
  line-height: 1.7;
}
.brand-card .arrow {
  display: inline-flex;
  align-items: center;
  gap: var(--s-4);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 500;
  transition: gap var(--dur-base) var(--ease-out);
}
.brand-card:hover .arrow { gap: var(--s-6); }
.brand-card .arrow svg { width: 28px; height: 12px; transition: transform var(--dur-base) var(--ease-out); }
.brand-card:hover .arrow svg { transform: translateX(8px); }

@media (max-width: 880px) {
  .brand-split { grid-template-columns: 1fr; }
  .brand-card { min-height: 540px; padding: var(--s-7); }
}

/* ============ SECTION ============ */
.section {
  padding: var(--s-11) 0;
  position: relative;
}
.section-sm { padding: var(--s-8) 0; }
.section-alt { background: var(--cream-soft); }
.section-dark { background: var(--ink); color: var(--cream); }
.section-dark h1, .section-dark h2, .section-dark h3 { color: var(--cream); }

.section-header {
  text-align: center;
  margin-bottom: var(--s-9);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.section-header .numeral {
  display: block;
  margin-bottom: var(--s-4);
}
.section-header .eyebrow { margin-bottom: var(--s-4); }
.section-header h2 { margin-bottom: var(--s-4); }
.section-header p {
  color: var(--ink-muted);
  font-size: var(--fs-md);
  line-height: 1.7;
  font-weight: 300;
  max-width: 540px;
  margin: 0 auto;
}

.section-header-split {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: var(--s-8);
  gap: var(--s-5);
  flex-wrap: wrap;
  padding-bottom: var(--s-5);
  border-bottom: 1px solid var(--line);
}
.section-header-split h2 { margin-bottom: 0; }
.section-header-split .numeral { display: block; margin-bottom: var(--s-2); }

@media (max-width: 768px) {
  .section { padding: var(--s-9) 0; }
}

/* ============ PRODUCT GRID & CARDS ============ */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--s-7) var(--s-5);
}
.product-grid-lg {
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: var(--s-8) var(--s-6);
}

.product-card {
  display: flex;
  flex-direction: column;
  background: transparent;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
}
.product-card-img {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--cream-soft);
  margin-bottom: var(--s-4);
}
.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slower) var(--ease-out);
}
.product-card:hover .product-card-img img {
  transform: scale(1.05);
}
.product-card-img .placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-faint);
  background: linear-gradient(135deg, var(--cream-soft), var(--cream-deep));
}
.product-card-img .placeholder svg { width: 48px; height: 48px; opacity: 0.5; }

.product-card-tags {
  position: absolute;
  top: var(--s-3);
  left: var(--s-3);
  display: flex;
  flex-direction: column;
  gap: var(--s-1);
  z-index: 2;
}
.tag {
  display: inline-block;
  background: var(--ink);
  color: var(--cream);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 5px 10px;
  font-weight: 500;
  border-radius: 0;
}
.tag.sale { background: var(--blossom-deep); color: var(--cream); }
.tag.new  { background: var(--cream); color: var(--ink); }

.product-card-quick {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(10, 9, 8, 0.92);
  backdrop-filter: blur(8px);
  color: var(--cream);
  padding: var(--s-3);
  text-align: center;
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 500;
  transform: translateY(100%);
  transition: transform var(--dur-base) var(--ease-out);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-3);
}
.product-card-quick svg { width: 14px; height: 9px; }
.product-card:hover .product-card-quick { transform: translateY(0); }

.product-card-body { padding: 0; }
.product-card-brand {
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--rose-deep);
  font-weight: 500;
  margin-bottom: var(--s-2);
}
.product-card-title {
  font-family: var(--font-display);
  font-size: var(--fs-md);
  font-weight: 400;
  line-height: 1.25;
  margin: 0 0 var(--s-3);
  color: var(--ink);
  letter-spacing: -0.005em;
}
.product-card-price {
  font-size: var(--fs-base);
  font-weight: 500;
  color: var(--ink);
  display: flex;
  align-items: baseline;
  gap: var(--s-3);
  font-family: var(--font-display);
}
.product-card-price > span:last-child { font-style: italic; }
.product-card-price .compare {
  font-size: var(--fs-sm);
  text-decoration: line-through;
  color: var(--ink-faint);
  font-weight: 400;
  font-style: normal;
}

/* ============ FEATURE STRIP ============ */
.features {
  background: var(--cream-soft);
  padding: var(--s-8) 0;
  border-top: 1px solid var(--line-faint);
  border-bottom: 1px solid var(--line-faint);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--s-7);
}
.feature {
  text-align: center;
  padding: 0 var(--s-3);
}
.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  color: var(--rose-deep);
  margin: 0 auto var(--s-4);
  transition: all var(--dur-base) var(--ease);
  border: 1px solid var(--rose);
  border-radius: 50%;
}
.feature:hover .feature-icon {
  background: var(--rose);
  color: var(--cream);
  transform: translateY(-3px);
}
.feature-icon svg { width: 20px; height: 20px; stroke-width: 1.25; }
.feature h4 {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: var(--s-2);
  color: var(--ink);
}
.feature p {
  font-size: var(--fs-sm);
  color: var(--ink-muted);
  margin: 0;
  max-width: 220px;
  margin-inline: auto;
  line-height: 1.65;
}

/* ============ EDITORIAL BANNER ============ */
.editorial {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: var(--cream);
}
.editorial-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  min-height: 640px;
}
.editorial-text {
  padding: var(--s-9) var(--s-9);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.editorial-text .numeral { color: var(--blossom); margin-bottom: var(--s-3); display: block; }
.editorial-text .eyebrow { color: var(--blossom); margin-bottom: var(--s-5); }
.editorial-text .eyebrow::before { background: var(--blossom); }
.editorial-text h2 {
  color: var(--cream);
  font-weight: 300;
  line-height: 0.98;
  margin-bottom: var(--s-6);
  letter-spacing: -0.025em;
}
.editorial-text h2 em { font-style: italic; color: var(--blossom); }
.editorial-text p {
  color: rgba(245, 237, 227, 0.72);
  font-size: var(--fs-md);
  line-height: 1.75;
  margin-bottom: var(--s-7);
  max-width: 480px;
  font-weight: 300;
}
.editorial-img {
  position: relative;
  overflow: hidden;
}
.editorial-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slower) var(--ease-out);
}
.editorial:hover .editorial-img img { transform: scale(1.04); }

@media (max-width: 880px) {
  .editorial-inner { grid-template-columns: 1fr; }
  .editorial-text { padding: var(--s-8) var(--s-5); }
  .editorial-img { min-height: 380px; order: -1; }
}

/* ============ MARQUEE ============ */
.marquee {
  background: var(--ink);
  color: var(--cream);
  padding: var(--s-5) 0;
  overflow: hidden;
  border-top: 1px solid rgba(245, 237, 227, 0.06);
  border-bottom: 1px solid rgba(245, 237, 227, 0.06);
}
.marquee-track {
  display: flex;
  gap: var(--s-9);
  white-space: nowrap;
  animation: marquee 50s linear infinite;
  align-items: center;
}
.marquee-item {
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  font-style: italic;
  font-weight: 300;
  letter-spacing: 0.01em;
  display: inline-flex;
  align-items: center;
  gap: var(--s-9);
  color: rgba(245, 237, 227, 0.85);
}
.marquee-ornament {
  display: inline-block;
  width: 12px;
  height: 12px;
  color: var(--blossom);
  opacity: 0.7;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============ FOOTER ============ */
.footer {
  background: var(--ink);
  color: rgba(245, 237, 227, 0.65);
  padding: var(--s-10) 0 var(--s-6);
}
.footer-top {
  text-align: center;
  padding-bottom: var(--s-9);
  border-bottom: 1px solid rgba(245, 237, 227, 0.06);
  margin-bottom: var(--s-9);
}
.footer-top .numeral { display: block; color: var(--blossom); margin-bottom: var(--s-4); }
.footer-top h3 {
  font-family: var(--font-display);
  font-size: clamp(var(--fs-xl), 3vw, 56px);
  font-weight: 300;
  color: var(--cream);
  margin-bottom: var(--s-5);
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.footer-top h3 em { font-style: italic; color: var(--blossom); }
.footer-top p {
  color: rgba(245, 237, 227, 0.55);
  max-width: 460px;
  margin: 0 auto var(--s-6);
  font-weight: 300;
}
.footer-newsletter {
  display: flex;
  max-width: 480px;
  margin: 0 auto;
  gap: 0;
  border-bottom: 1px solid rgba(245, 237, 227, 0.2);
}
.footer-newsletter input {
  flex: 1;
  padding: var(--s-4) 0;
  background: transparent;
  border: none;
  color: var(--cream);
  font-family: inherit;
  font-size: var(--fs-sm);
  letter-spacing: 0.05em;
}
.footer-newsletter input:focus { outline: none; }
.footer-newsletter input::placeholder { color: rgba(245, 237, 227, 0.35); }
.footer-newsletter button {
  background: transparent;
  border: none;
  color: var(--cream);
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 500;
  padding: var(--s-4) var(--s-4);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: var(--s-3);
  transition: color var(--dur-fast);
}
.footer-newsletter button:hover { color: var(--blossom); }
.footer-newsletter button svg { width: 14px; height: 9px; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: var(--s-8);
  margin-bottom: var(--s-8);
}
.footer-brand img {
  height: 88px;
  width: auto;
  margin-bottom: var(--s-5);
  /* Logo tem fundo branco — exibe num selo claro elegante no footer escuro */
  background: var(--cream);
  padding: var(--s-3);
  border-radius: var(--r-3);
}
.footer-brand p {
  font-size: var(--fs-sm);
  color: rgba(245, 237, 227, 0.5);
  line-height: 1.75;
  max-width: 320px;
  margin-bottom: var(--s-5);
  font-weight: 300;
}
.footer-social { display: flex; gap: var(--s-3); }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(245, 237, 227, 0.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(245, 237, 227, 0.7);
  transition: all var(--dur-fast) var(--ease);
}
.footer-social a:hover {
  background: var(--blossom);
  color: var(--ink);
  border-color: var(--blossom);
}
.footer-social svg { width: 15px; height: 15px; stroke-width: 1.25; }

.footer-col h4 {
  font-family: var(--font-sans);
  color: var(--cream);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: var(--s-5);
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: var(--s-3); }
.footer-col a {
  font-size: var(--fs-sm);
  color: rgba(245, 237, 227, 0.55);
  transition: color var(--dur-fast);
  font-weight: 300;
}
.footer-col a:hover { color: var(--blossom); }

.footer-bottom {
  padding-top: var(--s-5);
  border-top: 1px solid rgba(245, 237, 227, 0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--s-3);
  font-size: 10px;
  color: rgba(245, 237, 227, 0.35);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.footer-bottom .payments {
  display: flex;
  gap: var(--s-3);
  align-items: center;
}
.footer-bottom .payment-pill {
  border: 1px solid rgba(245, 237, 227, 0.12);
  padding: 5px 11px;
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245, 237, 227, 0.55);
}

@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--s-6); } }
@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-newsletter { flex-direction: column; gap: var(--s-3); }
  .footer-newsletter button { justify-content: flex-start; padding: var(--s-3) 0; }
  .footer-bottom { justify-content: center; text-align: center; }
}

/* ============ WHATSAPP FLOAT ============ */
.wpp-float {
  position: fixed;
  bottom: var(--s-5);
  right: var(--s-5);
  z-index: 90;
}
.wpp-float-btn {
  width: 56px;
  height: 56px;
  background: var(--ink);
  color: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--sh-3);
  cursor: pointer;
  border: 1px solid rgba(245, 237, 227, 0.15);
  transition: all var(--dur-base) var(--ease);
}
.wpp-float-btn:hover {
  background: var(--rose-deep);
  transform: scale(1.05);
}
.wpp-float-btn svg { width: 22px; height: 22px; }
.wpp-float-menu {
  position: absolute;
  bottom: 72px;
  right: 0;
  background: var(--cream);
  padding: var(--s-3);
  box-shadow: var(--sh-3);
  min-width: 290px;
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: all var(--dur-base) var(--ease-out);
  border: 1px solid var(--line);
}
.wpp-float-menu.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.wpp-float-menu a {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  padding: var(--s-3);
  transition: background var(--dur-fast);
  color: var(--ink);
}
.wpp-float-menu a + a { border-top: 1px solid var(--line-faint); }
.wpp-float-menu a:hover { background: var(--cream-soft); }
.wpp-float-menu .icon-circ {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--blossom-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid var(--blossom);
}
.wpp-float-menu .icon-circ svg { width: 16px; height: 16px; color: var(--rose-deep); stroke-width: 1.25; }
.wpp-float-menu .label-brand { font-family: var(--font-display); font-size: var(--fs-md); font-weight: 500; line-height: 1; letter-spacing: -0.01em; }
.wpp-float-menu .label-phone { font-size: 10px; color: var(--ink-muted); margin-top: 4px; letter-spacing: 0.2em; text-transform: uppercase; }

/* ============ FORMS ============ */
.form-group { margin-bottom: var(--s-4); }
.form-group label {
  display: block;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: var(--s-2);
  font-weight: 600;
}
.form-control {
  width: 100%;
  padding: 14px 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 0;
  font-family: inherit;
  font-size: var(--fs-base);
  color: var(--ink);
  transition: all var(--dur-fast) var(--ease);
}
.form-control:focus {
  outline: none;
  border-color: var(--rose);
  box-shadow: 0 0 0 1px var(--rose);
}
.form-control::placeholder { color: var(--ink-faint); }
.form-row { display: grid; gap: var(--s-4); }
.form-row.cols-2 { grid-template-columns: 1fr 1fr; }
.form-row.cols-3 { grid-template-columns: 2fr 1fr 1fr; }
@media (max-width: 600px) { .form-row.cols-2, .form-row.cols-3 { grid-template-columns: 1fr; } }

.alert {
  padding: var(--s-4) var(--s-5);
  margin-bottom: var(--s-5);
  font-size: var(--fs-sm);
  border-left: 2px solid;
  background: var(--cream-soft);
}
.alert-success { color: var(--success); border-color: var(--success); }
.alert-error   { color: var(--danger); border-color: var(--danger); }
.alert-info    { background: var(--blossom-soft); color: var(--ink-soft); border-color: var(--blossom-deep); }

/* ============ CART / CHECKOUT ============ */
.cart-layout { display: grid; grid-template-columns: 1fr 400px; gap: var(--s-8); }
@media (max-width: 920px) { .cart-layout { grid-template-columns: 1fr; } }

.cart-item {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: var(--s-5);
  padding: var(--s-5) 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
}
.cart-item img { width: 120px; height: 144px; object-fit: cover; }
.cart-item-info h4 { font-family: var(--font-display); font-size: var(--fs-md); margin: 0 0 var(--s-1); font-weight: 500; }
.cart-item-brand { font-size: 10px; letter-spacing: 0.32em; text-transform: uppercase; color: var(--rose-deep); font-weight: 500; }
.cart-item-actions { display: flex; gap: var(--s-4); align-items: center; margin-top: var(--s-3); }

.qty-input {
  display: inline-flex;
  border: 1px solid var(--line);
  background: var(--white);
}
.qty-input button {
  width: 36px; height: 36px;
  background: transparent;
  color: var(--ink);
  transition: background var(--dur-fast);
  font-size: var(--fs-md);
}
.qty-input button:hover { background: var(--cream-soft); }
.qty-input input {
  width: 48px;
  text-align: center;
  border: none;
  background: transparent;
  font-family: inherit;
  font-size: var(--fs-sm);
  color: var(--ink);
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
}
.qty-input input:focus { outline: none; }

.btn-remove {
  background: none;
  border: none;
  color: var(--ink-muted);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  padding: 4px 0;
  border-bottom: 1px solid var(--line);
  font-weight: 500;
}
.btn-remove:hover { color: var(--danger); border-color: var(--danger); }

.summary {
  background: var(--cream-soft);
  padding: var(--s-7);
  position: sticky;
  top: 120px;
  border: 1px solid var(--line-faint);
}
.summary h3 { font-family: var(--font-display); margin: 0 0 var(--s-5); padding-bottom: var(--s-4); border-bottom: 1px solid var(--line); font-weight: 400; letter-spacing: -0.01em; }
.summary-row { display: flex; justify-content: space-between; margin-bottom: var(--s-3); font-size: var(--fs-sm); }
.summary-row.total {
  font-family: var(--font-display);
  font-size: var(--fs-lg);
  font-weight: 500;
  font-style: italic;
  border-top: 1px solid var(--line);
  padding-top: var(--s-4);
  margin-top: var(--s-4);
}

/* ============ MINI-CART DRAWER ============ */
.mc-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 9, 8, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  z-index: 110;
  transition: opacity var(--dur-base) var(--ease);
}
.mc-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.mc-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(460px, 100vw);
  background: var(--cream);
  z-index: 111;
  transform: translateX(100%);
  transition: transform var(--dur-slow) var(--ease-out);
  display: flex;
  flex-direction: column;
  box-shadow: -30px 0 80px rgba(10, 9, 8, 0.18);
}
.mc-drawer.open {
  transform: translateX(0);
}

.mc-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.mc-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  color: var(--rose-deep);
}

.mc-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--s-6) var(--s-6) var(--s-5);
  border-bottom: 1px solid var(--line);
}
.mc-close {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  transition: color var(--dur-fast);
}
.mc-close:hover { color: var(--rose-deep); }

.mc-empty {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--s-7) var(--s-6);
  text-align: center;
  color: var(--ink-muted);
}
.mc-empty svg { opacity: 0.3; margin-bottom: var(--s-4); }

.mc-items {
  flex: 1;
  overflow-y: auto;
  padding: var(--s-2) var(--s-6);
}
.mc-items::-webkit-scrollbar { width: 6px; }
.mc-items::-webkit-scrollbar-thumb { background: var(--line); border-radius: 3px; }

.mc-item {
  display: grid;
  grid-template-columns: 84px 1fr auto;
  gap: var(--s-4);
  padding: var(--s-4) 0;
  border-bottom: 1px solid var(--line-faint);
  align-items: flex-start;
}
.mc-item:last-child { border-bottom: none; }
.mc-item-img {
  display: block;
  width: 84px;
  height: 100px;
  overflow: hidden;
  background: var(--cream-soft);
}
.mc-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mc-item-info { min-width: 0; }
.mc-item-brand {
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--rose-deep);
  font-weight: 500;
  margin-bottom: 4px;
}
.mc-item-title {
  display: block;
  font-family: var(--font-display);
  font-size: 15px;
  line-height: 1.3;
  color: var(--ink);
  margin-bottom: 4px;
  font-weight: 400;
}
.mc-item-title:hover { color: var(--rose-deep); }
.mc-item-variant {
  font-size: 12px;
  color: var(--ink-muted);
  margin-bottom: 8px;
}
.mc-item-actions {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  margin-top: var(--s-2);
}
.mc-qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  background: var(--white);
}
.mc-qty-btn {
  width: 28px;
  height: 28px;
  font-size: 16px;
  color: var(--ink);
  transition: background var(--dur-fast);
}
.mc-qty-btn:hover { background: var(--cream-soft); }
.mc-qty-val {
  min-width: 26px;
  text-align: center;
  font-size: 13px;
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
  padding: 0 4px;
  font-family: var(--font-sans);
}
.mc-remove {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-muted);
  border-bottom: 1px solid var(--line);
  padding-bottom: 2px;
  font-weight: 500;
}
.mc-remove:hover { color: var(--danger); border-color: var(--danger); }

.mc-item-price {
  font-family: var(--font-display);
  font-size: 16px;
  font-style: italic;
  font-weight: 500;
  color: var(--ink);
  white-space: nowrap;
}

.mc-footer {
  background: var(--cream-soft);
  padding: var(--s-5) var(--s-6) var(--s-6);
  border-top: 1px solid var(--line);
}

.mc-coupon { margin-bottom: var(--s-4); }
.mc-coupon-form {
  display: flex;
  gap: 0;
  border: 1px solid var(--line);
  background: var(--white);
}
.mc-coupon-form input {
  flex: 1;
  border: none;
  padding: 12px 14px;
  background: transparent;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink);
}
.mc-coupon-form input:focus { outline: none; }
.mc-coupon-form input::placeholder { color: var(--ink-faint); text-transform: none; letter-spacing: 0; font-family: var(--font-sans); }
.mc-coupon-form button {
  padding: 0 16px;
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink);
  border-left: 1px solid var(--line);
  transition: color var(--dur-fast);
}
.mc-coupon-form button:hover { color: var(--rose-deep); }

.mc-coupon-msg {
  font-size: 12px;
  margin-top: 8px;
  min-height: 16px;
}
.mc-coupon-msg.error { color: var(--danger); }
.mc-coupon-msg.success { color: var(--success); }

.mc-coupon-applied {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  background: var(--blossom-soft);
  border: 1px solid var(--blossom);
  gap: var(--s-3);
}
.mc-coupon-applied code {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--ink);
}
.mc-coupon-label {
  display: block;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-top: 2px;
  font-weight: 500;
}
.mc-coupon-remove {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 500;
  border-bottom: 1px solid var(--ink-faint);
  padding-bottom: 2px;
}
.mc-coupon-remove:hover { color: var(--danger); border-color: var(--danger); }

.mc-summary { margin-bottom: var(--s-4); }
.mc-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 14px;
  color: var(--ink-soft);
  margin-bottom: 6px;
}
.mc-row.mc-discount { color: var(--success); }
.mc-row.mc-total {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  font-style: italic;
  color: var(--ink);
  border-top: 1px solid var(--line);
  padding-top: var(--s-3);
  margin-top: var(--s-3);
}
.mc-shipping-note {
  font-size: 11px;
  color: var(--ink-muted);
  margin: var(--s-2) 0 0;
  text-align: center;
  letter-spacing: 0.05em;
}

.mc-cta {
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
}
.mc-cta .btn { width: 100%; }

@media (max-width: 480px) {
  .mc-drawer { width: 100vw; }
  .mc-head { padding: var(--s-5) var(--s-4); }
  .mc-items { padding: var(--s-2) var(--s-4); }
  .mc-footer { padding: var(--s-4); }
  .mc-item { grid-template-columns: 72px 1fr auto; gap: var(--s-3); }
  .mc-item-img { width: 72px; height: 88px; }
}

body.mc-locked { overflow: hidden; }

/* ============ COUPON BOX ============ */
.coupon-applied {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--s-3);
  padding: var(--s-3);
  background: var(--blossom-soft);
  border: 1px solid var(--blossom);
}

/* ============ FILTERS / SHOP ============ */
.shop-layout { display: grid; grid-template-columns: 240px 1fr; gap: var(--s-8); }
@media (max-width: 880px) { .shop-layout { grid-template-columns: 1fr; } }

.filters h4 {
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  margin: var(--s-7) 0 var(--s-3);
  font-weight: 600;
  color: var(--ink);
}
.filters h4:first-child { margin-top: 0; }
.filters ul { list-style: none; padding: 0; margin: 0; }
.filters li a {
  display: block;
  padding: var(--s-2) 0;
  color: var(--ink-muted);
  font-size: var(--fs-sm);
  transition: color var(--dur-fast);
  font-weight: 300;
}
.filters li a:hover, .filters li a.active { color: var(--ink); font-weight: 500; }
.filters li a.active::before { content: '—\00a0'; color: var(--rose-deep); }

/* ============ PRODUCT PAGE ============ */
.product-detail {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: var(--s-9);
  align-items: flex-start;
}
@media (max-width: 980px) { .product-detail { grid-template-columns: 1fr; gap: var(--s-7); } }

.product-gallery .main {
  aspect-ratio: 4/5;
  background: var(--cream-soft);
  overflow: hidden;
  margin-bottom: var(--s-3);
}
.product-gallery .main img { width: 100%; height: 100%; object-fit: cover; transition: opacity .3s; }
.product-thumbs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--s-2);
}
.product-thumbs img {
  aspect-ratio: 1;
  object-fit: cover;
  cursor: pointer;
  border: 1px solid transparent;
  transition: border-color var(--dur-fast);
  opacity: 0.7;
}
.product-thumbs img.active, .product-thumbs img:hover { border-color: var(--rose); opacity: 1; }

.product-info { position: sticky; top: 120px; }
.product-info .brand-pill {
  display: inline-block;
  padding: 6px 14px;
  border: 1px solid var(--line);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--rose-deep);
  margin-bottom: var(--s-5);
  font-weight: 500;
}
.product-info h1 {
  font-size: clamp(var(--fs-xl), 3.5vw, var(--fs-3xl));
  margin-bottom: var(--s-3);
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: -0.025em;
}
.product-info .price {
  font-family: var(--font-display);
  font-size: var(--fs-2xl);
  font-weight: 400;
  font-style: italic;
  margin: var(--s-5) 0 var(--s-2);
  color: var(--ink);
  letter-spacing: -0.01em;
}
.product-info .price .compare {
  font-size: var(--fs-lg);
  text-decoration: line-through;
  color: var(--ink-faint);
  font-weight: 400;
  font-style: normal;
  margin-right: var(--s-3);
}
.product-info .description {
  color: var(--ink-soft);
  line-height: 1.85;
  margin: var(--s-6) 0;
  padding-top: var(--s-6);
  border-top: 1px solid var(--line);
  font-weight: 300;
  font-size: var(--fs-base);
}
/* Seletor de variação */
.variant-select { margin-top: var(--s-6); }
.variant-select.shake { animation: shake 0.4s var(--ease); }
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  20%, 60% { transform: translateX(-6px); }
  40%, 80% { transform: translateX(6px); }
}
.variant-select-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 600;
  margin-bottom: var(--s-3);
}
.variant-select-label .variant-chosen {
  color: var(--rose-deep);
  font-weight: 500;
}
.variant-options {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2);
}
.variant-opt {
  min-width: 52px;
  padding: 12px 18px;
  border: 1px solid var(--line);
  background: var(--white);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--ink);
  transition: all var(--dur-fast) var(--ease);
  cursor: pointer;
}
.variant-opt:hover { border-color: var(--ink); }
.variant-opt.selected {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}
.variant-opt:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  text-decoration: line-through;
}

.add-to-cart-form {
  display: flex;
  gap: var(--s-3);
  align-items: stretch;
  margin-top: var(--s-5);
}
.add-to-cart-form .btn { flex: 1; padding: 18px var(--s-5); }

.shipping-calc {
  margin-top: var(--s-7);
  padding: var(--s-6);
  background: var(--cream-soft);
  border: 1px solid var(--line-faint);
}
.shipping-calc h4 {
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: var(--s-4);
  font-weight: 600;
}
.shipping-options { margin-top: var(--s-4); }
.shipping-option {
  display: flex;
  justify-content: space-between;
  padding: var(--s-3) 0;
  border-bottom: 1px solid var(--line);
  font-size: var(--fs-sm);
}
.shipping-option:last-child { border-bottom: none; }

.product-meta {
  margin-top: var(--s-6);
  padding-top: var(--s-6);
  border-top: 1px solid var(--line);
  display: flex;
  gap: var(--s-6);
  flex-wrap: wrap;
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--ink-muted);
  text-transform: uppercase;
  font-weight: 500;
}
.product-meta-item { display: inline-flex; align-items: center; gap: var(--s-2); }
.product-meta-item svg { width: 12px; height: 12px; stroke-width: 1.25; color: var(--rose-deep); }

/* ============ BREADCRUMB ============ */
.breadcrumb {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: var(--s-6);
  font-weight: 500;
}
.breadcrumb a { color: var(--ink-muted); transition: color var(--dur-fast); }
.breadcrumb a:hover { color: var(--ink); }
.breadcrumb .sep { margin: 0 var(--s-3); opacity: 0.4; }

/* ============ EMPTY STATE ============ */
.empty-state {
  text-align: center;
  padding: var(--s-10) var(--s-5);
  color: var(--ink-muted);
}
.empty-state svg { width: 56px; height: 56px; margin: 0 auto var(--s-5); opacity: 0.25; stroke-width: 1; }
.empty-state h3 { font-family: var(--font-display); color: var(--ink); font-weight: 400; margin-bottom: var(--s-3); }

/* ============ CHECKOUT STEPS ============ */
.checkout-steps {
  display: flex;
  gap: 0;
  margin-bottom: var(--s-7);
  border-bottom: 1px solid var(--line);
}
.checkout-steps .step {
  flex: 1;
  padding: var(--s-4);
  text-align: center;
  border-bottom: 1px solid transparent;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: -1px;
  font-weight: 500;
}
.checkout-steps .step.active { color: var(--ink); border-bottom-color: var(--rose); font-weight: 600; }
.checkout-steps .step.done { color: var(--rose-deep); }

/* ============ UTILITIES ============ */
.text-center { text-align: center; }
.text-muted { color: var(--ink-muted); }
.text-faint { color: var(--ink-faint); }
.mb-1 { margin-bottom: var(--s-2); } .mb-2 { margin-bottom: var(--s-4); }
.mb-3 { margin-bottom: var(--s-5); } .mb-4 { margin-bottom: var(--s-6); }
.mt-1 { margin-top: var(--s-2); } .mt-2 { margin-top: var(--s-4); }
.mt-3 { margin-top: var(--s-5); } .mt-4 { margin-top: var(--s-6); }
.flex { display: flex; }
.flex-between { display: flex; justify-content: space-between; align-items: center; }
.gap-2 { gap: var(--s-4); }
.hidden { display: none !important; }

/* ============ STATUS BADGES ============ */
.badge { display: inline-block; padding: 4px 10px; font-size: 10px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; font-family: var(--font-sans); }
.badge-pending    { background: rgba(212, 165, 49, 0.12); color: #8B6914; }
.badge-paid       { background: rgba(26, 90, 143, 0.12); color: #1A5A8F; }
.badge-processing { background: rgba(106, 67, 158, 0.12); color: #4B2D85; }
.badge-shipped    { background: rgba(92, 143, 107, 0.15); color: var(--success); }
.badge-delivered  { background: rgba(92, 143, 107, 0.25); color: var(--success); }
.badge-cancelled  { background: rgba(180, 58, 58, 0.12); color: var(--danger); }
.badge-refunded   { background: rgba(0, 0, 0, 0.06); color: var(--ink-muted); }

/* ============ REVEAL ON SCROLL ============ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity var(--dur-slower) var(--ease-out), transform var(--dur-slower) var(--ease-out);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 100ms; }
.reveal-delay-2 { transition-delay: 200ms; }
.reveal-delay-3 { transition-delay: 300ms; }
.reveal-delay-4 { transition-delay: 400ms; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ====================================================
   MOBILE REFINEMENTS — primoroso até 375px
   ==================================================== */
@media (max-width: 768px) {
  /* Base */
  html { font-size: 15px; }
  .container, .container-narrow { padding: 0 var(--s-4); }

  /* Tipografia mobile mais respirável */
  h1 { font-size: clamp(36px, 9vw, 56px); letter-spacing: -0.02em; }
  h2 { font-size: clamp(28px, 7vw, 42px); }
  h3 { font-size: clamp(22px, 5.5vw, 28px); }

  /* Touch targets ≥ 44x44 */
  .header-actions a,
  .header-actions button { width: 44px; height: 44px; }
  .header-actions svg { width: 20px; height: 20px; }
  .btn { padding: 16px 28px; min-height: 48px; }
  .btn-sm { padding: 12px 20px; min-height: 40px; }
  .btn-lg { padding: 18px 32px; min-height: 52px; }
  .qty-input button { width: 44px; height: 44px; }
  .qty-input input { width: 52px; height: 44px; font-size: 16px; }
  input[type="text"],
  input[type="email"],
  input[type="number"],
  input[type="password"],
  textarea, select { font-size: 16px; } /* evita zoom no iOS */

  /* Spacing mais compacto */
  .section { padding: var(--s-8) 0; }
  .section-sm { padding: var(--s-7) 0; }
  .section-header { margin-bottom: var(--s-6); }
  .section-header-split { gap: var(--s-3); flex-direction: column; align-items: flex-start; }
  .section-header-split .btn-link { align-self: flex-start; }

  /* Announce bar mais limpo */
  .announce { padding: var(--s-2) 0; font-size: 9px; letter-spacing: 0.22em; }
  .announce-msg { gap: var(--s-2); }
  .announce-msg::before { width: 3px; height: 3px; }

  /* Header */
  .header-inner { padding: var(--s-4) 0; }
  .header.scrolled .header-inner { padding: var(--s-3) 0; }
  .header-logo img { height: 52px; }
  .header.scrolled .header-logo img { height: 44px; }
  .cart-badge { top: 8px; right: 8px; }

  /* Hero mobile */
  .hero { min-height: auto; padding: 0; }
  .hero::before, .hero::after { display: none; }
  .hero-meta { display: none; }
  .hero-inner {
    padding: var(--s-7) var(--s-4) var(--s-7);
    gap: var(--s-6);
  }
  .hero h1 {
    font-size: clamp(44px, 11vw, 64px);
    line-height: 1;
    margin-bottom: var(--s-4);
  }
  .hero h1 .script-accent { font-size: 1.1em; }
  .hero p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: var(--s-5);
  }
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
    gap: var(--s-3);
  }
  .hero-cta .btn { width: 100%; }
  .hero-visual {
    max-width: 380px;
    max-height: 460px;
    margin: 0 auto;
  }
  .hero-visual-stack .img-2 { border-width: 6px; }
  .hero-frame { border-width: 1px; }
  .hero-stats {
    gap: var(--s-3);
    padding: var(--s-4) 0;
    border-top: 1px solid var(--rose);
  }
  .hero-stat .num { font-size: 28px; }
  .hero-stat .label { font-size: 9px; letter-spacing: 0.2em; margin-top: 2px; }
  .scroll-cue { display: none; }

  /* Brand split */
  .brand-split { grid-template-columns: 1fr; min-height: auto; }
  .brand-card {
    padding: var(--s-7) var(--s-5);
    min-height: 480px;
  }
  .brand-card h2 { font-size: clamp(36px, 9vw, 48px); }
  .brand-card .tagline { font-size: 32px; margin-bottom: var(--s-4); }
  .brand-card .description { font-size: 15px; margin-bottom: var(--s-5); }

  /* Product grid */
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--s-5) var(--s-3);
  }
  .product-grid-lg {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--s-5) var(--s-3);
  }
  .product-card-img { margin-bottom: var(--s-3); }
  .product-card-brand { font-size: 9px; letter-spacing: 0.25em; }
  .product-card-title { font-size: 15px; margin-bottom: var(--s-2); }
  .product-card-price { font-size: 14px; }
  .product-card-price .compare { font-size: 12px; }
  .product-card-quick { display: none; }
  .tag { font-size: 9px; padding: 4px 8px; letter-spacing: 0.18em; }

  /* Editorial banner */
  .editorial-inner { min-height: auto; }
  .editorial-text { padding: var(--s-7) var(--s-5); }
  .editorial-text h2 { font-size: clamp(32px, 8vw, 44px); margin-bottom: var(--s-4); }
  .editorial-text p { font-size: 15px; margin-bottom: var(--s-5); }
  .editorial-img { min-height: 320px; }

  /* Marquee menor */
  .marquee { padding: var(--s-4) 0; }
  .marquee-item { font-size: 22px; gap: var(--s-6); }
  .marquee-track { gap: var(--s-6); }

  /* Features */
  .features { padding: var(--s-7) 0; }
  .features-grid { gap: var(--s-5); grid-template-columns: repeat(2, 1fr); }
  .feature { padding: 0; }
  .feature-icon { width: 44px; height: 44px; margin-bottom: var(--s-3); }
  .feature-icon svg { width: 18px; height: 18px; }
  .feature h4 { font-size: 10px; letter-spacing: 0.22em; margin-bottom: var(--s-1); }
  .feature p { font-size: 13px; line-height: 1.5; }

  /* Footer */
  .footer { padding: var(--s-8) 0 var(--s-5); }
  .footer-top { padding-bottom: var(--s-7); margin-bottom: var(--s-7); }
  .footer-top h3 { font-size: clamp(28px, 7vw, 36px); }
  .footer-top p { font-size: 14px; }
  .footer-newsletter {
    flex-direction: column;
    gap: var(--s-2);
    border-bottom: none;
  }
  .footer-newsletter input {
    border: 1px solid rgba(245, 237, 227, 0.2);
    padding: var(--s-3);
  }
  .footer-newsletter button {
    background: var(--cream);
    color: var(--ink);
    padding: var(--s-3);
    justify-content: center;
  }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--s-6); margin-bottom: var(--s-6); }
  .footer-brand { grid-column: 1 / -1; text-align: center; }
  .footer-brand img { margin: 0 auto var(--s-3); height: 72px; }
  .footer-brand p { margin: 0 auto var(--s-4); }
  .footer-social { justify-content: center; }
  .footer-col h4 { font-size: 9px; letter-spacing: 0.28em; margin-bottom: var(--s-3); }
  .footer-col a { font-size: 13px; }
  .footer-col li { margin-bottom: var(--s-2); }
  .footer-bottom {
    justify-content: center;
    text-align: center;
    flex-direction: column-reverse;
    gap: var(--s-4);
    padding-top: var(--s-4);
  }
  .footer-bottom .payments { flex-wrap: wrap; justify-content: center; gap: var(--s-2); }

  /* WhatsApp float */
  .wpp-float { bottom: var(--s-4); right: var(--s-4); }
  .wpp-float-btn { width: 52px; height: 52px; }
  .wpp-float-btn svg { width: 22px; height: 22px; }
  .wpp-float-menu {
    min-width: calc(100vw - var(--s-8));
    right: 0;
    bottom: 64px;
  }

  /* Shop & filters */
  .shop-layout { grid-template-columns: 1fr; gap: var(--s-5); }
  .filters {
    background: var(--cream-soft);
    padding: var(--s-5);
    border: 1px solid var(--line-faint);
  }
  .filters h4 { font-size: 11px; }
  .filters li a { padding: var(--s-1) 0; }
  .breadcrumb { font-size: 9px; letter-spacing: 0.18em; margin-bottom: var(--s-4); flex-wrap: wrap; }

  /* Product page */
  .product-detail { grid-template-columns: 1fr; gap: var(--s-6); }
  .product-info { position: static; }
  .product-info h1 { font-size: clamp(28px, 7vw, 36px); }
  .product-info .price { font-size: 32px; margin: var(--s-4) 0 var(--s-1); }
  .product-info .price .compare { font-size: 18px; }
  .add-to-cart-form { flex-direction: column; gap: var(--s-3); }
  .add-to-cart-form .qty-input { align-self: flex-start; }
  .add-to-cart-form .btn { width: 100%; }
  .product-thumbs { grid-template-columns: repeat(4, 1fr); gap: var(--s-2); }
  .product-meta { gap: var(--s-3); font-size: 9px; }

  /* Cart */
  .cart-layout { grid-template-columns: 1fr; gap: var(--s-5); }
  .cart-item {
    grid-template-columns: 90px 1fr;
    grid-template-rows: auto auto;
    gap: var(--s-3) var(--s-4);
    padding: var(--s-4) 0;
  }
  .cart-item img { width: 90px; height: 110px; }
  .cart-item-info { grid-column: 2; }
  .cart-item-info h4 { font-size: 15px; }
  .cart-item-actions { margin-top: var(--s-2); }
  .cart-item > div:last-child {
    grid-column: 1 / -1;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding-top: var(--s-3);
    border-top: 1px solid var(--line-faint);
  }
  .summary {
    position: static;
    padding: var(--s-5);
  }
  .coupon-applied { padding: var(--s-3); }
  .coupon-applied > div:first-child { min-width: 0; }
  .coupon-applied span[style*="JetBrains"] { font-size: 12px; }

  /* Checkout */
  .checkout-steps { overflow-x: auto; }
  .checkout-steps .step { font-size: 9px; padding: var(--s-3) var(--s-2); white-space: nowrap; }
  .form-row.cols-2,
  .form-row.cols-3 { grid-template-columns: 1fr; gap: var(--s-3); }

  /* Account / Auth pages */
  .empty-state { padding: var(--s-7) var(--s-4); }
  .empty-state svg { width: 44px; height: 44px; }

  /* Alerts mais compactos */
  .alert { padding: var(--s-3) var(--s-4); font-size: 13px; }
}

/* ============ EXTRA SMALL (≤ 420px) ============ */
@media (max-width: 420px) {
  .product-grid,
  .product-grid-lg { grid-template-columns: 1fr; gap: var(--s-5); }
  .product-card-img { aspect-ratio: 4/5; }
  .features-grid { grid-template-columns: 1fr; gap: var(--s-5); }
  .footer-grid { grid-template-columns: 1fr; gap: var(--s-5); text-align: center; }
  .footer-grid .footer-col { padding-top: var(--s-3); border-top: 1px solid rgba(245,237,227,.05); }
  .footer-grid .footer-col h4 { margin-bottom: var(--s-2); }
  .hero-stats { flex-direction: column; gap: var(--s-3); text-align: center; }
  .hero-stat { display: flex; justify-content: space-between; align-items: baseline; padding: var(--s-2) 0; border-bottom: 1px solid var(--line); }
  .hero-stat:last-child { border-bottom: none; }
  .hero-stat .num { font-size: 24px; }
  .brand-card .arrow { font-size: 10px; }
}
