/* ============================================================
   STILETTO BEDE — CSS Sistema byNV Blueprint Exact
   Fonte: Montserrat 300/400/500/600 | Cor: #000404
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');

/* ── RESET & BASE ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  height: 100%;
  overscroll-behavior: none;
  -ms-scroll-chaining: none;
}

html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 400;
  font-size: 1rem;
  color: #000404;
  background: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow: hidden;                /* Tela cheia — sem scroll normal */
  overflow-x: hidden;
  -ms-overflow-style: none;
}

/* Scrollbar invisível (byNV style) */
body::-webkit-scrollbar,
body::-webkit-scrollbar-button { display: none; }

img { border-style: none; max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── VARIÁVEL --vh (iOS Safari fix) ────────────────────────── */
:root {
  --vh: 100vh;
  --header-h: 80px;
  --pad-x: 56px;
  --color-text: #000404;
  --color-muted: #737378;
  --color-border: #e9e9e9;
  --color-border-mid: #bdbdbd;
  --transition: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── HEADER — REGRA DE 2 MODOS (GHOST NO HERO / SOLID NOS DEMAIS) ─── */
.site-header {
  position: fixed;
  top: 0;
  left: 0; right: 0;
  width: 100%;
  height: var(--header-h);
  z-index: 1005;
  transition: background 0.3s ease, border-color 0.3s ease;
}

/* Modo 1: GHOST (Slide 0 / Hero escuro) */
.site-header.ghost {
  background: transparent;
  border-bottom: 1px solid transparent;
}
.site-header.ghost .nav-item {
  color: #fff;
  text-shadow: 0 1px 4px rgba(0,0,0,0.65);
}
.site-header.ghost .nav-item::after { background: #fff; }
.site-header.ghost .icon-btn {
  color: #fff;
  filter: drop-shadow(0 1px 3px rgba(0,0,0,0.5));
}
.site-header.ghost .btn-menu-mobile {
  color: #fff;
  filter: drop-shadow(0 1px 3px rgba(0,0,0,0.5));
}

.btn-menu-mobile {
  display: none;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  padding: 8px 4px;
  cursor: pointer;
  z-index: 1008;
}
.btn-menu-mobile svg {
  display: block;
}

/* Modo 2: SOLID-LIGHT (Slides 1, 2, 3) */
.site-header.solid-light {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.site-header.solid-light .nav-item {
  color: #000404;
  text-shadow: none;
}
.site-header.solid-light .nav-item::after { background: #000404; }
.site-header.solid-light .icon-btn {
  color: #000404;
  filter: none;
}
.site-header.solid-light .btn-menu-mobile {
  color: #000404;
  filter: none;
}

/* Container interno do header */
.header-inner {
  position: relative;
  width: 100%;
  height: var(--header-h);
  padding: 0 var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
}

/* Grupo esquerdo: nav menu alinhado à esquerda */
.header-left {
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: flex-start;
  height: 100%;
}

/* Grupo central: LOGO BEDÊ CENTRALIZADO */
.header-center {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1007;
  pointer-events: auto;
}

.logo-link {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
}
.logo-link img, .logo-link svg {
  height: 64px;
  width: auto;
  display: block;
}
/* Fallback textual */
.logo-text-fallback {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.logo-sub-fallback {
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.18em;
  display: block;
  margin-top: 2px;
  text-transform: uppercase;
}

/* MENU NAV */
.main-nav {
  display: flex;
  align-items: center;
  height: var(--header-h);
  gap: 0;
}
.nav-item {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 22px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  height: var(--header-h);
  display: flex;
  align-items: center;
  padding: 0;
  margin-right: 24px;
  border: none;
  background: none;
  cursor: pointer;
  position: relative;
  white-space: nowrap;
  transition: opacity 0.2s;
}
.nav-item:last-child { margin-right: 0; }
.nav-item::after {
  content: '';
  position: absolute;
  bottom: 22px; left: 0; right: 0;
  height: 1px;
  transform: scaleX(0);
  transition: transform 0.25s ease;
}
.nav-item:hover::after { transform: scaleX(1); }

/* Destaques Comerciais Sutis */
.nav-priority {
  font-weight: 600;
}
.nav-priority.sale-tag {
  color: #c62828 !important;
}
.site-header.ghost .nav-priority.sale-tag {
  color: #ff8a80 !important;
}

/* ── DROPDOWN CALÇADOS (MEGA MENU) ────────────────────────── */
.nav-dropdown-wrap {
  position: relative;
  height: var(--header-h);
  display: flex;
  align-items: center;
}
.nav-item.has-dropdown {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-right: 24px;
}
.dropdown-chevron {
  transition: transform 0.25s ease;
}
.nav-dropdown-wrap:hover .dropdown-chevron {
  transform: rotate(180deg);
}
.nav-submenu {
  position: absolute;
  top: calc(100% - 6px);
  left: -20px;
  width: 580px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.14);
  padding: 24px 28px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.25s cubic-bezier(0.25, 1, 0.5, 1);
  z-index: 1020;
  pointer-events: none;
}
.nav-dropdown-wrap:hover .nav-submenu,
.nav-dropdown-wrap:focus-within .nav-submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.submenu-grid {
  display: grid;
  grid-template-columns: 1.1fr 1.1fr 1fr;
  gap: 20px;
}
.sub-col-title {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #000404;
  padding-bottom: 8px;
  margin-bottom: 8px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.sub-link {
  display: block;
  font-size: 12.5px;
  font-weight: 400;
  color: #555555;
  padding: 5px 0;
  transition: color 0.2s, transform 0.2s;
  text-decoration: none;
  white-space: nowrap;
}
.sub-link:hover {
  color: #000404;
  transform: translateX(3px);
  font-weight: 500;
}
.submenu-highlight {
  background: #faf8f5;
  padding: 14px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.view-all-link {
  font-weight: 600 !important;
  color: #000404 !important;
  margin-bottom: 8px;
}
.sub-callout {
  font-size: 11px;
  line-height: 16px;
  color: #777777;
  font-weight: 300;
}

/* ÍCONES DIREITA */
.header-right {
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: flex-end;
  gap: 6px;
  margin-right: -10px;
}

/* BUSCA PROEMINENTE & EXPANSÍVEL NO HEADER */
.header-search-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.search-trigger-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(4px);
  cursor: pointer;
  transition: all 0.25s ease;
}
.site-header.ghost .search-trigger-btn {
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(0, 0, 0, 0.15);
  color: #ffffff;
}
.search-trigger-btn:hover {
  background: #ffffff;
  border-color: #000404;
  color: #000404;
}
.search-btn-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.header-search-expand {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) scaleX(0.85);
  transform-origin: right center;
  width: 320px;
  max-width: 80vw;
  height: 38px;
  background: #ffffff;
  border: 1px solid #000404;
  border-radius: 20px;
  display: flex;
  align-items: center;
  padding: 0 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  opacity: 0;
  pointer-events: none;
  transition: all 0.25s cubic-bezier(0.25, 1, 0.5, 1);
  z-index: 20;
}
.header-search-expand.open {
  opacity: 1;
  pointer-events: all;
  transform: translateY(-50%) scaleX(1);
}
.search-expand-icon {
  color: #737378;
  margin-right: 8px;
  flex-shrink: 0;
}
.header-search-expand input {
  flex: 1;
  border: none;
  outline: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: #000404;
  background: transparent;
}
.search-clear-btn {
  font-size: 16px;
  color: #737378;
  padding: 0 4px;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
}
.search-clear-btn:hover { color: #000404; }

.icon-btn {
  padding: 0 8px;
  display: flex;
  align-items: center;
  position: relative;
  transition: opacity 0.2s, transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.icon-btn:hover { opacity: 0.7; }
.icon-btn.cart-bump {
  transform: scale(1.3);
  opacity: 1 !important;
}

/* Pills no Header */
.cart-pill, .wishlist-pill {
  position: absolute;
  top: -4px; right: 0px;
  min-width: 17px; height: 17px;
  background: #000404;
  color: #fff;
  font-size: 9.5px;
  font-weight: 700;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), background 0.3s ease;
}
.site-header.ghost .cart-pill, .site-header.ghost .wishlist-pill {
  background: #ffffff;
  color: #000404;
}
.cart-pill { display: none; }
.cart-pill.visible { display: flex; }
.cart-pill.bump {
  transform: scale(1.45);
  background: #000404 !important;
  color: #ffffff !important;
}

/* ── MOBILE MENU DRAWER ─────────────────────────────────── */
.mobile-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(4px);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.mobile-drawer-overlay.open {
  opacity: 1;
  visibility: visible;
}
.mobile-drawer {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 82%;
  max-width: 320px;
  background: #ffffff;
  z-index: 999;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1);
  display: flex;
  flex-direction: column;
  box-shadow: 10px 0 30px rgba(0, 0, 0, 0.15);
}
.mobile-drawer.open {
  transform: translateX(0);
}
.mob-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 20px 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.mob-drawer-logo img {
  height: 26px;
  display: block;
}
.mob-drawer-close {
  background: transparent;
  border: none;
  font-size: 26px;
  line-height: 1;
  color: #000404;
  cursor: pointer;
  padding: 4px;
}
.mob-drawer-nav {
  padding: 16px 0;
  flex: 1;
  overflow-y: auto;
}
.mob-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  color: #000404;
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  cursor: pointer;
}
.mob-nav-link.highlight {
  color: #c99354;
  font-weight: 500;
}

/* Accordion de Calçados no Mobile */
.mob-accordion {
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}
.mob-acc-icon {
  transition: transform 0.25s ease;
}
.mob-accordion.open .mob-acc-icon {
  transform: rotate(180deg);
}
.mob-sub-menu {
  display: none;
  background: #fbf9f6;
  padding: 6px 0 10px;
}
.mob-accordion.open .mob-sub-menu {
  display: block;
}
.mob-sub-link {
  display: block;
  padding: 10px 20px 10px 32px;
  font-size: 12.5px;
  color: #555555;
  text-decoration: none;
  border-bottom: 1px solid rgba(0,0,0,0.02);
}
.mob-sub-link.highlight {
  font-weight: 600;
  color: #000404;
}

.mob-drawer-footer {
  padding: 18px 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  background: #fafafa;
}
.mob-drawer-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px;
  background: #000404;
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 10px;
  transition: background 0.2s ease;
}
.mob-drawer-wa:hover {
  background: #222222;
}
.mob-drawer-info {
  font-size: 10px;
  color: #888888;
  text-align: center;
  margin: 0;
}

/* ── POPOVER DE CONTA / CADASTRO (byNV Style) ───────────────── */
.account-menu-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}
.account-popover {
  position: absolute;
  top: calc(100% + 14px);
  right: -10px;
  width: 230px;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.16), 0 2px 8px rgba(0,0,0,0.06);
  border: 1px solid rgba(0, 0, 0, 0.06);
  padding: 18px 20px;
  z-index: 1020;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.account-popover.open {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.acc-head {
  padding-bottom: 14px;
  border-bottom: 1px solid #f0f0f0;
  margin-bottom: 12px;
}
.acc-head h4 {
  font-size: 15px;
  font-weight: 500;
  color: #000404;
  margin: 0 0 2px 0;
}
.acc-head p {
  font-size: 12px;
  font-weight: 300;
  color: #777;
  margin: 0 0 12px 0;
}
.acc-btn-login {
  width: 100%;
  padding: 10px 16px;
  background: #333333;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
}
.acc-btn-login:hover {
  background: #000404;
}
.acc-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.acc-link-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #333338;
  text-decoration: none;
  font-size: 13px;
  font-weight: 400;
  padding: 6px 4px;
  border-radius: 6px;
  transition: all 0.2s;
}
.acc-link-item svg {
  stroke: #666;
  flex-shrink: 0;
}
.acc-link-item:hover {
  color: #000404;
  background: #f7f7f7;
}
.acc-link-item:hover svg {
  stroke: #000404;
}

/* ── MOTOR DE TELAS CHEIAS 100VH — TRILHO VERTICAL (PADRÃO byNV) ── */
.viewport-stage {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--vh, 100vh);
  overflow: hidden;
}

.slides-track {
  width: 100%;
  height: 100%;
  transform: translateY(0);
  transition: transform 600ms cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

.v-slide {
  width: 100%;
  height: var(--vh, 100vh);
  min-height: var(--vh, 100vh);
  position: relative;
  overflow: hidden;
}

/* ── SLIDE 0 — HERO EDITORIAL ─────────────────────────────── */
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;                        /* Ocupa 100% da tela sem cortes */
  background-image: url('assets/hero_bede.jpg?v=2026_hero_v3'), url('assets/hero_bede.png');
  background-size: cover;
  background-position: 84% center;   /* Desliza suavemente a foto para afastar o lustre do logo central */
  background-repeat: no-repeat;
}
.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.68) 0%, rgba(0,0,0,0.18) 28%, rgba(0,0,0,0.06) 45%, rgba(0,0,0,0.18) 65%, rgba(0,0,0,0.72) 100%);
}
.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 0 var(--pad-x) 84px;     /* Espaço elegante acima da linha de benefícios */
  color: #fff;
}
.hero-eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin: 0 0 12px 0;
  padding: 0;
  opacity: 0.95;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}
.hero-headline {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300;
  line-height: 1.18;
  letter-spacing: -0.01em;
  margin: 0 0 24px 0;
  padding: 0;
  max-width: 540px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

/* Informações de benefícios da Home — Letra Branca, Linha Suave e Centralizado */
.home-bottom-bar {
  position: absolute;
  bottom: 24px;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  padding: 0 var(--pad-x);
  box-sizing: border-box;
}
.home-bar-inner {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.22); /* Linha suave que não fecha caixa */
  padding-top: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.home-bar-inner span {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.88);
  text-transform: uppercase;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
  text-align: center;
}

/* Botão byNV exato */
.btn-nv {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border: 1px solid rgba(255,255,255,0.7);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: transparent;
  cursor: pointer;
  transition: background 0.25s, border-color 0.25s;
}
.btn-nv:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
}
/* Variante escura (slides claros) */
.btn-nv.dark {
  border: 1px solid #000404;
  color: var(--color-text);
  font-weight: 400;
}
.btn-nv.dark:hover {
  background: #000404;
  color: #fff;
}

/* ── SLIDE 1 — SPLIT 64/31 byNV (SPECIAL SALE) ───────────── */
.split-text-slide {
  display: flex;
  align-items: center;
  gap: 2.638vw;
  width: 100%;
  height: 100%;
  padding-top: var(--header-h);     /* Desce exatamente a altura do header */
  box-sizing: border-box;
}
.split-photo {
  width: 64.375vw;
  height: 100%;
  flex-shrink: 0;
  overflow: hidden;
  padding: 20px 0 20px 20px;       /* 20px perfeitamente equilibrados em cima, embaixo e esquerda */
  box-sizing: border-box;
}
.split-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.split-text-content {
  min-width: 31.4583vw;
  flex: 1;
  padding-right: var(--pad-x);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.split-headline.single-line {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(32px, 3.8vw, 54px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--color-text);
  margin: 0 0 28px 0;
  white-space: nowrap;
  letter-spacing: -0.01em;
}

/* ── SLIDE 2 — DUPLO 50/50 byNV (FUNDO LIMPO E CLARO COMO A SEÇÃO 2) ── */
.split-dual-slide {
  display: flex;
  width: 100%;
  height: 100%;
  padding-top: var(--header-h);     /* Desce exatamente a altura do header */
  background: #ffffff;              /* Fundo branco puro como a Seção 2 */
  box-sizing: border-box;
}
.dual-half {
  width: 50%;
  height: 100%;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  box-sizing: border-box;
}
.dual-half:hover .dual-img { transform: scale(1.03); }
.dual-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.6s ease;
}
@media (min-width: 1025px) {
  .dual-half:first-child { padding: 20px 10px 20px 20px; }
  .dual-half:last-child  { padding: 20px 20px 20px 10px; }
  .dual-img { border-radius: 0; }
}
/* Fundo limpo como a Seção 2 com textos em branco e contraste elegante */
.dual-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.52) 0%, rgba(0,0,0,0.12) 32%, rgba(0,0,0,0) 60%);
  pointer-events: none;
}
.dual-caption {
  position: absolute;
  bottom: 44px; left: 40px;
  color: #ffffff;
  z-index: 2;
}
.dual-eyebrow {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
}
.dual-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(20px, 2.2vw, 30px);
  font-weight: 400;
  line-height: 1.25;
  margin-bottom: 14px;
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}
.dual-cta {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-bottom: 1.5px solid rgba(255, 255, 255, 0.9);
  padding-bottom: 2px;
  display: inline-block;
  color: #ffffff;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.6);
}

/* ── SLIDE 3 — FINALE BOUTIQUE & RODAPÉ NO LIMITE ─────────── */
.footer-slide {
  width: 100%;
  height: var(--vh, 100vh);
  background: #f2f0eb;              /* Fundo cinza-areia arquitetônico aquecido */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 100px var(--pad-x) 24px;
  box-sizing: border-box;
  overflow-y: auto;
}

/* Área superior / central: Concierge VIP WhatsApp */
.concierge-vip {
  max-width: 680px;
  margin: auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.concierge-monogram {
  width: 46px;
  height: 46px;
  object-fit: contain;
  margin-bottom: 16px;
}
.concierge-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 400;                 /* Leve / elegante */
  color: var(--color-text);
  letter-spacing: -0.01em;
  margin-bottom: 12px;
  line-height: 1.25;
}
.concierge-subtitle {
  font-weight: 300;
  font-size: 0.85em;
  opacity: 0.85;
  display: block;
  margin-top: 6px;
}
.concierge-desc {
  font-size: 14px;
  font-weight: 300;
  line-height: 24px;
  color: var(--color-muted);
  margin-bottom: 24px;
  max-width: 520px;
}
.btn-whatsapp-vip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 15px 32px;
  background: #000404;              /* Preto nobre - paleta da marca */
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  transition: all 0.25s ease;
}
.btn-whatsapp-vip:hover {
  background: #222222;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
}
.btn-whatsapp-vip svg {
  width: 20px;
  height: 20px;
  fill: #ffffff;
}
.concierge-trust {
  display: flex;
  gap: 20px;
  margin-top: 20px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--color-muted);
  text-transform: uppercase;
  flex-wrap: wrap;
  justify-content: center;
}

/* Área inferior: Rodapé no limite */
.clean-footer-bottom {
  width: 100%;
  border-top: 1px solid #dfdbd3;
  padding-top: 20px;
}
.clean-footer {
  width: 100%;
  display: grid;
  grid-template-columns: 2fr 1.2fr 1.5fr;
  gap: 40px;
  align-items: start;
}
.cf-logo { margin-bottom: 12px; }
.cf-logo img, .cf-logo svg { height: 26px; width: auto; }
.cf-desc {
  font-size: 12px;
  font-weight: 300;
  line-height: 20px;
  color: var(--color-muted);
  max-width: 320px;
}
.cf-social-links {
  margin-top: 10px;
}
.cf-social-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #000404 !important;
  font-weight: 500;
  text-decoration: none;
  padding: 4px 8px 4px 0;
  transition: opacity 0.2s;
}
.cf-social-btn:hover {
  opacity: 0.7;
}

.cf-col h4 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text);
  margin-bottom: 12px;
}
.cf-col a, .cf-col p {
  display: block;
  font-size: 12px;
  font-weight: 400;
  line-height: 24px;
  color: var(--color-muted);
}
.cf-col a:hover { color: var(--color-text); }

/* SELOS DE PAGAMENTO E GOOGLE SAFE BROWSING REAL */
.footer-trust-row {
  margin-top: 20px;
  padding: 14px 0;
  border-top: 1px solid #dfdbd3;
  border-bottom: 1px solid #dfdbd3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.payment-methods {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.pay-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #555555;
}
.pay-icons {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.pay-tag {
  font-size: 10px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 4px;
  background: #ffffff;
  border: 1px solid #d5d2cc;
  color: #222222;
  letter-spacing: 0.04em;
}
.security-seals {
  display: flex;
  align-items: center;
}
.google-safe-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  color: #1b5e20 !important;
  background: #ffffff;
  padding: 6px 14px;
  border-radius: 99px;
  border: 1px solid #c8e6c9;
  text-decoration: none;
  font-weight: 400;
  transition: background 0.2s, transform 0.2s;
}
.google-safe-link:hover {
  background: #e8f5e9;
  transform: translateY(-1px);
}

.footer-legal-bar {
  text-align: center;
  padding-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
}
.footer-legal {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: #9e9b94;
  text-transform: uppercase;
}
.footer-copy {
  font-size: 11px;
  font-weight: 300;
  color: #737378;
  letter-spacing: 0.08em;
}

/* ── BOTÃO FLUTUANTE DE WHATSAPP (PRETO NOBRE, PALETA DA MARCA) ── */
.whatsapp-float-btn {
  position: fixed;
  bottom: 58px;
  right: 24px;
  width: 48px;
  height: 48px;
  background: #000404;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1009;
  transition: transform 0.25s cubic-bezier(0.25, 1, 0.5, 1), background 0.25s ease;
}
.whatsapp-float-btn:hover {
  transform: scale(1.08);
  background: #222222;
}
.whatsapp-float-btn svg {
  width: 22px;
  height: 22px;
  fill: #ffffff;
  stroke: none;
}

/* ── PONTOS DE NAVEGAÇÃO LATERAL (BRANCOS) ─────────────────── */
.slide-dots {
  position: fixed;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 1004;
}
.s-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  border: 1px solid rgba(255,255,255,0.9);
  box-shadow: 0 1px 4px rgba(0,0,0,0.35);
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}
.s-dot.active {
  background: #ffffff;
  border-color: #ffffff;
  transform: scale(1.6);
  box-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

/* ── TELA DE COLEÇÃO (APP VIEW) ───────────────────────────── */
/* ── TELA DE COLEÇÃO (APP VIEW — SINGLE SCROLL CONTEXT) ────────────────── */
.collection-view {
  position: fixed;
  inset: 0;
  background: #ffffff;
  z-index: 1008;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  transform: translateX(100%);
  transition: transform 700ms var(--transition);
}
.collection-view.active { transform: translateX(0); }

/* Navegação e Banner (Fluxo Normal — Saem da tela ao rolar) */
.coll-nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px var(--pad-x) 12px;
}
.app-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text);
  background: none;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
}
.app-back-btn:hover { opacity: 0.5; }
.coll-product-count {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #737378;
}

/* Banner Editorial Contextual */
.collection-hero-banner {
  position: relative;
  width: calc(100% - (var(--pad-x) * 2));
  margin: 0 auto 20px;
  height: 170px;
  border-radius: 12px;
  overflow: hidden;
  background: #111;
  display: flex;
  align-items: flex-end;
  flex-shrink: 0;
}
.coll-banner-img-wrap {
  position: absolute;
  inset: 0;
}
.coll-banner-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transition: transform 0.6s ease;
}
.coll-banner-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.72) 100%);
}
.coll-banner-content {
  position: relative;
  z-index: 2;
  padding: 20px 24px;
  color: #ffffff;
}
.coll-banner-eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  display: block;
  margin-bottom: 4px;
}
.collection-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 26px;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 4px;
  line-height: 1.2;
}
.coll-banner-desc {
  font-size: 12px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.9);
  max-width: 580px;
  line-height: 18px;
}

/* ── BARRA STICKY CONDENSADA (ÚNICO ELEMENTO STICKY) ───────────── */
.collection-sticky-bar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #ffffff;
  padding: 10px var(--pad-x) 0;
  border-bottom: 1px solid #f0f0f0;
  transition: transform 0.25s ease, box-shadow 0.2s ease, padding 0.25s ease;
  will-change: transform;
}
.collection-sticky-bar.is-hidden {
  transform: translateY(-100%);
}
.collection-sticky-bar.is-condensed {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  padding: 6px var(--pad-x) 6px;
  max-height: 64px;
}
.sticky-bar-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

/* Chips de Categoria */
.filter-chips {
  display: flex;
  gap: 8px;
  padding: 2px 0 10px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-snap-type: x mandatory;
}
.filter-chips::-webkit-scrollbar { display: none; }
.f-chip {
  scroll-snap-align: start;
  flex-shrink: 0;
  padding: 7px 16px;
  border: 1px solid var(--color-border-mid);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-muted);
  background: #ffffff;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.2s ease;
}
.f-chip:hover {
  border-color: #000404;
  color: #000404;
}
.f-chip.active {
  background: var(--color-text);
  border-color: var(--color-text);
  color: #fff;
}

/* Botão Compacto de Filtros (no estado condensado) */
.btn-condensed-filters {
  display: none;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  border-radius: 20px;
  background: #f7f6f3;
  border: 1px solid #dfdbd3;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #000404;
  cursor: pointer;
  transition: all 0.2s ease;
  flex-shrink: 0;
  margin-bottom: 8px;
}
.btn-condensed-filters:hover {
  background: #eae7e1;
}
.collection-sticky-bar.is-condensed .btn-condensed-filters {
  display: inline-flex;
  margin-bottom: 0;
}
.collection-sticky-bar.is-condensed .filter-chips {
  padding-bottom: 0;
}
.collection-sticky-bar.is-condensed .collection-filters-bar {
  display: none;
}
.active-filters-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  background: #000404;
  color: #ffffff;
  font-size: 9.5px;
  font-weight: 700;
  border-radius: 9px;
}

/* Barra de Filtros Refinados (Estado Normal) */
.collection-filters-bar {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 6px 0 12px;
  flex-wrap: wrap;
  border-top: 1px solid #f6f6f6;
}
.filter-group {
  display: flex;
  align-items: center;
  gap: 8px;
}
.filter-group-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #555555;
  white-space: nowrap;
}
.filter-pills {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}
.sz-filter-pill, .col-filter-pill, .prc-filter-pill {
  padding: 4px 9px;
  font-family: 'Montserrat', sans-serif;
  font-size: 10.5px;
  font-weight: 500;
  border-radius: 4px;
  background: #f7f6f3;
  color: #444444;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.18s ease;
}
.sz-filter-pill:hover, .col-filter-pill:hover, .prc-filter-pill:hover {
  background: #eae7e1;
  color: #000404;
}
.sz-filter-pill.active, .col-filter-pill.active, .prc-filter-pill.active {
  background: #000404;
  color: #ffffff;
}
.btn-clear-filters {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 10.5px;
  font-weight: 600;
  text-transform: uppercase;
  color: #b71c1c;
  background: #ffebee;
  padding: 4px 10px;
  border-radius: 4px;
  border: 1px solid #ffcdd2;
  cursor: pointer;
  transition: background 0.2s;
  margin-left: auto;
}
.btn-clear-filters:hover {
  background: #ffcdd2;
}

/* ── GRADE DE PRODUTOS (4 COLUNAS & SCROLL NATURAL) ─────────────── */
.collection-grid-wrap {
  flex: 1;
  overflow: visible;
  height: auto;
  padding: 24px var(--pad-x) 96px;
}
.collection-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 1279px) { .collection-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 991px)  { .collection-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 767px)  { .collection-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; } }

/* ── CARD DE PRODUTO RICO & PROPORÇÃO 4/5 ───────────────────────── */
.p-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 320px;
  cursor: pointer;
}
.p-card-img {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  min-height: 220px;
  overflow: hidden;
  background: #f4f2ef;
  margin-bottom: 12px;
  border-radius: 6px;
}
/* Fallback global da marca para imagens indisponíveis */
.p-card.img-fallback .p-card-img {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #edeae4;
}
.p-card.img-fallback .p-card-img::before {
  content: 'BEDÊ';
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: #a39e95;
}
.p-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.35s ease;
}
.p-card-img .p-img-primary {
  position: relative;
  z-index: 1;
}
.p-card-img .p-img-secondary {
  position: absolute;
  inset: 0;
  opacity: 0;
  z-index: 2;
}
.p-card:hover .p-card-img .p-img-primary {
  transform: scale(1.04);
}
.p-card:hover .p-card-img .p-img-secondary {
  opacity: 1;
  transform: scale(1.04);
}

/* Botão Wishlist no Card */
.p-card-wish-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000404;
  cursor: pointer;
  z-index: 4;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.p-card-wish-btn:hover {
  transform: scale(1.15);
  background: #ffffff;
}
.p-card-wish-btn.active {
  color: #c62828 !important;
  background: #ffffff;
}

/* Ações Rápidas no Hover ("Ver Rápido" e "Comprar") */
.p-card-actions {
  position: absolute;
  bottom: 8px;
  left: 8px;
  right: 8px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  opacity: 0;
  transform: translateY(6px);
  transition: all 0.25s cubic-bezier(0.25, 1, 0.5, 1);
  z-index: 4;
}
.p-card:hover .p-card-actions {
  opacity: 1;
  transform: translateY(0);
}
.p-card-quickview, .p-card-quickadd {
  padding: 8px 4px;
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 4px;
  cursor: pointer;
  border: none;
  text-align: center;
  transition: background 0.2s;
}
.p-card-quickview {
  background: rgba(255, 255, 255, 0.95);
  color: #000404;
}
.p-card-quickview:hover {
  background: #ffffff;
}
.p-card-quickadd {
  background: #000404;
  color: #ffffff;
}
.p-card-quickadd:hover {
  background: #222222;
}

/* Grade de Tamanhos no Card */
.p-card-sizes {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin: 6px 0 8px;
}
.sz-pill {
  font-size: 9.5px;
  font-weight: 500;
  padding: 2px 6px;
  border-radius: 3px;
  background: #f0eee9;
  color: #444444;
}

/* Textos e Preços */
.p-card-cat {
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-muted);
  display: block;
  margin-bottom: 2px;
}
.p-card-name {
  font-size: 13.5px;
  font-weight: 500;
  line-height: 18px;
  color: var(--color-text);
  margin-bottom: 4px;
}
.p-card-price-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 2px;
}
.p-card-price {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--color-text);
}
.p-card-old {
  font-size: 11.5px;
  color: #999;
  text-decoration: line-through;
  font-weight: 300;
}
.p-card-pix {
  font-size: 11.5px;
  font-weight: 600;
  color: #1b5e20;
  display: block;
}
.p-card-inst {
  font-size: 11px;
  font-weight: 400;
  color: #666666;
  display: block;
  margin-top: 1px;
}

/* Skeleton Loading */
@keyframes skeletonShimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
.p-card-img.loading {
  background: linear-gradient(90deg, #f0f0f0 25%, #e4e2de 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: skeletonShimmer 1.5s infinite;
}

/* ── MODAL DE PRODUTO ─────────────────────────────────────── */
.product-modal {
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 1010;
  display: flex;
  flex-direction: column;
  transform: translateY(100%);
  transition: transform 700ms var(--transition);
  overflow-y: auto;
}
.product-modal.open { transform: translateY(0); }

.pm-top {
  padding: 20px var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 5;
}
.pm-close {
  font-size: 24px;
  color: var(--color-muted);
  line-height: 1;
  cursor: pointer;
}

.pm-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  min-height: calc(100vh - 65px);
}
.pm-photo-wrap {
  display: flex;
  flex-direction: column;
  background: #f8f8f8;
}
.pm-photo {
  flex: 1;
  background: #f8f8f8;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pm-photo img {
  width: 100%;
  height: 100%;
  max-height: 80vh;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.pm-thumbnails {
  display: flex;
  gap: 10px;
  padding: 14px 24px;
  background: #ffffff;
  border-top: 1px solid #eeeeee;
  overflow-x: auto;
}
.pm-thumb {
  width: 60px;
  height: 75px;
  border-radius: 4px;
  overflow: hidden;
  border: 1.5px solid transparent;
  cursor: pointer;
  opacity: 0.65;
  transition: all 0.2s ease;
  flex-shrink: 0;
}
.pm-thumb:hover { opacity: 0.9; }
.pm-thumb.active {
  border-color: #000404;
  opacity: 1;
}
.pm-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pm-info {
  padding: 40px 48px 60px;
  display: flex;
  flex-direction: column;
  max-width: 620px;
}
.pm-header-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}
.pm-cat {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-muted);
}
.pm-rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  color: #333333;
}
.pm-stars {
  color: #222222;
  letter-spacing: 1px;
  font-size: 12px;
}
.pm-rating-score {
  font-weight: 700;
}
.pm-rating-count {
  color: #737378;
  font-weight: 400;
}

.pm-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 32px;
  color: var(--color-text);
  margin-bottom: 16px;
}
.pm-price-block {
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid #f0f0f0;
}
.pm-price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.pm-price {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-text);
}
.pm-old {
  font-size: 14px;
  font-weight: 300;
  color: var(--color-muted);
  text-decoration: line-through;
}
.pm-pix {
  font-size: 13px;
  font-weight: 600;
  color: #1b5e20;
  margin-top: 4px;
  display: block;
}
.pm-inst {
  font-size: 12.5px;
  font-weight: 400;
  color: #666666;
  display: block;
  margin-top: 2px;
}

.pm-sizes-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.pm-guide-link {
  font-size: 11px;
  font-weight: 400;
  color: var(--color-muted);
  text-decoration: underline;
  cursor: pointer;
  letter-spacing: 0.02em;
}
.pm-sizes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.sz-btn {
  width: 44px; height: 44px;
  border: 1px solid var(--color-border-mid);
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text);
  background: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sz-btn.active {
  background: var(--color-text);
  border-color: var(--color-text);
  color: #fff;
}
.sz-btn:hover:not(.active) { border-color: var(--color-text); }

.pm-cta-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}
.btn-solid {
  width: 100%;
  padding: 16px;
  background: #000404;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}
.btn-solid:hover { background: #222222; transform: translateY(-1px); }

.btn-whatsapp-editorial {
  width: 100%;
  padding: 14px;
  background: #ffffff;
  color: #000404;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid #000404;
  border-radius: 4px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.2s ease;
}
.btn-whatsapp-editorial:hover {
  background: #f7f6f3;
}

.pm-editorial-perks {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px 0;
  border-top: 1px solid #f0f0f0;
  border-bottom: 1px solid #f0f0f0;
  margin-bottom: 20px;
}
.pm-perk-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #444444;
  font-weight: 400;
}
.pm-perk-item svg {
  color: #1b5e20;
  flex-shrink: 0;
}

.pm-desc {
  font-size: 13px;
  font-weight: 300;
  line-height: 22px;
  color: var(--color-muted);
  margin-bottom: 32px;
}

/* SEÇÃO EDITORIAL DE AVALIAÇÕES DE CLIENTES */
.pm-reviews-section {
  padding-top: 24px;
  border-top: 1px solid var(--color-border);
}
.pm-reviews-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 12px;
}
.pm-rev-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #000404;
  margin-bottom: 2px;
}
.pm-rev-sub {
  font-size: 11px;
  font-weight: 300;
  color: #737378;
}
.pm-rev-stat-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  background: #f7f6f3;
  border-radius: 8px;
  border: 1px solid #eae7e1;
}
.pm-rev-big-score {
  font-size: 20px;
  font-weight: 700;
  color: #000404;
}
.pm-rev-stat-info {
  display: flex;
  flex-direction: column;
}
.pm-rev-stars {
  font-size: 11px;
  color: #222222;
  letter-spacing: 1px;
}
.pm-rev-rec {
  font-size: 10px;
  color: #1b5e20;
  font-weight: 600;
}

.pm-reviews-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.pm-review-card {
  padding: 16px;
  background: #fcfbf9;
  border-radius: 8px;
  border: 1px solid #f0eee9;
}
.pm-review-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}
.pm-reviewer-info {
  display: flex;
  align-items: center;
  gap: 6px;
}
.pm-reviewer-name {
  font-size: 12.5px;
  font-weight: 600;
  color: #000404;
}
.pm-reviewer-verified {
  font-size: 10px;
  font-weight: 600;
  color: #1b5e20;
  background: #e8f5e9;
  padding: 2px 6px;
  border-radius: 4px;
}
.pm-review-date {
  font-size: 11px;
  color: #999999;
}
.pm-review-rating {
  font-size: 11px;
  color: #222222;
  letter-spacing: 1px;
  margin-bottom: 6px;
}
.pm-review-text {
  font-size: 12.5px;
  line-height: 19px;
  color: #444444;
  font-weight: 300;
  margin-bottom: 6px;
}
.pm-review-tag {
  font-size: 10.5px;
  color: #777777;
  font-weight: 500;
}

/* ── SACOLA FLUTUANTE (HORIZONTAL NO DESKTOP / VERTICAL NO MOBILE) ── */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 1015;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.cart-overlay.open { opacity: 1; pointer-events: all; }

/* Desktop: Modal Horizontal Panorâmico Flutuante */
.cart-drawer {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -46%) scale(0.96);
  width: 860px;
  max-width: calc(100vw - 48px);
  max-height: 82vh;
  background: #ffffff;
  border-radius: 28px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28), 0 4px 20px rgba(0, 0, 0, 0.08);
  z-index: 1016;
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
}
.cart-drawer.open {
  opacity: 1;
  pointer-events: all;
  transform: translate(-50%, -50%) scale(1);
}

.cart-head {
  padding: 20px 28px;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
}
.cart-head-title {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #000404;
}
.cart-head-title h3 {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0;
}

.cart-main-content {
  display: flex;
  flex: 1;
  min-height: 0;
  overflow: hidden;
}
.cart-body {
  flex: 1.35;
  overflow-y: auto;
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border-right: 1px solid #f0f0f0;
}
.cart-item {
  display: flex;
  gap: 14px;
  align-items: center;
  background: #fafafa;
  border: 1px solid #f0f0f0;
  border-radius: 16px;
  padding: 14px 16px;
  transition: background 0.2s, transform 0.2s;
}
.cart-item:hover {
  background: #f5f5f5;
}
.cart-item-img {
  width: 76px;
  height: 76px;
  object-fit: cover;
  background: #fff;
  border-radius: 10px;
  flex-shrink: 0;
}
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name {
  font-size: 13px;
  font-weight: 500;
  line-height: 18px;
  margin-bottom: 4px;
  color: #000404;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cart-item-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: var(--color-muted);
  margin-bottom: 6px;
}
.cart-item-price {
  font-size: 14px;
  font-weight: 600;
  color: #000404;
}
.cart-item-remove {
  background: none;
  border: none;
  color: #a0a0a5;
  cursor: pointer;
  padding: 6px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.cart-item-remove:hover {
  color: #d32f2f;
  background: rgba(211, 47, 47, 0.08);
}

.cart-foot {
  flex: 1;
  padding: 24px 28px;
  background: #fafafa;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
}
.cart-summary-box {
  background: #ffffff;
  border-radius: 16px;
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border: 1px solid #eeeeee;
  box-shadow: 0 2px 8px rgba(0,0,0,0.02);
}
.cart-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 400;
  color: #666;
}
.cart-row.pix {
  color: #2e7d32;
  font-weight: 600;
}
.cart-row.inst {
  font-size: 12px;
  color: #888;
}
.cart-row span:last-child {
  font-weight: 600;
  color: #000404;
}
.cart-row.pix span:last-child {
  color: #2e7d32;
}

.cart-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.btn-solid-pill {
  width: 100%;
  padding: 15px 24px;
  background: #000404;
  color: #ffffff;
  border: 1px solid #000404;
  border-radius: 30px;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}
.btn-solid-pill:hover {
  background: #222;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}
.btn-outline-pill {
  width: 100%;
  padding: 13px 24px;
  background: transparent;
  color: #000404;
  border: 1px solid #dcdcdc;
  border-radius: 30px;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s ease;
}
.btn-outline-pill:hover {
  border-color: #000404;
  background: #f0f0f0;
}

/* ── GUIA DE MEDIDAS MODAL ────────────────────────────────── */
.guide-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.4);
  z-index: 1020;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.guide-overlay.open { opacity: 1; pointer-events: all; }
.guide-box {
  background: #fff;
  width: 420px;
  max-width: 90vw;
  padding: 40px;
}
.guide-box h4 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.guide-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}
.guide-table th, .guide-table td {
  padding: 10px 0;
  border-bottom: 1px solid var(--color-border);
  font-weight: 300;
  text-align: left;
}
.guide-table th { font-weight: 600; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; }

/* ── DRAWER DE FILTROS (MODAL ACESSÍVEL) ──────────────────── */
.filters-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 1018;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.filters-drawer-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.filters-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 380px;
  max-width: 90vw;
  background: #ffffff;
  z-index: 1019;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1);
  display: flex;
  flex-direction: column;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
}
.filters-drawer.open {
  transform: translateX(0);
}
.filters-drawer-head {
  padding: 20px 24px;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.filters-drawer-title {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #000404;
}
.filters-drawer-title h3 {
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0;
}
.filters-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.drawer-filter-section h4 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #555555;
  margin-bottom: 12px;
}
.drawer-filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.filters-drawer-foot {
  padding: 18px 24px;
  border-top: 1px solid #f0f0f0;
  display: flex;
  gap: 12px;
  background: #fafafa;
}
.btn-clear-drawer {
  flex: 1;
  padding: 12px;
  background: #ffffff;
  border: 1px solid #dcdcdc;
  border-radius: 4px;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #555555;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-clear-drawer:hover { background: #f0eee9; }
.btn-apply-drawer {
  flex: 1.5;
  padding: 12px;
  background: #000404;
  border: 1px solid #000404;
  border-radius: 4px;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffffff;
  cursor: pointer;
  transition: opacity 0.2s;
}
.btn-apply-drawer:hover { opacity: 0.85; }

/* Auto-hide do botão flutuante WhatsApp */
.whatsapp-float-btn {
  transition: transform 0.25s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.25s ease, background 0.2s ease;
}
.whatsapp-float-btn.is-hidden {
  opacity: 0 !important;
  transform: scale(0.8) !important;
  pointer-events: none !important;
}

/* ── RESPONSIVO MOBILE ────────────────────────────────────── */
@media (max-width: 1024px) {
  :root { --pad-x: 20px; --header-h: 70px; }

  .main-nav { display: none; }
  .btn-menu-mobile { display: flex !important; }
  .logo-link img, .logo-link svg { height: 48px; }

  /* Slide 0: Home — FOTO 100% ENQUADRADA E SEM CORTES */
  .hero-bg {
    bottom: 0;
    background-image: url('assets/hero_bede_mobile.jpg?v=2026_perfection_v1'), url('assets/hero_bede.png');
    background-size: cover;
    background-position: center center;
  }
  .hero-shade {
    background: linear-gradient(180deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.02) 28%, rgba(0,0,0,0.06) 55%, rgba(0,0,0,0.68) 100%);
  }
  .hero-content { padding: 0 20px 58px; }
  .hero-eyebrow { font-size: 10px; margin-bottom: 6px; }
  .hero-headline { font-size: clamp(24px, 6vw, 30px); line-height: 1.18; margin-bottom: 16px; }
  .home-bottom-bar { bottom: 12px; padding: 0 16px; }
  .home-bar-inner { border-top: 1px solid rgba(255, 255, 255, 0.22); padding-top: 6px; justify-content: center; }
  .home-bar-inner span { font-size: 8.5px; letter-spacing: 0.06em; white-space: nowrap; }

  /* Slide 1: Special Sale — 100% ENQUADRADO NA TELA */
  .split-text-slide {
    flex-direction: column;
    gap: 0;
    padding-top: var(--header-h);
    height: 100%;
    box-sizing: border-box;
  }
  .split-photo {
    width: 100%;
    height: 58%;
    padding: 8px 16px 0;
    flex-shrink: 0;
    box-sizing: border-box;
  }
  .split-photo img { border-radius: 6px; }
  .split-text-content {
    width: 100%;
    min-width: unset;
    padding: 10px 16px 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-sizing: border-box;
  }
  .split-headline.single-line { font-size: 26px; margin-bottom: 12px; white-space: nowrap; }
  .btn-nv.dark { padding: 11px 24px; font-size: 11px; }

  /* Slide 2: Categorias — 100% ENQUADRADO NA TELA COM TEXTO BRANCO */
  .split-dual-slide {
    flex-direction: column;
    padding-top: var(--header-h);
    height: 100%;
    box-sizing: border-box;
  }
  .dual-half {
    width: 100%;
    flex: 1;
    min-height: 0;
    padding: 6px 16px;
    position: relative;
    box-sizing: border-box;
  }
  .dual-half .dual-img { border-radius: 6px; }
  .dual-shade {
    display: block !important;
    position: absolute;
    inset: 6px 16px;
    border-radius: 6px;
    background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.18) 35%, rgba(0,0,0,0) 65%) !important;
    pointer-events: none;
  }
  .dual-caption { left: 30px; bottom: 18px; color: #ffffff !important; z-index: 3; }
  .dual-eyebrow { color: rgba(255, 255, 255, 0.9) !important; text-shadow: 0 1px 4px rgba(0,0,0,0.7); font-size: 9px; margin-bottom: 4px; }
  .dual-title { font-size: 18px; margin-bottom: 8px; color: #ffffff !important; text-shadow: 0 2px 8px rgba(0,0,0,0.7); line-height: 1.2; }
  .dual-cta { color: #ffffff !important; border-bottom: 1.5px solid rgba(255,255,255,0.9) !important; text-shadow: 0 1px 4px rgba(0,0,0,0.7); font-size: 10px; }

  /* Slide 3: Atendimento e Rodapé — 100% MOBILE COM TEXTO CENTRALIZADO */
  .footer-slide {
    padding: 80px 20px 24px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 32px;
  }
  .concierge-vip { margin: 0 auto; text-align: center; }
  .concierge-monogram { height: 32px; margin-bottom: 10px; }
  .concierge-title { font-size: 22px; line-height: 1.25; margin-bottom: 8px; }
  .concierge-desc { font-size: 13px; line-height: 20px; margin-bottom: 16px; }
  .btn-whatsapp-vip { padding: 14px 24px; font-size: 11px; width: 100%; }
  .concierge-trust { flex-direction: column; gap: 6px; align-items: center; }
  .clean-footer { display: grid; grid-template-columns: 1fr; gap: 24px; text-align: center; }
  .clean-footer .cf-col { text-align: center; display: flex; flex-direction: column; align-items: center; justify-content: center; width: 100%; }
  .cf-logo { display: flex; justify-content: center; margin-bottom: 8px; width: 100%; }
  .cf-logo img { height: 28px; margin: 0 auto; }
  .cf-desc { margin: 0 auto 6px; font-size: 12px; line-height: 18px; text-align: center; max-width: 300px; }
  .clean-footer .cf-col h4 { font-size: 11px; margin-bottom: 8px; text-align: center; }
  .clean-footer .cf-col a, .clean-footer .cf-col p { font-size: 12px; line-height: 20px; display: block; margin: 4px 0; text-align: center; }
  .clean-footer .cf-col:first-child a { display: inline-block; margin: 6px auto 0; text-align: center; }
  .footer-legal-bar { padding-top: 16px; border-top: 1px solid rgba(0,0,0,0.08); font-size: 9.5px; line-height: 15px; text-align: center; }

  /* Catálogo & Banner Mobile */
  .coll-nav-bar { padding: 16px 14px 8px; }
  .collection-hero-banner { width: calc(100% - 28px); height: 130px; border-radius: 8px; margin-bottom: 12px; }
  .coll-banner-content { padding: 14px 16px; }
  .coll-banner-eyebrow { font-size: 8.5px; }
  .collection-title { font-size: 20px; }
  .coll-banner-desc { display: none; }
  
  .collection-sticky-bar { padding: 8px 14px 0; }
  .collection-sticky-bar.is-condensed { max-height: 52px; padding: 4px 14px; }
  .btn-condensed-filters { padding: 6px 12px; font-size: 10px; }

  .collection-grid { grid-template-columns: repeat(2, 1fr); gap: 20px 12px; }
  .collection-grid-wrap { padding: 16px 14px 48px; }

  .search-btn-label { display: none; }
  .header-search-expand { width: 260px; right: -50px; }

  .pm-grid { grid-template-columns: 1fr; }
  .pm-info { padding: 24px 18px 48px; }
  .pm-thumbnails { padding: 10px 16px; gap: 8px; }
  .pm-thumb { width: 50px; height: 65px; }
  .pm-reviews-head { flex-direction: column; align-items: flex-start; }

  /* Sacola Mobile */
  .cart-drawer {
    top: auto;
    left: 12px;
    right: 12px;
    bottom: 12px;
    width: auto;
    max-width: none;
    max-height: 88vh;
    border-radius: 24px;
    transform: translateY(calc(100% + 20px));
  }
  .cart-drawer.open {
    transform: translateY(0);
  }
  .cart-main-content {
    flex-direction: column;
    overflow-y: auto;
  }
  .cart-body {
    border-right: none;
    border-bottom: 1px solid #f0f0f0;
    padding: 16px 18px;
  }
  .cart-foot {
    padding: 16px 18px;
  }
  .slide-dots { right: 10px; }
  .btn-menu-mobile { display: flex; }
  .whatsapp-float-btn { bottom: 44px; right: 14px; width: 44px; height: 44px; }
  .whatsapp-float-btn svg { width: 42px; height: 42px; stroke-width: 1.2px; }
}

.btn-menu-mobile {
  display: none;
  align-items: center;
  padding: 0 8px;
}

/* ── PREFERS REDUCED MOTION (ACESSIBILIDADE) ──────────────── */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
