/* =========================================================
   ON RUNNING — RECRIAÇÃO VISUAL MOBILE-FIRST
   style.css — Estilos globais
   ========================================================= */

/* ===== FONTES ===== */
@font-face {
  font-family: 'OnDiatype';
  src: url('https://cdn.on-running.com/on-running-webfonts/OnDiatypeStandard-Regular.woff2') format('woff2');
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: 'OnDiatype';
  src: url('https://cdn.on-running.com/on-running-webfonts/OnDiatypeStandard-Medium.woff2') format('woff2');
  font-weight: 500;
  font-display: swap;
}

/* ===== VARIÁVEIS ===== */
:root {
  --black: #000000;
  --white: #ffffff;
  --bg-light: #ffffff; /* Alterado para branco puro — fundo branco como o original ON */
  --bg-product: #E6E8E9;
  --grid-border: #E6E8E9;
  --tag-gold: #A66B1E;
  --tag-fav-bd: #A66B1E;
  --text-muted: #757575;
  --border: #e0e0e0;
  --nav-h: 68px; /* Slightly taller for modern app feel */
  --font: 'OnDiatype', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

/* ===== RESET ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden; /* Previne scroll horizontal no mobile */
}

body {
  font-family: var(--font);
  background: var(--white);
  color: var(--black);
  overflow-x: hidden;
  padding-bottom: var(--nav-h);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
  color: inherit;
}

ul,
ol {
  list-style: none;
}


/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  padding: 14px 16px;
  transition: background 0.2s;
}

.site-header.scrolled {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.header-logo svg {
  width: 45px;
  height: 60px;
  fill: var(--white);
  transition: fill 0.2s;
  /* Retira o peso extra do box model sobre o padding do header, permitindo o SVG crescer 
     sem empurrar as bordas superior/inferior para fora */
  display: block;
  margin-top: -12px;
  margin-bottom: -12px;
}

.site-header.scrolled .header-logo svg {
  fill: var(--black);
}

/* Hero page: white logo always visible */
.page-hero .header-logo svg {
  fill: var(--white);
}

/* Shoes page: dark logo  */
.page-shoes .site-header {
  background: var(--bg-light);
}

.page-shoes .header-logo svg {
  fill: var(--black);
}

.page-shoes .site-header.scrolled {
  background: var(--white);
}

.header-right {
  margin-left: auto;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white);
  transition: color 0.2s;
}

.site-header.scrolled .header-right {
  color: var(--black);
}

.page-shoes .header-right {
  color: var(--black);
}


/* ===== DRAWER MENU ===== */
.menu-drawer {
  position: fixed;
  inset: 0;
  background: var(--bg-light);
  z-index: 200;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  padding: 14px 20px;
  padding-bottom: calc(var(--nav-h) + 8px);
  overflow-y: auto;
}

.menu-drawer.open {
  transform: translateX(0);
}

.drawer-logo svg {
  width: 35px;
  height: 48px;
  fill: var(--black);
  margin-bottom: 32px;
  display: block;
}

.drawer-nav-main {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.drawer-nav-main a {
  display: block;
  font-size: 24px;
  font-weight: 400;
  padding: 6px 0;
  color: var(--black);
}

.drawer-divider {
  height: 1px;
  background: var(--border);
  margin: 24px 0;
}

.drawer-nav-support a {
  display: block;
  font-size: 14px;
  padding: 7px 0;
  color: var(--black);
  border-bottom: 1px solid var(--border);
}

.drawer-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  background: var(--white);
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-around;
  z-index: 201;
}

.drawer-bottom-nav button,
.drawer-bottom-nav a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
}

.drawer-bottom-nav svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: var(--black);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}


/* ===== BUTTONS ===== */
.btn-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 22px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 400;
  white-space: nowrap;
  cursor: pointer;
  transition: opacity 0.15s;
}

.btn-pill:active {
  opacity: 0.75;
}

.btn-pill-light {
  background: rgba(255, 255, 255, 0.92);
  color: var(--black);
}

.btn-pill-dark {
  background: var(--black);
  color: var(--white);
}

.btn-pill-outline {
  background: transparent;
  color: var(--black);
  border: 1px solid var(--black);
}


/* ===== HERO (base) ===== */
.hero {
  position: relative;
  background: #111 center/cover no-repeat;
  color: var(--white);
}

/* ===== HERO CAMPAIGN ===== */
.hero-campaign {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100svh;
  padding: 90px 16px calc(var(--nav-h) + 24px);
}

.hero-campaign::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(10, 10, 10, 0.15) 0%,
      rgba(10, 10, 10, 0.55) 50%,
      rgba(10, 10, 10, 0.85) 100%);
  pointer-events: none;
}

.hero-campaign-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 390px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}

/* ── Upsell Title ── */
.upsell-title {
  font-size: 24px;
  font-weight: 600;
  color: #FFFFFF;
  line-height: 1.25;
  letter-spacing: 0.3px;
  text-align: center;
  max-width: 360px;
  text-shadow: 
    0 2px 10px rgba(0, 0, 0, 0.7),
    0 8px 24px rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 1;
  margin-bottom: 4px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.upsell-title-accent {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: #D4AF37;
  margin-bottom: 12px;
  text-shadow: 
    0 0 14px rgba(212, 175, 55, 0.35),
    0 0 30px rgba(212, 175, 55, 0.15),
    0 2px 4px rgba(0, 0, 0, 0.6);
}

/* ── Info text ── */
.hero-info-text {
  font-size: 17px;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: 0.2px;
  line-height: 1.4;
  max-width: 360px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

/* ── VSL wrapper + container ── */
.vsl-wrapper {
  width: 100%;
  padding: 0;
  margin: 4px 0 8px;
}

.vsl-container {
  width: 100%;
  border: 4px solid rgba(255, 255, 255, 0.15); /* Mais fina e delicada */
  border-radius: 16px; /* Menos arredondado para um visual mais sério */
  overflow: hidden;
  position: relative;
  background: rgba(26, 26, 26, 0.3);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.5),
    inset 0 1px 1px rgba(255, 255, 255, 0.2),
    inset 0 -1px 1px rgba(0, 0, 0, 0.1);
}

.vsl-container::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 12px;
  /* raio interno considerando a borda grossa */
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0) 60%);
  pointer-events: none;
  z-index: 10;
}

/* Placeholder (remove when adding real VTurb embed) */
.vsl-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(26, 26, 26, 0.5);
  /* Semi-transparente para mostrar o vidro atrás */
  gap: 12px;
  cursor: pointer;
}

.vsl-play-btn {
  width: 64px;
  /* Maior CTA no player */
  height: 64px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s, background 0.2s;
}

.vsl-placeholder:hover .vsl-play-btn {
  transform: scale(1.05);
  background: rgba(255, 255, 255, 0.3);
}

.vsl-play-btn svg {
  width: 26px;
  height: 26px;
  color: var(--white);
  margin-left: 4px;
}

.vsl-placeholder-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ── Countdown ── */
.countdown-block {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.countdown-label {
  font-size: 10px;
  font-weight: 700;
  color: #CBAA42;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.5;
  text-align: center;
  max-width: 320px;
  margin-bottom: -4px;
}

/* ── Upsell Badge ── */
.upsell-badges {
  gap: 4px;
}

.upsell-badge {
  color: rgba(255, 255, 255, 0.85);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.badge-check {
  color: #4ADE80;
  font-size: 14px;
  animation: checkPulse 3s ease-in-out infinite;
  filter: drop-shadow(0 0 6px rgba(74, 222, 128, 0.5));
}

@keyframes checkPulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
    filter: drop-shadow(0 0 4px rgba(74, 222, 128, 0.4));
  }
  50% {
    opacity: 0.9;
    transform: scale(1.08);
    filter: drop-shadow(0 0 10px rgba(74, 222, 128, 0.6));
  }
}

.countdown-timer {
  display: flex;
  align-items: center;
  gap: 8px;
}

.countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  /* Visual mais limpo, sem caixas ou fundos artificiais */
  padding: 0 12px;
  min-width: 60px;
}

.countdown-num {
  font-size: 36px;
  font-weight: 300;
  /* Letra mais fina (minimalista) */
  line-height: 1;
  color: var(--white);
  letter-spacing: 0.5px;
  font-variant-numeric: tabular-nums;
}

.countdown-unit-label {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.5);
  /* Sutil */
}

.countdown-sep {
  font-size: 28px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.25);
  margin-bottom: 12px;
  line-height: 1;
}

/* ── CTA Button ── */
.hero-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  margin-top: 6px;
  padding: 16px 28px;
  border-radius: 10px;
  /* Mais retangular, levemente arredondado */
  background: var(--black);
  color: var(--white);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.2px;
  text-decoration: none;
  /* Múltiplas sombras para efeito 3D e Glow 
     1. Borda translúcida externa
     2. Luz interna no topo (destaque brilhante)
     3. Glow sutil expandido abaixo e ao redor
  */
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.15),
    inset 0 1px 1px rgba(255, 255, 255, 0.25),
    0 10px 30px rgba(0, 0, 0, 0.5),
    0 0 25px rgba(255, 255, 255, 0.12);
  /* Glow externo sutil da luz branca */
  transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.2s;
  -webkit-tap-highlight-color: transparent;
  position: relative;
  overflow: hidden;
}

/* Efeito de brilho que cruza o botão sutilmente (opcional, dá ar muito moderno) */
.hero-cta-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.08), transparent);
  transform: skewX(-20deg);
  animation: shine 4s infinite;
}

@keyframes shine {
  0% {
    left: -100%;
  }

  20% {
    left: 200%;
  }

  100% {
    left: 200%;
  }
}

.hero-cta-btn:active {
  transform: scale(0.98);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.1),
    inset 0 1px 2px rgba(0, 0, 0, 0.4),
    0 4px 15px rgba(0, 0, 0, 0.4);
}

.hero-cta-btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}


/* ===== SECTION HEADER ===== */
.section-header {
  padding: 28px 16px 14px;
}

.section-title {
  font-size: 26px;
  font-weight: 500;
}

.section-label {
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
  display: block;
}


/* ===== SCROLL TRACK BASE ===== */
.scroll-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.scroll-track::-webkit-scrollbar {
  display: none;
}


/* ===== SHOP CATEGORIES ===== */
.shop-categories {
  padding-bottom: 24px;
}

.shop-categories .scroll-track {
  gap: 2px;
}

.category-card {
  flex: 0 0 80vw;
  scroll-snap-align: start;
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: #ccc;
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.category-card-label {
  position: absolute;
  bottom: 16px;
  left: 16px;
  color: var(--white);
  font-size: 15px;
  font-weight: 500;
}

/* Carousel dots */
.carousel-dots {
  display: flex;
  justify-content: flex-start;
  gap: 4px;
  padding: 12px 16px 0;
}

.carousel-dots span {
  width: 24px;
  height: 2px;
  background: #ccc;
  border-radius: 1px;
  transition: background 0.2s;
}

.carousel-dots span.active {
  background: var(--black);
}


/* ===== ACTIVITIES ===== */
.activities {
  background: var(--bg-light);
  padding: 28px 16px 0;
}

.activities-list li {
  border-bottom: 1px solid var(--border);
}

.activities-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
  font-size: 21px;
  font-weight: 400;
  color: var(--black);
}


/* ===== FAQ ACCORDION ===== */
.faq-section {
  background: var(--white);
  padding: 28px 16px 36px;
}

.faq-section .section-label {
  color: var(--text-muted);
}

.faq-section .section-title {
  color: var(--black);
  margin-top: 6px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item:first-child {
  border-top: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 400;
  color: var(--black);
  line-height: 1.4;
  transition: color 0.2s;
}

.faq-question:hover,
.faq-question:focus,
.faq-question:active {
  color: var(--black);
  outline: none;
}

.faq-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  stroke: var(--text-muted);
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
  opacity: 0;
}

.faq-item.active .faq-answer {
  opacity: 1;
}

.faq-answer p {
  padding: 0 0 20px;
  font-size: 14px;
  font-weight: 400;
  color: var(--black);
  line-height: 1.65;
}
/* ===== MODEL CAROUSEL ===== */
.model-carousel {
  padding: 28px 0 24px;
  background: var(--white);
}

.model-carousel .scroll-track {
  gap: 2px;
  padding: 0 16px;
}

.model-card {
  flex: 0 0 165px;
  scroll-snap-align: start;
  background: var(--bg-product);
}

.model-card-img {
  width: 165px;
  height: 155px;
  object-fit: contain;
  padding: 14px 10px;
  background: var(--bg-product);
  display: block;
}

.model-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  font-size: 13px;
  background: var(--bg-product);
}

.model-card-footer svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: var(--black);
  stroke-width: 1.5;
}


/* ===== PRODUCT CAROUSEL (Novidades) ===== */
.product-carousel {
  padding: 4px 0 28px;
  background: var(--white);
}

.product-carousel .scroll-track {
  gap: 2px;
  padding: 0 16px;
}

.mini-card {
  flex: 0 0 160px;
  scroll-snap-align: start;
  background: var(--white);
}

.mini-card-img {
  width: 160px;
  height: 160px;
  object-fit: contain;
  background: var(--bg-product);
  display: block;
}

.mini-card-body {
  padding: 8px 2px 4px;
}

.mini-card-tag {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--tag-gold);
  display: block;
  margin-bottom: 2px;
}

.mini-card-name {
  font-size: 13px;
  font-weight: 500;
}

.mini-card-desc {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 1px;
}

.mini-card-price {
  font-size: 13px;
  margin-top: 4px;
}


/* ===== NEWSLETTER ===== */
.newsletter {
  background: var(--black);
  color: var(--white);
  padding: 36px 20px;
  text-align: left;
}

.newsletter-title {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 8px;
}

.newsletter-sub {
  font-size: 14px;
  color: #aaa;
  margin-bottom: 20px;
  line-height: 1.5;
}

.newsletter-form {
  display: flex;
  gap: 0;
  border: 1px solid #444;
  border-radius: 100px;
  overflow: hidden;
}

.newsletter-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 12px 16px;
  font-size: 14px;
  color: var(--white);
  font-family: var(--font);
}

.newsletter-input::placeholder {
  color: #888;
}

.newsletter-btn {
  background: var(--white);
  color: var(--black);
  padding: 12px 18px;
  font-size: 13px;
  font-weight: 500;
  border-radius: 100px;
  font-family: var(--font);
  cursor: pointer;
  white-space: nowrap;
}


/* ===== FOOTER ===== */
footer {
  background: var(--bg-light);
  padding: 32px 16px 20px;
}

.footer-section-title {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-links a {
  display: block;
  font-size: 14px;
  padding: 5px 0;
  color: var(--black);
}

.footer-links {
  margin-bottom: 24px;
}

.footer-country {
  font-size: 14px;
  margin: 16px 0 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-copyright {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.footer-legal-links a {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  padding: 3px 0;
}

.footer-social {
  display: flex;
  gap: 18px;
  margin-top: 24px;
  flex-wrap: wrap;
  align-items: center;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-social svg {
  width: 20px;
  height: 20px;
  fill: var(--black);
  display: block;
}


/* ===== SHOES PAGE — PAGE INTRO ===== */
.page-intro {
  padding: 84px 16px 20px;
  background: var(--bg-light);
}

.page-intro .confira {
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
  display: block;
}

.page-intro h1 {
  font-size: 44px;
  font-weight: 500;
  letter-spacing: -0.5px;
}


/* ===== ANNIVERSARY BANNER (17 YEARS PREMIUM) ===== */
.anniversary-banner {
  position: relative;
  width: 100%;
  max-width: 100vw;
  background: #0a0a0a; /* Fundo puro e profundo, super elegante */
  color: var(--white);
  padding: 40px 24px; /* Reduzido de 80px para 40px para deixar o banner mais compacto verticalmente */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid rgba(212, 175, 55, 0.3); /* Fio dourado muito sutil na base */
}

.anniversary-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 150vw;
  height: 150vw;
  max-width: 800px;
  max-height: 800px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, rgba(10, 10, 10, 0) 70%);
  transform: translate(-50%, -50%);
  z-index: 1;
  pointer-events: none;
}

.anniversary-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 800px;
  gap: 20px; /* Reduzido de 32px */
}

@media (min-width: 768px) {
  .anniversary-content {
    flex-direction: row;
    text-align: left;
    align-items: center;
    gap: 48px; /* Reduzido de 64px */
  }
}

.anniversary-typography {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

@media (min-width: 768px) {
  .anniversary-typography {
    align-items: flex-end;
  }
}

.typo-17 {
  font-size: 100px; /* Reduzido de 140px para economizar altura */
  font-weight: 300;
  line-height: 0.8;
  color: transparent;
  -webkit-text-stroke: 1px rgba(212, 175, 55, 0.9); /* Dourado em contorno vazado */
  font-family: serif; /* Contraste clássico com o tech da marca */
  letter-spacing: -4px;
  text-shadow: 0 0 15px rgba(212, 175, 55, 0.4), 0 0 30px rgba(212, 175, 55, 0.2); /* Glow sutil dourado */
}

.typo-anos {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 6px;
  color: #D4AF37;
  margin-top: 12px;
  text-transform: uppercase;
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.6); /* Glow sutil dourado */
}

.anniversary-text {
  flex: 1;
}

.anniversary-subtitle {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 12px;
  font-weight: 500;
}

.anniversary-title {
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 0;
  line-height: 1.2;
  letter-spacing: -0.5px;
  color: var(--white);
}

@media (min-width: 768px) {
  .anniversary-title {
    font-size: 32px;
  }
}


/* ===== PRODUCT GRID ===== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px; /* Barra branca espessa entre os cards */
  background: var(--white); /* Fundo BRANCO — cria barras brancas entre os cards */
  border-top: 1px solid #d9d9d9;
  padding-bottom: var(--nav-h);
  max-width: 100vw;
  overflow: hidden;
}

/* Media Queries for Product Grid */
@media (min-width: 768px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.product-card {
  background: var(--white);
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden; /* Contém o scroll dos swatches dentro do card */
}

.product-card a {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-card-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #f2f2f2;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  border-bottom: 1px solid #d9d9d9; /* Linha entre imagem e swatches */
}

.product-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
  /* Fase 5: Removido mix-blend-mode — ON não usa */
}

.product-card-img-wrap:hover img {
  transform: scale(1.05); /* subtle hover zoom */
}

.product-wish {
  position: absolute;
  top: 12px;
  right: 12px;
  background: transparent; /* Fase 6: Original é transparente, sem círculo branco */
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
}

.product-wish svg {
  width: 20px; /* Fase 6: Ícone maior para combinar com original */
  height: 20px;
  fill: none;
  stroke: #1a1a1a;
  stroke-width: 1.5;
}

/* Swatches — Carrossel horizontal como no original ON */
.product-swatches {
  display: flex;
  flex-wrap: nowrap;
  gap: 12px;
  padding: 14px 16px;
  background: var(--white);
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  align-items: flex-start;
  overscroll-behavior-x: contain;
  touch-action: pan-x;
  border-bottom: 1px solid #d9d9d9;
  min-height: 62px; /* Altura fixa para estabilidade visual */
}
.product-swatches::-webkit-scrollbar {
  display: none; /* Hide scrollbar Chrome/Safari */
}

.swatch {
  position: relative;
  width: 52px; /* Tamanho retangular como no original ON */
  height: 36px;
  border-radius: 4px;
  display: block;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
  border: 1px solid rgba(0,0,0,0.1);
  cursor: pointer;
  transition: opacity 0.15s ease;
  scroll-snap-align: start;
}

.swatch:hover {
  opacity: 0.75;
}

/* Indicador de seleção: linha preta abaixo do swatch */
.swatch.selected {
  border-color: rgba(0,0,0,0.15);
}

.swatch.selected::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--black);
  border-radius: 1px;
}

.product-card-body {
  padding: 0 1rem 1rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  gap: 0; /* Fase 5: Sem gap — margins individuais controlam */
}

/* Tags / Badges */
.product-tag {
  display: inline-block;
  font-size: 10px; /* Fase 5: 10px exato da ON */
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 12px; /* Fase 5: Espaço acima da tag */
  margin-bottom: 0;
  width: fit-content;
  line-height: 1.2;
  color: #a56b2d; /* Fase 5: Bronze exato da ON */
  border: 1px solid #a56b2d;
  border-radius: 2px;
  padding: 2px 6px; /* Fase 5: Padding exato */
  background: transparent;
}

/* As classes tag-new e tag-fav agora compartilham a estilização exata acima */

.product-name {
  font-size: 15px; /* Fase 5: 15px exato da ON */
  font-weight: 700;
  margin-top: 8px; /* Fase 5 */
  color: #1a1a1a; /* Fase 5 */
  line-height: 1.2;
}

.product-desc {
  font-size: 13px; /* Fase 5: 13px exato da ON */
  color: #666666; /* Fase 5: Cinza médio, não preto */
  font-weight: 400;
  margin-top: 4px; /* Fase 5 */
  line-height: 1.3;
}

.product-price {
  font-size: 14px;
  font-weight: 500;
  margin-top: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.price-original {
  text-decoration: line-through;
  color: #666666; /* Cinza médio como do texto */
  font-size: 13px;
  font-weight: 400;
}

.price-promo {
  color: #1a8b38; /* Verde destacando o brinde gratuito */
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
}

.tag-promo {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--black);
  color: #D4AF37; /* Texto dourado no fundo preto */
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  padding: 4px 8px;
  border: 1px solid #D4AF37;
  border-radius: 2px;
  z-index: 10;
}


/* ===== CAMPAIGN CARD (intersticial) ===== */
.campaign-card {
  grid-column: span 2;
  background: var(--bg-product);
  position: relative;
}

.campaign-card-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

.campaign-card-body {
  padding: 20px 16px 24px;
  text-align: center;
}

.campaign-card-title {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 6px;
}

.campaign-card-desc {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.5;
}

.campaign-card-links {
  display: flex;
  justify-content: center;
  gap: 28px;
}

.campaign-card-links a {
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 3px;
  color: var(--black);
}


/* ===== FILTER BOTTOM SHEET MODAL ===== */
.filter-bottom-sheet-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 999;
}

.filter-bottom-sheet-overlay.open {
  opacity: 1;
  visibility: visible;
}

.filter-bottom-sheet {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  border-radius: 16px 16px 0 0;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  max-height: 90vh;
}

.filter-bottom-sheet.open {
  transform: translateY(0);
}

.filter-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px 16px;
  border-bottom: 1px solid var(--border);
}

.filter-modal-header h2 {
  font-size: 18px;
  font-weight: 500;
}

.btn-filter-close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  display: flex;
}

.btn-filter-close svg {
  width: 24px;
  height: 24px;
}

.filter-modal-body {
  padding: 24px;
  overflow-y: auto;
  flex: 1;
}

.filter-group {
  margin-bottom: 32px;
}

.filter-group h3 {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.filter-radio {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  cursor: pointer;
  font-size: 16px;
  border-bottom: 1px solid var(--bg-light);
}

.filter-radio:last-child {
  border-bottom: none;
}

.filter-radio input {
  width: 20px;
  height: 20px;
  accent-color: var(--black);
}

.filter-modal-footer {
  padding: 16px 24px 24px;
  border-top: 1px solid var(--border);
  background: var(--white);
}

/* ===== BOTTOM NAV (MOBILE) ===== */
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-around;
  z-index: 90; /* Abaixo do modal e drawer */
  padding-bottom: env(safe-area-inset-bottom);
}

.bottom-nav a,
.bottom-nav button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  color: var(--black);
}

.bottom-nav svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ===== UTILITY ===== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}


/* ═══════════════════════════════════════════════════════
   PDP — PRODUCT DETAIL PAGE (MOBILE ONLY)
   ═══════════════════════════════════════════════════════ */

/* ── Page-level overrides ── */
.page-pdp .site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.page-pdp .header-logo svg {
  fill: var(--black);
}

.page-pdp .header-right {
  color: var(--black);
}


/* ── Gallery ── */
.pdp-gallery {
  position: relative;
  background: #f2f2f2;
  overflow: hidden;
}

.pdp-gallery-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.pdp-gallery-track::-webkit-scrollbar {
  display: none;
}

.pdp-gallery-slide {
  flex: 0 0 100%;
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  scroll-snap-align: start;
}

.pdp-gallery-counter {
  position: absolute;
  bottom: 16px;
  left: 16px;
  font-size: 13px;
  letter-spacing: 1px;
  color: var(--black);
  background: rgba(255,255,255,0.7);
  padding: 4px 10px;
  border-radius: 4px;
}


/* ── Info Section ── */
.pdp-info {
  padding: 20px 16px 24px;
}



.pdp-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 8px;
}

.pdp-product-name {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.15;
}

.pdp-wish-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: none;
  border: none;
  cursor: pointer;
}

.pdp-wish-btn svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: var(--black);
  stroke-width: 1.5;
}

.pdp-tag-fav {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 10px;
  border: 1px solid var(--black);
  margin-bottom: 12px;
}

.pdp-price-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.pdp-tag-off {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.5px;
  background: var(--black);
  color: var(--white);
  padding: 3px 8px;
  border-radius: 4px;
}

.pdp-price-original {
  font-size: 16px;
  text-decoration: line-through;
  color: var(--text-muted);
}

.pdp-price-promo {
  font-size: 18px;
  font-weight: 700;
  color: #1a8b38;
}

.pdp-description {
  font-size: 15px;
  line-height: 1.55;
  color: #333;
  margin-bottom: 20px;
}



/* ── Color Name ── */
.pdp-color-name {
  font-size: 14px;
  margin-bottom: 12px;
  color: var(--black);
}

/* ── Swatches ── */
.pdp-swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.pdp-swatch {
  width: 48px;
  height: 48px;
  border-radius: 4px;
  background-size: cover;
  background-position: center;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color 0.15s;
}

.pdp-swatch-active {
  border-color: var(--black);
}

/* ── Size Button ── */
.pdp-size-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 20px;
  border: 1px solid var(--black);
  border-radius: 100px;
  background: var(--white);
  font-size: 15px;
  font-weight: 400;
  color: var(--black);
  cursor: pointer;
  margin-bottom: 12px;
}

.pdp-size-btn svg {
  width: 18px;
  height: 18px;
  stroke: var(--black);
}

.pdp-size-btn.has-error {
  border-color: #d13239;
  color: #d13239;
}

.pdp-size-btn.has-error svg {
  stroke: #d13239;
}

.pdp-size-error {
  color: #d13239;
  font-size: 13px;
  font-weight: 500;
  margin-top: -8px;
  margin-bottom: 12px;
  padding-left: 12px;
  display: none;
}

/* ── CTA Button ── */
.pdp-cta {
  width: 100%;
  padding: 16px 20px;
  border-radius: 100px;
  background: var(--black);
  color: var(--white);
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  border: none;
  transition: opacity 0.15s;
}

.pdp-cta:active {
  opacity: 0.8;
}


/* ── Accordions ── */
.pdp-accordions {
  border-top: 1px solid var(--border);
}

.pdp-accordion {
  border-bottom: 1px solid var(--border);
}

.pdp-accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 18px 16px;
  background: none;
  border: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  color: var(--black);
}

.pdp-accordion-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.pdp-accordion.open .pdp-accordion-icon {
  transform: rotate(45deg);
}

.pdp-accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 16px;
}

.pdp-accordion.open .pdp-accordion-body {
  max-height: 900px;
  padding: 0 16px 18px;
}

.pdp-accordion-body p {
  font-size: 14px;
  line-height: 1.6;
  color: #444;
  margin-bottom: 6px;
}

.pdp-acc-fit {
  font-weight: 500;
  color: var(--black);
  margin-bottom: 4px;
}

.pdp-acc-guide {
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
  margin-bottom: 16px;
}

.pdp-acc-section-title {
  font-weight: 600;
  color: var(--black);
  margin-bottom: 10px;
}

.pdp-acc-scroll-hint {
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 8px;
}

/* ── Size Table (Transposed: rows = regions, cols = sizes) ── */
.pdp-size-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 0 -16px;
  padding: 0;
}

.pdp-size-table {
  border-collapse: separate;
  border-spacing: 0;
  font-size: 14px;
  min-width: 1200px;
}

.pdp-size-table th,
.pdp-size-table td {
  padding: 14px 20px;
  text-align: center;
  white-space: nowrap;
  border: none;
}

/* Sticky first column (region labels) */
.pdp-size-table-label {
  position: sticky;
  left: 0;
  z-index: 2;
  background: #d9d9d9;
  color: var(--black);
  font-weight: 600;
  font-size: 13px;
  text-align: center;
  min-width: 60px;
}

/* Zebra column striping */
.pdp-size-table td:nth-child(even) {
  background: #fff;
}

.pdp-size-table td:nth-child(odd) {
  background: #f5f5f5;
}

/* Row separator */
.pdp-size-table tr + tr th,
.pdp-size-table tr + tr td {
  border-top: 1px solid #e8e8e8;
}


/* ── Specs ── */
.pdp-specs {
  display: flex;
  flex-direction: column;
  padding: 16px 0;
}

.pdp-spec-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 16px;
  border-top: 1px solid #e5e5e5;
}

.pdp-spec-item:last-child {
  border-bottom: 1px solid #e5e5e5;
}

.pdp-spec-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  color: var(--black);
}

.pdp-spec-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.pdp-spec-label {
  font-size: 11px;
  letter-spacing: 0.05em;
  color: var(--black);
  text-transform: uppercase;
  font-weight: 400;
}

.pdp-spec-value {
  font-size: 24px;
  font-weight: 700;
  color: var(--black);
}


/* ── Features ── */
.pdp-features {
  padding: 32px 16px;
}

.pdp-features-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
}

.pdp-features-list {
  list-style: disc;
  padding-left: 20px;
}

.pdp-features-list li {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 8px;
  color: #333;
}


/* ── Tech Grid (Vertical Blocks) ── */
.pdp-tech-grid {
  padding: 0;
}

.pdp-tech-block {
  width: 100%;
  padding: 0 16px;
}

.pdp-tech-block img {
  width: 100%;
  height: auto;
  display: block;
  background: #f2f2f2;
  border-radius: 8px;
}

.pdp-tech-block-text {
  padding: 24px 16px 40px;
}

.pdp-tech-block-text h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--black);
  line-height: 1.3;
}

.pdp-tech-block-text p {
  font-size: 15px;
  line-height: 1.6;
  color: #444;
}


/* ── Size Selector Bottom Sheet ── */
.pdp-size-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.pdp-size-overlay.open {
  opacity: 1;
  visibility: visible;
}

.pdp-size-sheet {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  border-radius: 16px 16px 0 0;
  z-index: 999;
  display: flex;
  flex-direction: column;
  max-height: 85vh;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.pdp-size-sheet.open {
  transform: translateY(0);
}

.pdp-size-sheet-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 20px 16px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}

.pdp-size-sheet-title {
  font-size: 16px;
  font-weight: 500;
}

.pdp-size-sheet-close {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.pdp-size-sheet-close svg {
  width: 20px;
  height: 20px;
  stroke: var(--black);
}

.pdp-size-sheet-body {
  overflow-y: auto;
  flex: 1;
  -webkit-overflow-scrolling: touch;
}

.pdp-size-option {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 16px 20px;
  background: none;
  border: none;
  border-bottom: 1px solid var(--bg-light);
  cursor: pointer;
  gap: 16px;
  text-align: left;
  transition: background 0.15s;
}

.pdp-size-option:active {
  background: var(--bg-light);
}

.pdp-size-option.pdp-size-selected {
  background: var(--bg-light);
}

.pdp-size-num {
  font-size: 16px;
  font-weight: 400;
  color: var(--black);
  min-width: 40px;
}

.pdp-size-stock {
  font-size: 13px;
  flex: 1;
}

.pdp-size-stock.low {
  color: var(--black);
}

.pdp-size-stock.out {
  color: var(--text-muted);
}

.pdp-size-unavailable .pdp-size-num {
  color: var(--text-muted);
}

.pdp-size-bell {
  width: 20px;
  height: 20px;
  stroke: var(--text-muted);
  flex-shrink: 0;
  margin-left: auto;
}

.pdp-size-sheet-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-top: 1px solid var(--border);
  flex-shrink: 0;
  background: var(--white);
}

.pdp-size-guide {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--black);
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

.pdp-size-guide svg {
  width: 20px;
  height: 20px;
  stroke: var(--black);
}

.pdp-size-fit {
  font-size: 13px;
  color: var(--text-muted);
}

/* ===== VSL delayed content ===== */
.vsl-delayed-content {
  opacity: 0;
  pointer-events: none;
  transition: opacity 1.5s ease-in-out;
}
.vsl-delayed-content.visible {
  opacity: 1;
  pointer-events: auto;
}