/* ═══════════════════════════════════════════════════════════
   Bella Blessed Boutique — Global Styles (Editorial Light)
   Design system: cinza claro · off-black · dourado · serif editorial
   ═══════════════════════════════════════════════════════════ */

/* ── TOKENS ─────────────────────────────────────────────── */
:root {
  /* ────── PALETA OFICIAL (source of truth) ──────
     Aplicada na home; será replicada nas demais páginas. */
  --cor-fundo:      #FAFAF8;  /* off-white — fundo principal */
  --cor-fundo-2:    #E8E6E0;  /* cinza pérola — fundos secundários, hero, vidro */
  --cor-borda:      #C9C5BC;  /* taupe suave — bordas e divisórias */
  --cor-texto:      #1A1A1A;  /* preto carvão — textos principais e botões */
  --cor-texto-2:    #6B6862;  /* cinza fumê — textos secundários, labels */
  --cor-destaque:   #B89B5E;  /* dourado suave — detalhes pontuais APENAS */

  /* ────── Tons derivados (computados da paleta) ────── */
  --cor-fundo-3:    #F2F0EA;  /* off-white levemente acinzentado */
  --cor-texto-3:    #A09C94;  /* fumê mais claro — placeholders, hint */
  --cor-borda-soft: #DCD9D1;  /* divisória sutilíssima */
  --cor-destaque-d: #9B8048;  /* dourado profundo — hover/active */
  --cor-destaque-l: #D4B97D;  /* dourado claro — highlights */
  --cor-overlay:    rgba(26,26,26,0.55);  /* preto carvão translúcido */
  --cor-vidro:      rgba(250,250,248,0.55); /* off-white translúcido */
  --cor-vidro-2:    rgba(232,230,224,0.65); /* pérola translúcido */

  /* ────── Aliases semânticos (compat com nomes antigos) ────── */
  /* Fundo do site em cinza azulado escuro — mesma família fria do tom claro original,
     mas escurecido pra destacar as boxes/cards. */
  --bg:         #8E939A;              /* body / fundo principal — cool blue-gray escuro */
  --bg-soft:    #E8E6E0;              /* superfícies secundárias — pérola da paleta */
  --bg-dark:    var(--cor-texto);
  --surface:    #FFFFFF;
  --ink:        var(--cor-texto);
  --ink-soft:   #3A3835;
  --muted:      var(--cor-texto-2);
  --line:       var(--cor-borda);
  --line-soft:  var(--cor-borda-soft);
  --gold:       var(--cor-destaque);
  --gold-d:     var(--cor-destaque-d);
  --gold-l:     var(--cor-destaque-l);
  --success:    #2D8659;
  --danger:     #B23A3A;

  /* Aliases legacy (compat com style inline antigo) */
  --white:  var(--ink);
  --soft:   var(--muted);
  --card:   var(--surface);
  --border: var(--line);
  --bg2:    var(--bg-soft);
  --goldl:  var(--gold-l);

  /* Espaçamento & layout */
  --gutter:    clamp(20px, 5vw, 56px);
  --section-y: clamp(72px, 12vw, 128px);
  --section-gap-y:     32px;   /* gap vertical entre seções (home) */
  --section-gutter-x:  16px;   /* gutter horizontal das seções (home) */
  --radius-sm: 6px;
  --radius:    12px;
  --radius-lg: 20px;
  --radius-pill: 999px;
}

/* ── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--ink);
  overflow-x: hidden;
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: 'kern','liga','calt';
}
img { display: block; max-width: 100%; height: auto; }
button { font-family: inherit; }
a { color: inherit; }

/* ── GLASS CARDS (boxes editoriais opacos — não cobre .promo-banner-glass, que é vidro real) ── */
.glass-card {
  background: #D0D5DA;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 22px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.12);
  padding: 28px 32px 30px;
}
.glass-card--md {
  border-radius: 18px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.10);
  padding: 22px;
}
.glass-card--sm {
  border: none;
  border-radius: 18px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.10);
  padding: 0;
}
.glass-card--flex   { display: flex; flex-direction: column; }
.glass-card--center { justify-content: center; align-items: center; }
.glass-card--clip   { overflow: hidden; }

/* ── ANIMAÇÕES ──────────────────────────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes pulse-dot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.3); opacity: 0.7; }
}
@keyframes badge-pulse {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.4); }
  100% { transform: scale(1); }
}
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  15%  { transform: translateX(-8px); }
  30%  { transform: translateX(8px); }
  45%  { transform: translateX(-6px); }
  60%  { transform: translateX(6px); }
  75%  { transform: translateX(-4px); }
  90%  { transform: translateX(2px); }
}
@keyframes ripple-anim {
  0%   { width: 0; height: 0; opacity: 0.3; transform: translate(-50%, -50%) scale(0); }
  100% { width: 200px; height: 200px; opacity: 0; transform: translate(-50%, -50%) scale(1); }
}
@keyframes marqueeScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── TIPOGRAFIA UTILITÁRIA ──────────────────────────────── */
.display {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 0.96;
  color: var(--ink);
}
.eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── BARRA DE AVISO (REMOVIDA — mantida hidden p/ compat) ─ */
#announce-bar { display: none !important; }

/* ── HEADER PADRÃO (URBANIC pill style) ─────────────────── */
#site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(232, 230, 224, 0.72);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  padding: 16px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  transition: background 0.3s ease, border-color 0.3s ease;
}
#site-header.announce-hidden { top: 0; }
#site-header.hdr-scrolled {
  background: rgba(232, 230, 224, 0.92);
  border-bottom-color: var(--line);
}
#site-header.hdr-hidden {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

/* ── LOGO + NOTCH CENTRAL ───────────────────────────────── */
.logo-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  position: absolute;
  left: 50%;
  top: 4px;
  transform: translateX(-50%);
  z-index: 2;
}
.logo-img { display: none !important; }
#logo-fallback {
  display: flex !important;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  gap: 4px;
}
#logo-fallback .logo-bella {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--ink);
  text-transform: uppercase;
}
#logo-fallback .logo-sub {
  font-family: 'Inter', sans-serif;
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.32em;
  color: var(--ink-soft);
  text-transform: uppercase;
}

/* Notch decorativo atrás do logo central */
.hdr-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: clamp(220px, 20vw, 280px);
  height: 56%;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-top: none;
  border-radius: 0 0 22px 22px;
  pointer-events: none;
  z-index: 0;
}

/* Reorganiza: nav esquerda · logo centro · ícones direita */
#site-header > nav { order: 1; margin-right: auto; position: relative; z-index: 1; }
#site-header > .header-icons { order: 2; position: relative; z-index: 1; }

/* ── NAV PILLS ──────────────────────────────────────────── */
.site-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  list-style: none;
}
.site-nav > li {
  background: rgba(255, 255, 255, 0.32);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  transition: background 0.18s, border-color 0.18s;
}
.site-nav > li:hover { background: rgba(255, 255, 255, 0.55); }
.site-nav > li.active {
  background: rgba(255, 255, 255, 0.65);
  border-color: rgba(255, 255, 255, 0.75);
}
.site-nav > li > a {
  display: block;
  padding: 8px 18px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  font-weight: 600;
  font-style: italic;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: color 0.2s;
}
.site-nav > li.active > a { color: var(--gold-d); }
.site-nav > li > a:hover { color: var(--gold-d); }
/* Remove sublinhado decorativo legado */
.site-nav > li > a::after,
.site-nav > li > a:hover::after,
.site-nav > li.active > a::after { display: none !important; content: none !important; }

/* Mobile: notch some, logo volta pro fluxo */
@media (max-width: 900px) {
  .hdr-notch { display: none; }
  .logo-wrap { position: relative; left: auto; top: auto; transform: none; align-items: flex-start; }
  #logo-fallback { align-items: flex-start; }
  #site-header > nav { margin-right: 0; }
}

/* Dropdown de categorias */
.nav-dropdown { position: relative; }
.dropdown-menu {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  min-width: 220px;
  padding: 10px 0;
  z-index: 200;
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
}
.nav-dropdown:hover .dropdown-menu {
  visibility: visible;
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.dropdown-label {
  padding: 6px 20px 10px;
  font-size: 10px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 500;
}
.dropdown-menu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  font-size: 13px;
  color: var(--ink);
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}
.dropdown-menu a:hover { background: var(--bg-soft); color: var(--gold-d); }
.cat-count { font-size: 11px; color: var(--muted); font-variant-numeric: tabular-nums; }

/* ── ÍCONES DO HEADER (glassmorphism URBANIC) ──────────── */
.header-icons {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
#site-header .header-icons > .icon-btn,
#site-header .header-icons > #user-wrap {
  background: rgba(255, 255, 255, 0.32);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.18s, border-color 0.18s, color 0.18s;
}
#site-header .header-icons > #user-wrap > .icon-btn {
  background: transparent;
  border: none;
  width: 100%;
  height: 100%;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
#site-header .header-icons > .icon-btn:hover,
#site-header .header-icons > #user-wrap:hover {
  background: rgba(255, 255, 255, 0.55);
}
.icon-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--ink);
  width: 38px; height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: color 0.18s;
  text-decoration: none;
  position: relative;
}
.icon-btn:hover { color: var(--gold-d); }
.icon-btn svg { width: 19px; height: 19px; }
.cart-badge {
  position: absolute;
  top: 2px; right: 2px;
  background: var(--ink);
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  width: 18px; height: 18px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  display: none;
  font-variant-numeric: tabular-nums;
}
.cart-badge.pulse { animation: badge-pulse 0.3s ease; }
.hamburger { display: none; }

#user-wrap { position: relative; }
#user-dropdown {
  position: absolute;
  top: calc(100% + 10px); right: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 6px 0;
  min-width: 170px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.10);
  z-index: 2000;
  display: none;
}
.udrop-link {
  display: block;
  padding: 11px 18px;
  font-size: 13px;
  color: var(--ink);
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}
.udrop-link:hover { background: var(--bg-soft); color: var(--gold-d); }
.udrop-sep { height: 1px; background: var(--line); margin: 4px 0; }
.udrop-btn {
  width: 100%; text-align: left;
  padding: 11px 18px;
  font-size: 13px;
  color: var(--muted);
  background: none; border: none; cursor: pointer;
  transition: color 0.15s;
  font-family: inherit;
}
.udrop-btn:hover { color: var(--danger); }
#user-dot {
  display: none;
  position: absolute;
  bottom: 2px; right: 2px;
  width: 9px; height: 9px;
  background: var(--success);
  border-radius: 50%;
  border: 2px solid var(--bg);
  animation: pulse-dot 2s infinite;
  pointer-events: none;
}

/* ── BARRA DE BUSCA ─────────────────────────────────────── */
#search-bar {
  display: none;
  position: absolute;
  top: 100%; left: 0; right: 0;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  padding: 16px var(--gutter);
  z-index: 999;
}
#search-bar.open { display: block; animation: fadeIn 0.2s ease; }
#search-input {
  width: 100%;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  padding: 13px 22px;
  color: var(--ink);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}
#search-input::placeholder { color: var(--muted); }
#search-input:focus { border-color: var(--ink); background: #fff; }

/* ── DRAWER MOBILE ──────────────────────────────────────── */
#mobile-drawer {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
}
#mobile-drawer.open { display: block; }
.drawer-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,26,26,0.50);
  backdrop-filter: blur(2px);
}
.drawer-panel {
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 300px;
  background: var(--bg);
  border-right: 1px solid var(--line);
  padding: 28px;
  overflow-y: auto;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}
#mobile-drawer.open .drawer-panel { transform: translateX(0); }
.drawer-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 36px;
}
.drawer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.drawer-logo span { color: var(--gold-d); font-size: 18px; }
.drawer-close {
  background: none; border: none; cursor: pointer;
  color: var(--muted); font-size: 22px; padding: 4px;
  line-height: 1;
}
.drawer-nav { list-style: none; }
.drawer-nav a {
  display: block;
  padding: 16px 4px;
  color: var(--ink);
  text-decoration: none;
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 500;
  border-bottom: 1px solid var(--line-soft);
  transition: color 0.2s, padding-left 0.2s;
}
.drawer-nav a:hover { color: var(--gold-d); padding-left: 8px; }

/* ── BOTÕES GLOBAIS ─────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--ink);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 16px 32px;
  border: 1px solid var(--ink);
  border-radius: var(--radius-pill);
  cursor: pointer;
  text-decoration: none;
  transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
  min-height: 50px;
  white-space: nowrap;
}
.btn-primary:hover {
  background: #000;
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(26,26,26,0.18);
}
.btn-primary:active { transform: translateY(0); }
.btn-arrow {
  display: inline-block;
  transition: transform 0.2s ease;
}
.btn-primary:hover .btn-arrow,
.btn-outline:hover .btn-arrow { transform: translateX(4px); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: transparent;
  color: var(--ink);
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 15px 30px;
  border: 1.5px solid var(--ink);
  border-radius: var(--radius-pill);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s ease;
  min-height: 50px;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.btn-outline:hover {
  background: var(--ink);
  color: #fff;
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--gold);
  color: var(--ink);
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 15px 30px;
  border: none;
  border-radius: var(--radius-pill);
  cursor: pointer;
  text-decoration: none;
  transition: background 0.25s ease, transform 0.2s ease;
  min-height: 48px;
  white-space: nowrap;
}
.btn-gold:hover { background: var(--gold-d); color: #fff; transform: translateY(-1px); }

.ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  pointer-events: none;
  animation: ripple-anim 0.5s ease forwards;
}

/* ── MODAL DE LOGIN ─────────────────────────────────────── */
#login-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99999;
  align-items: center;
  justify-content: center;
}
#login-modal.open { display: flex; animation: fadeIn 0.2s ease; }
.modal-overlay {
  position: absolute;
  inset: 0;
  background: var(--cor-overlay);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.modal-card {
  position: relative;
  z-index: 100000;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 44px 40px 36px;
  width: 400px;
  max-width: calc(100vw - 32px);
  box-shadow: 0 30px 80px rgba(0,0,0,0.20);
}
.modal-card.shaking { animation: shake 0.4s ease; }
.modal-close {
  position: absolute;
  top: 14px; right: 14px;
  background: none; border: none; cursor: pointer;
  color: var(--muted); font-size: 18px;
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  transition: color 0.2s, background 0.2s;
  line-height: 1;
}
.modal-close:hover { color: var(--ink); background: var(--bg-soft); }
.modal-logo { display: flex; justify-content: center; margin-bottom: 18px; }
.modal-logo img { height: 50px; width: auto; object-fit: contain; }
.modal-logo-fb {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--ink);
  display: none;
  letter-spacing: -0.01em;
}
.modal-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 500;
  color: var(--ink);
  text-align: center;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.modal-sub {
  font-size: 13px;
  color: var(--muted);
  text-align: center;
  margin-bottom: 24px;
}
.modal-divider { display: none; }
.modal-field { position: relative; margin-bottom: 12px; }
.modal-field > svg {
  position: absolute;
  left: 16px; top: 50%;
  transform: translateY(-50%);
  width: 16px; height: 16px;
  color: var(--muted);
  pointer-events: none;
}
.modal-input {
  width: 100%;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px 44px 14px 44px;
  color: var(--ink);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  min-height: 48px;
}
.modal-input::placeholder { color: var(--muted); }
.modal-input:focus { border-color: var(--ink); background: #fff; }
.modal-eye {
  position: absolute;
  right: 12px; top: 50%;
  transform: translateY(-50%);
  background: none; border: none; cursor: pointer;
  color: var(--muted); padding: 6px;
  display: flex; align-items: center;
  transition: color 0.2s;
}
.modal-eye:hover { color: var(--ink); }
.modal-eye svg { width: 16px; height: 16px; }
.modal-submit {
  width: 100%;
  background: var(--ink);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 16px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  margin-top: 10px;
  min-height: 50px;
}
.modal-submit:hover:not(:disabled) { background: #000; transform: translateY(-1px); }
.modal-submit:disabled { opacity: 0.5; cursor: not-allowed; }
.modal-err {
  display: none;
  font-size: 12px;
  color: var(--danger);
  text-align: center;
  margin-top: 12px;
}
.modal-err.show { display: block; }
.modal-lock {
  display: none;
  font-size: 12px;
  color: var(--gold-d);
  text-align: center;
  margin-top: 10px;
}
.modal-lock.show { display: block; }

/* ── LOGIN MODAL — DARK GLASSMORPHISM ─────────────────── */
.ml-card {
  position: relative;
  z-index: 100000;
  background: rgba(26, 26, 26, 0.62);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 18px;
  padding: 38px 36px 28px;
  width: 440px;
  max-width: calc(100vw - 32px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
  color: var(--cor-fundo);
}
.ml-close {
  position: absolute;
  top: 16px; right: 16px;
  background: rgba(255,255,255,0.10);
  border: none; cursor: pointer;
  color: rgba(255,255,255,0.70);
  font-size: 14px;
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  transition: background 0.2s, color 0.2s;
  line-height: 1;
}
.ml-close:hover { background: rgba(255,255,255,0.20); color: #fff; }
.ml-brand {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 30px;
  font-weight: 500;
  color: #fff;
  text-align: center;
  letter-spacing: -0.01em;
  margin: 4px 0 18px;
  line-height: 1.1;
}
.ml-eyebrow {
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.32em;
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.ml-title {
  font-family: 'Inter', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin: 0 0 6px;
  letter-spacing: -0.01em;
}
.ml-sub {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  text-align: center;
  margin: 0 0 26px;
}
.ml-field { margin-bottom: 16px; }
.ml-label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.20em;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  margin: 0 0 8px;
}
.ml-input {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 14px 16px;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}
.ml-input::placeholder { color: rgba(255,255,255,0.28); }
.ml-input:focus { border-color: rgba(255,255,255,0.30); background: rgba(255,255,255,0.06); }
.ml-pass-wrap { position: relative; }
.ml-pass-wrap .ml-input { padding-right: 64px; }
.ml-ver {
  position: absolute;
  right: 8px; top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.08);
  border: none;
  border-radius: 999px;
  color: rgba(255,255,255,0.72);
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  padding: 7px 14px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.ml-ver:hover { background: rgba(255,255,255,0.18); color: #fff; }
.ml-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 6px 0 22px;
}
.ml-check {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  user-select: none;
}
.ml-check input { position: absolute; opacity: 0; pointer-events: none; }
.ml-check-box {
  width: 18px; height: 18px;
  border-radius: 4px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
  flex-shrink: 0;
}
.ml-check input:checked + .ml-check-box {
  background: rgba(255, 255, 255, 0.85);
  border-color: rgba(255, 255, 255, 0.85);
}
.ml-check input:checked + .ml-check-box::after {
  content: '✓';
  color: var(--cor-texto);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
}
.ml-check-txt {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
}
.ml-forgot {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
  padding-bottom: 1px;
}
.ml-forgot:hover { opacity: 0.85; }
.ml-submit {
  width: 100%;
  background: rgba(255,255,255,0.06);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 16px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.10);
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, border-color 0.2s;
}
.ml-submit:hover:not(:disabled) {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.18);
  transform: translateY(-1px);
}
.ml-submit:disabled { opacity: 0.5; cursor: not-allowed; }
.ml-err {
  display: none;
  font-size: 12px;
  color: #FF8C8C;
  text-align: center;
  margin-top: 12px;
}
.ml-err.show { display: block; }
.ml-foot {
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 12.5px;
  color: rgba(255,255,255,0.55);
  margin: 22px 0 0;
  line-height: 1.55;
}
.ml-wa {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
}
.ml-wa:hover { opacity: 0.85; }

/* ── RODAPÉ ─────────────────────────────────────────────── */
#footer {
  background: var(--ink);
  color: var(--bg);
  padding: 88px var(--gutter) 32px;
  margin-top: var(--section-y);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 56px;
  max-width: 1440px;
  margin: 0 auto;
}
.ft-logo-row { display: flex; align-items: baseline; gap: 6px; }
.ft-logo-bella {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  font-weight: 500;
  color: #fff;
  letter-spacing: -0.01em;
}
.ft-logo-sep { color: var(--gold-l); font-size: 16px; }
.ft-logo-sub {
  font-family: 'Inter', sans-serif;
  font-size: 9px;
  letter-spacing: 0.34em;
  color: var(--gold-l);
  font-weight: 500;
  margin-top: 4px;
  text-transform: uppercase;
}
.ft-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-style: italic;
  color: rgba(255,255,255,0.65);
  margin-top: 18px;
  line-height: 1.45;
  max-width: 280px;
}
.ft-socials { display: flex; gap: 8px; margin-top: 24px; }
.ft-soc-btn {
  color: rgba(255,255,255,0.65);
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  background: none; cursor: pointer; text-decoration: none;
  transition: all 0.2s;
}
.ft-soc-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}
.ft-soc-btn svg { width: 15px; height: 15px; }
.ft-col-title {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  color: var(--gold-l);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 22px;
}
.ft-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.ft-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.2s;
}
.ft-links a:hover { color: var(--gold-l); }
.ft-contact-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.ft-contact-row svg { width: 15px; height: 15px; color: var(--gold-l); flex-shrink: 0; }
.ft-contact-row .ft-val { font-size: 13px; color: rgba(255,255,255,0.85); }
.ft-contact-row .ft-val.muted { color: rgba(255,255,255,0.55); }
.ft-siga {
  font-size: 10px;
  color: rgba(255,255,255,0.5);
  margin-top: 22px;
  margin-bottom: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.10);
  margin-top: 56px;
  padding-top: 24px;
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.04em;
}

/* ── PAGINAÇÃO COMPARTILHADA ─────────────────────────────── */
.bbb-pagination {
  display: flex; align-items: center; justify-content: center;
  gap: 12px; margin: 48px 0 8px;
  font-family: 'Inter', sans-serif;
}
.bbb-pag-btn {
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--ink);
  padding: 9px 18px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.18s;
}
.bbb-pag-btn:disabled { opacity: 0.35; cursor: not-allowed; }
.bbb-pag-btn:not(:disabled):hover {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.bbb-pag-info {
  font-size: 13px;
  color: var(--muted);
  padding: 0 6px;
  font-variant-numeric: tabular-nums;
}

/* ── COMPONENTES COMPARTILHADOS: SEÇÕES E CARDS ─────────── */
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1;
}
.section-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-d);
  margin-bottom: 12px;
  font-weight: 500;
}
.section-link {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  padding: 8px 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  border-bottom: 1px solid var(--ink);
  transition: color 0.2s, border-color 0.2s, gap 0.2s;
}
.section-link:hover { color: var(--gold-d); border-color: var(--gold-d); gap: 12px; }
.section-link .sl-arrow {
  display: inline-block;
  transition: transform 0.2s ease;
}
.section-link:hover .sl-arrow { transform: translateX(3px); }

/* Card de produto (compartilhado) */
.prod-card {
  background: transparent;
  border: none;
  overflow: visible;
  position: relative;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.prod-card:hover { transform: translateY(-4px); }
.prod-thumb {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--bg-soft);
  border-radius: var(--radius);
  margin-bottom: 14px;
}
.prod-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.2,0.8,0.2,1);
}
.prod-card:hover .prod-thumb img { transform: scale(1.05); }
.prod-thumb-ph {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-soft);
}
.prod-thumb-ph svg { width: 40px; height: 40px; color: var(--line); }
.prod-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--surface);
  color: var(--ink);
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.prod-indisp-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--ink); color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 10px; font-weight: 500;
  padding: 5px 12px; border-radius: var(--radius-pill);
  letter-spacing: 0.08em; text-transform: uppercase;
  z-index: 2;
}
.prod-reserv-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--gold); color: var(--ink);
  font-family: 'Inter', sans-serif;
  font-size: 10px; font-weight: 600;
  padding: 5px 12px; border-radius: var(--radius-pill);
  letter-spacing: 0.08em; text-transform: uppercase;
  z-index: 2; pointer-events: none;
}
.prod-fav {
  position: absolute; top: 12px; right: 12px;
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.92);
  border: none; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; z-index: 3;
  transition: background 0.2s, transform 0.2s;
  backdrop-filter: blur(4px);
}
.prod-fav:hover { background: #fff; transform: scale(1.08); }
.prod-fav svg {
  width: 16px; height: 16px;
  color: var(--ink);
  fill: none;
  transition: color 0.2s, fill 0.2s;
  stroke: currentColor;
  stroke-width: 1.8;
}
.prod-fav.active svg { color: var(--gold-d); fill: var(--gold-d); }
.prod-hover-ov {
  position: absolute;
  inset: 0;
  background: rgba(26,26,26,0.32);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 22px;
  opacity: 0;
  transition: opacity 0.25s;
  border-radius: var(--radius);
}
.prod-card:hover .prod-hover-ov { opacity: 1; }
.prod-hover-btn {
  background: var(--surface);
  color: var(--ink);
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 11px 22px;
  border-radius: var(--radius-pill);
}
.prod-info { padding: 0 2px; }
.prod-name {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  letter-spacing: 0.01em;
}
.prod-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 4px;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.01em;
}
.prod-parcel {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.02em;
}

/* ── RESPONSIVO COMPARTILHADO ───────────────────────────── */
@media (max-width: 1100px) {
  #site-header { padding: 14px 28px; }
  .site-nav { gap: 18px; }
  .site-nav > li > a { font-size: 12px; }
}
@media (max-width: 1024px) {
  .logo-img { height: 50px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  #footer { padding: 64px 28px 28px; }
}
@media (max-width: 900px) {
  .site-nav  { display: none; }
  .hamburger { display: flex; }
  .section-header { flex-direction: column; align-items: flex-start; gap: 16px; }
}
@media (max-width: 768px) {
  .logo-img { height: 42px; }
  #site-header { top: 38px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  #footer { padding: 56px 20px 24px; }
  .section-title { font-size: clamp(28px, 8vw, 40px); }
}
@media (max-width: 600px) {
  #announce-bar { font-size: 12px; padding: 9px 44px 9px 14px; }
  #site-header { padding: 12px 18px; top: 34px; }
  #site-header.announce-hidden { top: 0; }
  .logo-img { height: 38px; }
}
