/*
Theme Name:   Kadence Child — William Nuno
Template:     kadence
Version:      4.0.1
*/

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Inter:wght@300;400;500;600&display=swap');

/* ── TOKENS ─────────────────────────────────────────────── */
:root {
  --ink: #3A322C;
  /* Marrom espresso mais quente que preto */
  --charcoal: #443A34;
  --warm: #554D46;
  --mid: #8A8077;
  --soft: #B3AAA0;
  --mist: #DCD5CE;
  --cream: #FAF7F2;
  /* Fundo Creme da Loja */
  --off: #F2EDE6;
  --white: #FFFFFF;
  --gold: #CBA566;
  --gold-lt: #DFCA9D;
  --gold-dk: #A48243;
  --accent: #E85D04; /* Laranja vibrante para 'vida' */
  --ff-s: 'Cormorant Garamond', Georgia, serif;
  --ff: 'Inter', -apple-system, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 64px;
  --header-h-m: 56px;
}

/* ── ANIMATIONS ────────────────────────────────────────── */
@keyframes pulseGold {
  0% { box-shadow: 0 0 0 0 rgba(203, 165, 102, 0.4); }
  70% { box-shadow: 0 0 0 15px rgba(203, 165, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(203, 165, 102, 0); }
}

/* ── RESET ──────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--ff);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--charcoal);
  background: var(--off);
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

::selection {
  background: var(--gold);
  color: #fff;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--gold);
}

h1,
h2,
h3,
h4 {
  font-family: var(--ff-s);
  font-weight: 300;
  line-height: 1.15;
}

/* ── KILL PAGE TITLES ───────────────────────────────────── */
.entry-hero-container-inner,
.entry-header,
.page .entry-hero-layout-normal,
.page .kadence-entry-hero-section,
.page .entry-hero,
.page .entry-header .entry-title,
.single-product .entry-hero-container-inner,
.woocommerce-page .entry-hero-container-inner,
.hentry .entry-hero-container-inner,
.kadence-page-title,
.page .wp-block-post-title,
body.page .entry-hero-layout-normal {
  display: none !important;
  height: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden !important;
}

/* ── REMOVE SPECIFIC 128PX SPACER ───────────────────────── */
.wp-block-spacer[style*="height:128px"],
.wp-block-spacer[style*="height: 128px"] {
    display: none !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* ── KILL KADENCE FOOTER CREDIT & THEME BORDERS ── */
.site-info,
.site-footer:not(.wn-footer),
.kadence-info {
  display: none !important;
}

/* Global sections must be 100% width to allow full-screen backgrounds */
.site-container,
.site-inner,
.site,
#inner-wrap,
#content,
#wrapper,
.content-area,
.entry-content {
  max-width: 100% !important;
  /* padding: 0 !important; */
  /* margin: 0 !important; */
  overflow: visible !important;
  overflow-x: visible !important;
  width: 100% !important;
}

/* Ensure blocks inside content are properly stretched */
.entry-content > .wp-block-group,
.entry-content > .wp-block-kadence-rowlayout {
  padding-left: 0 !important;
  padding-right: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
}

/* Fallback: hide any h1 that says "Home" etc inside a title container */
.entry-content>h1:first-child {
  display: none !important;
}

.section-label {
  font-family: var(--ff);
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

/* ══════════════════════════════════════════════════════════
   HEADER — COMPACT, TRANSPARENT ON HERO (HOME ONLY)
   ══════════════════════════════════════════════════════════ */
html {
  margin-top: 0 !important;
}

#wpadminbar {
  display: none !important;
}

#masthead,
.site-header,
header.site-header {
  position: fixed !important;
  top: var(--wn-topbar-h, 28px);
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--cream) !important;
  border-bottom: 1px solid rgba(200, 194, 188, 0.82) !important;
  transition: top 0.35s ease, background 0.5s var(--ease), padding 0.5s var(--ease), height 0.5s var(--ease);
  padding: 0 !important;
}

/* Header spacing handled by PHP spacer in functions.php */
#page {
  background: var(--cream);
}

body {
  background: var(--cream) !important;
  color: var(--ink);
}

/* Mobile spacing */
@media (max-width: 768px) {
  /* PHP spacer handles the offset dynamically */
}

/* When scrolled on any page, make it slightly compact */
body.header-scrolled #masthead,
body.header-scrolled .site-header {
  background: var(--cream) !important;
  border-bottom: 1px solid rgba(200, 194, 188, 0.82) !important;
}

.site-header .site-header-inner-wrap,
.site-header .site-header-wrap {
  max-width: 100% !important;
  padding: 0 3rem !important;
  height: var(--header-h) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  transition: height 0.4s var(--ease);
}

@media (max-width: 768px) {

  .site-header .site-header-inner-wrap,
  .site-header .site-header-wrap {
    padding: 0 1.5rem !important;
    height: var(--header-h-m) !important;
  }
}

body.header-scrolled .site-header .site-header-inner-wrap,
body.header-scrolled .site-header .site-header-wrap {
  height: 60px !important;
}

/* Force elements inside header to align properly */
.site-branding,
.site-logo {
  display: flex !important;
  align-items: center !important;
  margin: 0 !important;
  padding: 0 !important;
}

.site-branding .site-title,
.site-branding .site-title a {
  font-family: var(--ff-s) !important;
  font-size: 1.25rem !important;
  font-weight: 400 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  color: var(--ink) !important;
  /* DARK LOGO IN HEADER */
  line-height: 1 !important;
  margin: 0 !important;
  padding: 0 !important;
  transition: color 0.3s ease;
}

/* ── NAV COMPLETA RESTAURADA ─────────────────── */

/* Global Header Layout Rules to prevent wrapping */
.site-header-row-layout-main .site-header-inner-wrap {
  display: flex !important;
  flex-wrap: nowrap !important;
  /* Prevent menu from falling to second line */
  align-items: center !important;
  justify-content: space-between !important;
}

/* Desktop Navigation (Above 1024px) */
@media (min-width: 1025px) {

  .header-navigation,
  .main-navigation,
  .site-header-row-layout-main [data-section="primary-navigation"] {
    display: flex !important;
    align-items: center !important;
  }

  /* Hide Mobile Trigger on Desktop */
  .site-header-inner-wrap #mobile-toggle,
  .site-header-inner-wrap .mobile-toggle-wrapper,
  .site-header-inner-wrap [data-section="mobile-trigger"] {
    display: none !important;
  }
}

/* Ensure only one header row is ever visible and force single row layout */
.site-header-row-layout-top,
.site-header-row-layout-bottom,
.site-mobile-header-wrap+.site-header-wrap,
.site-header-wrap+.site-mobile-header-wrap {
  display: none !important;
}

/* Force the main header row to be the only one */
.site-header-row-layout-main {
  display: block !important;
}

/* Tablet and Mobile Navigation (Below 1024px) */
@media (max-width: 1024px) {

  /* Hide Desktop Navigation on Mobile */
  .header-navigation,
  .main-navigation,
  .site-header-row-layout-main [data-section="primary-navigation"],
  .site-header-section-center {
    display: none !important;
  }

  /* Alignment Fix: Mobile Trigger should be in the same row as Icons */
  .site-header-row-layout-main .site-header-inner-wrap {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    flex-wrap: nowrap !important;
    height: var(--header-h-m) !important;
  }

  /* Force logo and trigger to stay on the same line */
  .site-header-section-left,
  .site-header-section-right {
    display: flex !important;
    align-items: center !important;
    flex: 1 !important;
  }

  .site-header-section-right {
    justify-content: flex-end !important;
  }

  /* Styling the hamburger for a premium look */
  #mobile-toggle,
  .mobile-toggle-wrapper,
  [data-section="mobile-trigger"] {
    background: transparent !important;
    border: none !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    width: 32px !important;
    height: 32px !important;
    padding: 0 !important;
    margin: 0 !important;
    margin-left: 1rem !important;
    order: 10;
  }

  /* CRITICAL: Fix Double Logo */
  /* Ensure ONLY the branding in the LEFT section is visible */
  .site-header-section-center .site-branding,
  .site-header-section-right .site-branding,
  [data-section="mobile-trigger"] .site-branding {
    display: none !important;
  }

  .site-header-section-left .site-branding {
    display: flex !important;
    max-width: 160px !important;
  }
}

/* Reseta o design das linhas do cabeçalho caso o Kadence injete cores (para evitar "parada azul") */
.site-header-row-layout-top,
.site-header-row-layout-main,
.site-header-row-layout-bottom {
  background: transparent !important;
}

/* Ocultar apensa elementos irrelevantes do Kadence (Search, Cart originais se houver, pois já tem os custom) */
.site-header-inner-wrap .header-account-custom,
.site-header-inner-wrap .header-search-custom {
  display: none !important;
}

/* Esconde apenas a bottom bar de navegação secundária se tiver */
.site-header-row-layout-bottom {
  display: none !important;
}

/* Permite o layout padrão de flexbox do Kadence no header main */
.site-header-row-layout-main .site-header-section-center {
  justify-content: center !important;
  flex-grow: 1 !important;
}

.header-navigation .menu,
.main-navigation .menu {
  display: flex !important;
  align-items: center !important;
  margin: 0 !important;
  padding: 0 !important;
}

.header-navigation .menu>li,
.main-navigation .menu>li {
  display: flex !important;
  align-items: center !important;
  margin: 0 !important;
}

.header-navigation .menu>li>a,
.main-navigation .menu>li>a {
  color: var(--warm) !important;
  /* DARK LINKS IN HEADER */
  line-height: 1 !important;
  padding: 0.5rem 1rem !important;
}

.wn-icon {
  color: var(--warm) !important;
}

/* O script header.js pode injetar logo se necessário, mas por padrão usaremos o CSS padrão com logo dark */
.wn-logo-light {
  display: none !important;
}

.site-branding .site-description {
  display: none !important;
}

/* ── NAV ────────────────────────────────────────────────── */
.header-navigation .menu>li>a,
.main-navigation .menu>li>a {
  font-family: var(--ff) !important;
  font-size: 0.6875rem !important;
  font-weight: 400 !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
  color: var(--warm) !important;
  padding: 0.375rem 0.875rem !important;
  position: relative;
}

.header-navigation .menu>li>a::after,
.main-navigation .menu>li>a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 1px;
  background: var(--gold);
  transform: translateX(-50%);
  transition: width 0.3s var(--ease);
}

.header-navigation .menu>li>a:hover::after {
  width: 50%;
}

.header-navigation .menu>li>a:hover {
  color: var(--gold) !important;
}

/* Dropdown */
.header-navigation .menu li .sub-menu,
.main-navigation .menu li .sub-menu {
  background: var(--white) !important;
  border: 1px solid rgba(200, 194, 188, 0.3) !important;
  border-radius: 0 !important;
  box-shadow: 0 8px 28px rgba(26, 22, 20, 0.06) !important;
  padding: 0.5rem 0 !important;
  min-width: 200px;
}

.header-navigation .menu li .sub-menu li a {
  font-size: 0.6875rem !important;
  letter-spacing: 0.06em !important;
  text-transform: none !important;
  color: var(--warm) !important;
  padding: 0.4rem 1.25rem !important;
}

.header-navigation .menu li .sub-menu li a:hover {
  color: var(--gold) !important;
  background: rgba(184, 150, 90, 0.04) !important;
}

/* ══════════════════════════════════════════════════════════
   HERO — ~100VH, VIDEO BACKGROUND
   ══════════════════════════════════════════════════════════ */
.section-hero, .section-hero.section--dark, .wn-dynamic-hero-block {
    background: var(--cream);
    min-height: 90vh;
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 !important;
    position: relative;
    overflow: hidden;
    max-width: 100vw !important;
    position: relative !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    margin: 0 !important;
}

/* Makes sure hero text components stack above SVG */
.section-hero>*:not(.wn-hero-video-bg) {
  /* position: relative; */
  z-index: 2;
}

/* Ambient Video Background Layer */
.wn-hero-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 90%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.wn-hero-video-bg video {
  min-width: 100%;
  min-height: 100%;
  width: 100vw;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transform-origin: center center;
  animation: cinematicZoomVideo 20s ease-in-out infinite alternate;
}

.wn-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 22, 20, 0.32);
  /* Darker overlay for hero text legibility */
  z-index: 1;
}

@keyframes cinematicZoomVideo {
  0% {
    transform: scale(1.15) translateY(5%);
  }

  /* Cortando a marca d'agua no bottom */
  100% {
    transform: scale(1.22) translateY(5%);
  }
}

.section-hero .bg-zoom-wrapper {
  position: absolute;
  inset: -5%;
  /* slightly larger to allow scaling */
  width: 110%;
  height: 110%;
  background-image: inherit;
  background-size: cover;
  background-position: center;
  animation: cinematicZoom 20s ease-in-out infinite alternate;
  z-index: 0;
}

.section-hero {
  background-image: none !important;
}

@keyframes cinematicZoom {
  0% {
    transform: scale(1) translate(0, 0);
  }

  100% {
    transform: scale(1.08) translate(-1%, -1%);
  }
}

/* Second glow — upper left warmth */
.section-hero::after {
  content: '';
  position: absolute;
  top: 20%;
  left: 15%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle,
      rgba(212, 184, 122, 0.06) 0%,
      transparent 60%);
  animation: candleGlow 6s ease-in-out 1s infinite alternate;
  pointer-events: none;
}

@keyframes candleGlow {
  0% {
    opacity: 0.5;
    transform: translateX(-50%) scale(1);
  }

  50% {
    opacity: 1;
    transform: translateX(-50%) scale(1.08);
  }

  100% {
    opacity: 0.7;
    transform: translateX(-50%) scale(1.03);
  }
}

/* Floating cinematic particles (ash/sparkles) */
.wn-sparkle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: rgba(255, 230, 180, 0.8);
  border-radius: 50%;
  box-shadow: 0 0 8px 2px rgba(212, 184, 122, 0.6);
  opacity: 0;
  animation: sparkleFloat 8s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}

/* Floating sparkles */
.wn-sparkle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--gold-lt);
  border-radius: 50%;
  opacity: 0;
  animation: sparkle 6s ease-in-out infinite;
  pointer-events: none;
}

.wn-sparkle:nth-child(1) {
  top: 25%;
  left: 20%;
  animation-delay: 0s;
}

.wn-sparkle:nth-child(2) {
  top: 40%;
  right: 25%;
  animation-delay: 1.5s;
}

.wn-sparkle:nth-child(3) {
  top: 60%;
  left: 35%;
  animation-delay: 3s;
}

.wn-sparkle:nth-child(4) {
  top: 30%;
  right: 15%;
  animation-delay: 4.5s;
}

.wn-sparkle:nth-child(5) {
  top: 55%;
  left: 10%;
  animation-delay: 2s;
}

@keyframes sparkleFloat {
  0% {
    opacity: 0;
    transform: scale(0.5) translate(0, 0);
  }

  30% {
    opacity: 0.8;
    transform: scale(1) translate(10px, -20px);
  }

  70% {
    opacity: 0.5;
    transform: scale(0.8) translate(-5px, -50px);
  }

  100% {
    opacity: 0;
    transform: scale(0.2) translate(15px, -80px);
  }
}

/* Hero content layered above animation */
.section-hero>* {
  /* position: relative; */
  z-index: 2;
}

.section-hero .section-label {
  animation: fadeUp 0.8s var(--ease) 0.3s both;
}

.section-hero h1,
.section-hero h2 {
  font-size: clamp(2.5rem, 5vw, 4.5rem) !important;
  font-weight: 300 !important;
  color: var(--ink) !important;
  /* MUDANÇA: Texto Escuro no fundo claro */
  animation: fadeUp 0.8s var(--ease) 0.5s both;
  max-width: 680px;
}

.section-hero p {
  color: var(--warm) !important;
  /* MUDANÇA: Texto texto descritivo mais escuro */
  font-size: 1.125rem !important;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeUp 0.8s var(--ease) 0.7s both;
}

.section-hero .wp-block-buttons {
  animation: fadeUp 0.8s var(--ease) 0.9s both;
}

/* Global row and block spacing — tight flow */
.wp-block-kadence-rowlayout {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}

/* Remover espaçamento e listras brancas entre seções principais */
.entry-content>*,
.wp-block-group.section-hero,
.wp-block-group.section-hero+* {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.wn-vitrine {
  margin-top: 0 !important;
  padding-top: 3rem !important;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── BUTTONS ────────────────────────────────────────────── */
.wp-block-button .wp-block-button__link {
  font-family: var(--ff) !important;
  font-size: 0.6875rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.2em !important;
  text-transform: uppercase !important;
  background: transparent !important;
  color: var(--gold) !important;
  border: 1px solid var(--gold) !important;
  padding: 0.875rem 2.25rem !important;
  border-radius: 0 !important;
  position: relative;
  overflow: hidden;
  transition: all 0.4s var(--ease) !important;
}

.wp-block-button .wp-block-button__link::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
  z-index: -1;
}

.wp-block-button .wp-block-button__link:hover {
  color: #fff !important;
}

.wp-block-button .wp-block-button__link:hover::before {
  transform: scaleX(1);
}

.btn-secondary .wp-block-button__link {
  color: var(--charcoal) !important;
  border-color: var(--charcoal) !important;
}

.btn-secondary .wp-block-button__link::before {
  background: var(--charcoal);
}

/* ── SECTIONS ───────────────────────────────────────────── */
.section {
  padding: 3rem 2rem;
}

.section--dark {
  background: var(--ink);
  color: #fff;
}

.section--warm {
  background: var(--cream);
}

/* Hide 80px spacers — too much breathing, creates fatiguing scroll */
.wp-block-spacer[style*="height: 80px"],
.wp-block-spacer[style*="height:80px"],
.wp-block-spacer[style*="height: 64px"],
.wp-block-spacer[style*="height:64px"] {
  display: none !important;
}

/* Tighten "A marca" section heading */
.section h2:not(.wn-vitrine-title):not(.wn-showcase-title) {
  font-size: clamp(1.75rem, 4vw, 2.5rem) !important;
  margin-bottom: 1rem !important;
}

/* Scroll reveal */
.wp-block-group:not(.section-hero),
.wp-block-columns {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.wp-block-group.in-view:not(.section-hero),
.wp-block-columns.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ── PRODUCT CARDS — Refined white card with info section ──── */
.woocommerce ul.products li.product {
  background: var(--white);
  border: 1px solid rgba(200, 194, 188, 0.18);
  padding: 0;
  text-align: center;
  transition: all 0.4s var(--ease);
  overflow: hidden;
  position: relative;
}

.woocommerce ul.products li.product:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(26, 22, 20, 0.06);
}

.woocommerce ul.products li.product a img {
  transition: transform 0.6s var(--ease);
}

.woocommerce ul.products li.product:hover a img {
  transform: scale(1.015);
}

.wn-collection-badge {
  font-family: var(--ff) !important;
  font-size: 0.5rem !important;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold) !important;
  padding: 0.875rem 1rem 0 !important;
}

/* Title + price — always visible, centered */
.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-family: var(--ff-s) !important;
  font-size: 1.125rem !important;
  font-weight: 400 !important;
  padding: 0.5rem 1.5rem 0 !important;
  margin: 0 !important;
  opacity: 1 !important;
  transform: none !important;
}

.woocommerce ul.products li.product .price {
  font-family: var(--ff) !important;
  font-size: 0.875rem !important;
  color: var(--gold-dk) !important;
  padding: 0 1.5rem 0 !important;
  margin: 0 !important;
  opacity: 1 !important;
  transform: none !important;
}

/* Estrelas na vitrine — minimalistas */
.wn-loop-stars {
  display: flex;
  justify-content: center;
  gap: 2px;
  padding: 0.5rem 0 0;
  margin: 0 1.5rem 1.25rem;
  color: var(--gold);
  line-height: 1;
}

.wn-loop-stars svg {
  display: block;
  width: 12px;
  height: 12px;
}

/* Badge "Olfactory Collection I" */
.wn-card-profile {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.5rem 0;
  margin: 0 1.5rem;
  border-bottom: 1px solid rgba(200, 194, 188, 0.18);
  margin-bottom: 0.5rem;
}

.wn-card-profile svg {
  color: var(--gold);
}

.wn-card-profile span {
  font-family: var(--ff);
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--soft);
}

.wn-card-icons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  padding: 0 1rem;
  margin-bottom: 1.25rem;
}

.wn-icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
}

.wn-icon-item svg {
  width: 15px;
  height: 15px;
  color: var(--soft);
}

.wn-icon-item span {
  font-family: var(--ff) !important;
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--soft);
  line-height: 1.3;
  text-align: center;
  max-width: 100px;
}

/* CTA — smaller, centered, inside card */
.woocommerce ul.products li.product .button {
  font-family: var(--ff) !important;
  font-size: 0.5625rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
  background: var(--ink) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 0 !important;
  padding: 0.5rem 1.5rem !important;
  width: auto !important;
  display: inline-block !important;
  margin: 2rem auto 2rem !important;
  opacity: 1 !important;
  transform: none !important;
  transition: background 0.3s ease !important;
}

.woocommerce ul.products li.product .button:hover {
  background: var(--gold) !important;
  color: #fff !important;
}

/* ── SINGLE PRODUCT PAGE — Details ──────────────────────── */
.single-product .woocommerce-product-gallery {
  overflow: visible !important;
}

/* Force image to look more photographic — subtle grain */
.single-product .woocommerce-product-gallery__image img {
  filter: contrast(1.02) saturate(0.97);
}

/* Single product image fills 50% on desktop */
@media (min-width: 992px) {
  .single-product .product .images {
    padding-right: 3rem !important;
  }
  .single-product .product .product_title {
    font-size: 2.5rem !important;
  }
}

/* Detail sections layout */
.wn-product-details {
  margin-top: 3rem;
  animation: fadeUp 0.6s var(--ease) forwards;
}

.wn-detail-section {
  padding: 2.5rem 0;
  border-bottom: 1px solid rgba(200, 194, 188, 0.25);
}

.wn-detail-section:last-child {
  border-bottom: none;
}

.wn-detail-title {
  font-family: var(--ff-s);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--ink);
  margin: 0 0 1.25rem;
  letter-spacing: 0.02em;
}

.wn-vision-text {
  font-family: var(--ff-s);
  font-size: 1.0625rem;
  font-weight: 300;
  font-style: italic;
  line-height: 1.75;
  color: var(--warm);
  margin: 0 0 2rem;
}

/* Pyramid */
.wn-pyramid {
  border-top: 1px solid rgba(200, 194, 188, 0.3);
  padding-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.wn-pyramid-label {
  font-family: var(--ff);
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--soft);
  margin-bottom: 1rem;
}

.wn-pyramid-row {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  padding: 0.5rem 0;
}

.wn-pyramid-level {
  font-family: var(--ff);
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  min-width: 72px;
}

.wn-pyramid-sep {
  color: var(--mist);
  font-size: 0.75rem;
}

.wn-pyramid-value {
  font-family: var(--ff-s);
  font-size: 0.9375rem;
  font-weight: 400;
  color: var(--charcoal);
}

/* Family badge */
.wn-detail-family {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border: 1px solid var(--gold);
  border-radius: 2px;
}

.wn-family-label {
  font-family: var(--ff);
  font-size: 0.5rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--soft);
}

.wn-family-value {
  font-family: var(--ff);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--ink);
}

/* Atributes table */
.wn-attrs-table {
  width: 100%;
  max-width: 360px;
  border-collapse: collapse;
}

.wn-attrs-table tr {
  border-bottom: 1px solid rgba(200, 194, 188, 0.15);
}

.wn-attrs-label {
  font-family: var(--ff);
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--soft);
  padding: 0.75rem 1.25rem 0.75rem 0;
  white-space: nowrap;
}

.wn-attrs-value {
  font-family: var(--ff);
  font-size: 0.8125rem;
  color: var(--charcoal);
  padding: 0.75rem 0 0.75rem 1.25rem;
}

/* Related products custom title */
.woocommerce .related h2,
.woocommerce .up-sells h2 {
  font-family: var(--ff-s) !important;
  font-size: 1.5rem !important;
  text-align: center !important;
  color: var(--ink) !important;
  margin-bottom: 2rem !important;
}

/* ── VITRINE DE PRODUTOS ───────────────────────────────── */
.wn-vitrine {
  background: var(--cream) !important;
  padding: 3rem 2rem 4rem;
  border-top: none !important;
  text-align: center;
}

.wn-vitrine-title {
  font-family: var(--ff-s);
  font-size: 2rem;
  font-weight: 300;
  color: var(--ink);
  margin-bottom: 0.375rem;
  margin-top: 0 !important;
}

.wn-vitrine-subtitle {
  font-family: var(--ff);
  font-size: 0.8125rem;
  color: var(--mid);
  margin-bottom: 2.5rem;
  max-width: 520px;
  margin-inline: auto;
}

.wn-vitrine .products {
  margin: 0 auto !important;
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
  gap: 1.5rem !important;
  max-width: 1200px !important;
}

.wn-vitrine li.product {
  background: transparent;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0;
  flex: 0 1 320px !important;
  max-width: 320px !important;
}

.wn-vitrine li.product:hover {
  transform: translateY(-2px);
}

/* ── SINGLE PRODUCT ─────────────────────────────────────── */
.single-product .product .product_title {
  font-family: var(--ff-s) !important;
  font-size: 2.25rem !important;
  font-weight: 300 !important;
}

.single-product .product .price {
  font-family: var(--ff) !important;
  font-size: 1.375rem !important;
  color: var(--gold-dk) !important;
}

/* Add to Cart Layout Fix */
.single-product .product form.cart {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  margin: 2rem 0 !important;
}

/* ── BREADCRUMBS & TITLES (FIX OVERLAP) ────────────────── */
.woocommerce-breadcrumb,
.kadence-breadcrumbs-container {
  margin-top: 1rem !important;
  margin-bottom: 2rem !important;
  position: relative;
  z-index: 10;
}

.single-product .product_title,
.archive .page-title {
  margin-top: 0.5rem !important;
}

.single-product .quantity {
  margin: 0 !important;
  padding: 0 !important;
}

.single-product .quantity input.qty {
  width: 64px !important;
  height: 52px !important;
  border: 1px solid var(--mist) !important;
  background: var(--white) !important;
  color: var(--ink) !important;
  border-radius: 0 !important;
  font-family: var(--ff) !important;
  font-size: 0.875rem !important;
  text-align: center !important;
  padding: 0 !important;
}

.single-product .single_add_to_cart_button {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  height: 52px !important;
  font-family: var(--ff) !important;
  font-size: 0.6875rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.2em !important;
  text-transform: uppercase !important;
  background: var(--ink) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 0 !important;
  padding: 0 3rem !important;
  line-height: 1 !important;
  transition: background 0.3s ease !important;
  cursor: pointer;
}

.single-product .single_add_to_cart_button:hover {
  background: var(--gold) !important;
}

/* ── TABS — clean, no borders, spacious ────────────────── */
.single-product .woocommerce-tabs.wc-tabs-wrapper,
.single-product .woocommerce-tabs {
  border: none !important;
  box-shadow: none !important;
  margin-top: 3rem;
}

.single-product .woocommerce-tabs ul.wc-tabs {
  display: flex !important;
  justify-content: center;
  gap: 2.5rem;
  border-bottom: 1px solid var(--mist);
  margin-bottom: 0;
  padding: 0;
  list-style: none;
}

.single-product .woocommerce-tabs ul.wc-tabs li {
  margin: 0;
  padding: 0 0 0;
  background: transparent !important;
  border: none !important;
}

.single-product .woocommerce-tabs ul.wc-tabs li a {
  font-family: var(--ff) !important;
  font-size: 0.6875rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
  color: var(--soft) !important;
  padding: 1.25rem 0 !important;
  display: block;
  border-bottom: 2px solid transparent;
  border-top: none !important;
  border-left: none !important;
  border-right: none !important;
  border-radius: 0 !important;
  background: transparent !important;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.single-product .woocommerce-tabs ul.wc-tabs li.active a,
.single-product .woocommerce-tabs ul.wc-tabs li.active a:hover {
  color: var(--gold) !important;
  border-bottom-color: var(--gold);
}

.single-product .woocommerce-tabs ul.wc-tabs li a:hover {
  color: var(--charcoal) !important;
}

.single-product .woocommerce-Tabs-panel {
  padding: 2.5rem 0;
}

/* Tab sub-heading: serif, elegant */
h3.wn-tab-heading {
  font-family: var(--ff-s) !important;
  font-size: 1.375rem;
  font-weight: 400;
  color: var(--ink);
  margin: 0 0 1.5rem;
  letter-spacing: 0.02em;
}

h3.wn-tab-heading:not(:first-child) {
  margin-top: 2.5rem;
}

/* ── REVIEWS / AVALIAÇÕES ──────────────────────────────── */
.single-product .woocommerce-Reviews .comment-reply-title,
.single-product .woocommerce-Reviews .woocommerce-Reviews-title {
  font-family: var(--ff-s) !important;
  font-size: 1.75rem !important;
  font-weight: 300 !important;
  color: var(--ink);
  text-align: center;
  display: block;
  width: 100%;
  letter-spacing: 0.03em;
  margin-bottom: 1rem;
}

.single-product #reviews .commentlist,
.single-product .woocommerce-Reviews .commentlist {
  max-width: 720px;
  margin: 0 auto 3rem;
}

.single-product .woocommerce-Reviews .comment-form {
  max-width: 560px;
  margin: 0 auto;
  padding: 0;
}

.single-product .woocommerce-Reviews .comment-form label {
  font-family: var(--ff) !important;
  font-size: 0.6875rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  color: var(--mid);
  display: block;
  margin-bottom: 0.5rem;
}

.single-product .woocommerce-Reviews .comment-form textarea,
.single-product .woocommerce-Reviews .comment-form input[type="text"],
.single-product .woocommerce-Reviews .comment-form input[type="email"] {
  border: 1px solid var(--mist);
  border-radius: 0 !important;
  background: var(--white);
  padding: 1rem !important;
  font-family: var(--ff) !important;
  font-size: 0.875rem;
  color: var(--charcoal);
  width: 100%;
  transition: border-color 0.3s ease;
}

.single-product .woocommerce-Reviews .comment-form textarea:focus,
.single-product .woocommerce-Reviews .comment-form input[type="text"]:focus,
.single-product .woocommerce-Reviews .comment-form input[type="email"]:focus {
  border-color: var(--gold);
  outline: none;
  box-shadow: 0 0 0 3px rgba(203, 165, 102, 0.08);
}

.single-product .woocommerce-Reviews .comment-form input[type="submit"] {
  font-family: var(--ff) !important;
  font-size: 0.6875rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.2em !important;
  text-transform: uppercase !important;
  background: var(--ink) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 0 !important;
  padding: 1.125rem 3rem !important;
  cursor: pointer;
  transition: background 0.3s ease;
  width: 100% !important;
  max-width: 280px;
  display: block;
  margin: 2rem auto 0;
  position: relative;
}

.single-product .woocommerce-Reviews .comment-form input[type="submit"]:hover {
  background: var(--gold) !important;
}

.single-product .woocommerce-Reviews .comment-form input[type="submit"]::after {
  content: ' \2192';
}

.single-product .woocommerce-Reviews .comment-form p.form-submit {
  text-align: center;
}

/* ── RELATED PRODUCTS — gap between icons and add button ─ */
.woocommerce .related ul.products li.product .button,
.woocommerce ul.products li.product .button {
  margin-top: 1rem !important;
}

/* Additional breathing room for cards with icon rows */
.woocommerce ul.products li.product .wn-card-icons {
  margin-bottom: 1rem;
}

.woocommerce ul.products li.product .wn-card-footer {
  margin-bottom: 1.5rem;
}

/* Related products section spacing */
.single-product .related.products {
  margin-top: 3rem !important;
}

.single-product .related.products h2 {
  font-family: var(--ff-s) !important;
  font-size: 1.75rem !important;
  font-weight: 300 !important;
  text-align: center !important;
  color: var(--ink) !important;
  margin-bottom: 2.5rem !important;
}

/* ── SOCIAL SHARE ───────────────────────────────────────── */
.wn-social-share {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.wn-share-label {
  font-family: var(--ff);
  font-size: 0.6875rem;
  font-weight: 400;
  color: var(--mid);
  margin-right: 0.25rem;
}

.wn-share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--mist);
  background: transparent;
  color: var(--soft);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 0;
}

.wn-share-btn:hover {
  color: var(--gold);
  border-color: var(--gold);
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .single-product .woocommerce-tabs ul.wc-tabs {
    gap: 1rem;
  }
  .single-product .woocommerce-tabs ul.wc-tabs li a {
    font-size: 0.6rem !important;
    letter-spacing: 0.1em !important;
    padding: 1rem 0 !important;
  }
  .wn-social-share {
    justify-content: center;
  }
}

/* ── DIFFERENTIALS — flat, typographic ─────────────────── */
.differentials-grid {
  gap: 2.5rem !important;
}

.differentials-grid .wp-block-column {
  text-align: center;
  padding: 2rem 3rem;
  background: transparent;
  border: none;
  transition: opacity 0.3s var(--ease);
}

.differentials-grid .wp-block-column:hover {
  opacity: 0.7;
}

.differential-item__title {
  font-family: var(--ff) !important;
  font-size: 0.625rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.2em !important;
  text-transform: uppercase !important;
}

.differential-item__text {
  font-size: 0.8125rem;
  color: var(--mid);
  line-height: 1.6;
}

/* ══════════════════════════════════════════════════════════
   LOGIN / MY ACCOUNT — PREMIUM LUXURY CARD
   ══════════════════════════════════════════════════════════ */
.woocommerce-account .woocommerce {
  max-width: 1100px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

/* Unified Premium Card Layout */
#customer_login {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--white);
  border: 1px solid rgba(200, 194, 188, 0.3);
  box-shadow: 0 20px 60px rgba(26, 22, 20, 0.06);
  border-radius: 4px;
  overflow: hidden;
}

#customer_login .u-column1,
#customer_login .u-column2 {
  width: 100% !important;
  float: none !important;
  padding: 4rem 3rem;
  background: transparent;
  margin: 0 !important;
}

#customer_login .u-column2 {
  background: var(--off);
  border-left: 1px solid rgba(200, 194, 188, 0.3);
}

/* Form headings */
#customer_login h2,
.woocommerce-account h2 {
  font-family: var(--ff-s) !important;
  font-size: 2rem !important;
  font-weight: 300 !important;
  margin-bottom: 2rem;
  color: var(--charcoal);
  text-align: center;
}

/* Remove ugly container borders inherited from woo */
.woocommerce form.login,
.woocommerce form.register {
  border: none !important;
  padding: 0 !important;
  margin: 0 !important;
  box-shadow: none !important;
  background: transparent !important;
}

/* Labels */
#customer_login .form-row label {
  font-family: var(--ff);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 0.5rem;
  display: block;
}

/* Inputs */
#customer_login input.input-text {
  border: 1px solid var(--mist) !important;
  border-radius: 0 !important;
  padding: 1rem !important;
  font-family: var(--ff);
  font-size: 0.875rem;
  background: var(--white);
  transition: all 0.2s ease;
  width: 100%;
}

#customer_login .u-column2 input.input-text {
  background: var(--off);
}

#customer_login input.input-text:focus {
  border-color: var(--gold) !important;
  outline: none;
  box-shadow: 0 0 0 3px rgba(184, 150, 90, 0.1);
  background: var(--white);
}

/* Submit buttons */
#customer_login .button {
  font-family: var(--ff) !important;
  font-size: 0.75rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.2em !important;
  text-transform: uppercase !important;
  background: var(--ink) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 0 !important;
  padding: 1.25rem 2rem !important;
  width: 100%;
  cursor: pointer;
  transition: background 0.3s ease !important;
  margin-top: 1rem;
}

#customer_login .button:hover {
  background: var(--gold) !important;
}

/* Nextend Social Login buttons override */
.nsl-container {
  margin-bottom: 2rem !important;
  text-align: center;
}

.nsl-container-block .nsl-button {
  border-radius: 0 !important;
  box-shadow: none !important;
  border: 1px solid var(--mist) !important;
  width: 100% !important;
  margin: 0 !important;
}

/* "Or" Divider for Nextend plugin */
.nsl-separator {
  display: flex !important;
  align-items: center !important;
  gap: 1rem !important;
  margin: 1.5rem 0 !important;
  color: var(--soft) !important;
  font-size: 0.6875rem !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  clear: both !important;
}

.nsl-separator::before,
.nsl-separator::after {
  content: '' !important;
  flex: 1 !important;
  height: 1px !important;
  background: var(--mist) !important;
}

/* Mobile responsive login card */
@media (max-width: 768px) {
  #customer_login {
    grid-template-columns: 1fr;
  }

  #customer_login .u-column1,
  #customer_login .u-column2 {
    padding: 3rem 1.5rem;
  }

  #customer_login .u-column2 {
    border-left: none;
    border-top: 1px solid rgba(200, 194, 188, 0.3);
  }
}

/* ── MY ACCOUNT DASHBOARD ───────────────────────────────── */
.woocommerce-account .woocommerce {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

/* Sidebar Layout for Desktop */
@media (min-width: 992px) {
  .woocommerce-account .woocommerce {
    display: flex !important;
    gap: 5rem;
    align-items: flex-start;
  }
  .woocommerce-account .woocommerce-MyAccount-navigation {
    width: 260px !important;
    flex-shrink: 0;
    position: sticky;
    top: 120px;
  }
  .woocommerce-account .woocommerce-MyAccount-content {
    flex-grow: 1;
    width: auto !important;
  }
}

.woocommerce-account .woocommerce-MyAccount-navigation ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li {
  margin: 0;
  border-bottom: 1px solid rgba(200, 194, 188, 0.2);
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li a {
  font-family: var(--ff) !important;
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 1.25rem 0.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.3s var(--ease);
  color: var(--mid) !important;
  position: relative;
}

/* Icons via SVG Mask */
.woocommerce-account .woocommerce-MyAccount-navigation ul li a::before {
  content: '';
  width: 16px;
  height: 16px;
  background-color: currentColor;
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
}

/* Specific Icons */
.woocommerce-MyAccount-navigation-link--dashboard a::before { mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect x="3" y="3" width="7" height="7"></rect><rect x="14" y="3" width="7" height="7"></rect><rect x="14" y="14" width="7" height="7"></rect><rect x="3" y="14" width="7" height="7"></rect></svg>'); -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect x="3" y="3" width="7" height="7"></rect><rect x="14" y="3" width="7" height="7"></rect><rect x="14" y="14" width="7" height="7"></rect><rect x="3" y="14" width="7" height="7"></rect></svg>'); }
.woocommerce-MyAccount-navigation-link--orders a::before { mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M6 2L3 6v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V6l-3-4z"></path><line x1="3" y1="6" x2="21" y2="6"></line><path d="M16 10a4 4 0 0 1-8 0"></path></svg>'); -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M6 2L3 6v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V6l-3-4z"></path><line x1="3" y1="6" x2="21" y2="6"></line><path d="M16 10a4 4 0 0 1-8 0"></path></svg>'); }
.woocommerce-MyAccount-navigation-link--assinatura a::before { mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polygon points="12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2"></polygon></svg>'); -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polygon points="12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2"></polygon></svg>'); }
.woocommerce-MyAccount-navigation-link--edit-address a::before { mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z"></path><circle cx="12" cy="10" r="3"></circle></svg>'); -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z"></path><circle cx="12" cy="10" r="3"></circle></svg>'); }
.woocommerce-MyAccount-navigation-link--edit-account a::before { mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2"></path><circle cx="12" cy="7" r="4"></circle></svg>'); -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2"></path><circle cx="12" cy="7" r="4"></circle></svg>'); }
.woocommerce-MyAccount-navigation-link--customer-logout a::before { mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M9 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h4"></path><polyline points="16 17 21 12 16 7"></polyline><line x1="21" y1="12" x2="9" y2="12"></line></svg>'); -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M9 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h4"></path><polyline points="16 17 21 12 16 7"></polyline><line x1="21" y1="12" x2="9" y2="12"></line></svg>'); }

.woocommerce-account .woocommerce-MyAccount-navigation ul li a:hover,
.woocommerce-account .woocommerce-MyAccount-navigation ul li.is-active a {
  color: var(--gold) !important;
  background: var(--white);
  padding-left: 1rem;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li.is-active a::after {
  content: '';
  position: absolute;
  left: 0;
  top: 20%;
  bottom: 20%;
  width: 2px;
  background: var(--gold);
}

.woocommerce-account .woocommerce-MyAccount-content {
  background: transparent;
  border: none;
  padding: 0;
}

/* Mobile: Grid Layout to avoid "one on top of another" look */
@media (max-width: 991px) {
  .woocommerce-account .woocommerce-MyAccount-navigation {
    margin-bottom: 3rem;
  }
  .woocommerce-account .woocommerce-MyAccount-navigation ul {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  .woocommerce-account .woocommerce-MyAccount-navigation ul li {
    border: 1px solid rgba(200, 194, 188, 0.3);
    background: var(--off);
  }
  .woocommerce-account .woocommerce-MyAccount-navigation ul li a {
    justify-content: center;
    flex-direction: column;
    text-align: center;
    padding: 1.5rem 0.5rem;
    gap: 0.5rem;
  }
  .woocommerce-account .woocommerce-MyAccount-navigation ul li a::before {
    width: 20px;
    height: 20px;
  }
  .woocommerce-account .woocommerce-MyAccount-navigation ul li.is-active a::after {
    left: 5%;
    right: 5%;
    top: auto;
    bottom: 0;
    width: auto;
    height: 2px;
  }
}

/* Orders table */
.woocommerce-orders-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border: 1px solid rgba(200, 194, 188, 0.2);
}

.woocommerce-orders-table th {
  font-family: var(--ff);
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--soft);
  padding: 1.25rem;
  border-bottom: 1px solid rgba(200, 194, 188, 0.3);
  text-align: left;
}

.woocommerce-orders-table td {
  padding: 1.25rem;
  font-size: 0.8125rem;
  border-bottom: 1px solid rgba(200, 194, 188, 0.1);
  color: var(--charcoal);
}

.woocommerce-orders-table .button {
  background: var(--ink) !important;
  color: #fff !important;
  font-size: 0.5625rem !important;
  padding: 0.5rem 1rem !important;
  border-radius: 0 !important;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.woocommerce-orders-table .button:hover {
  background: var(--gold) !important;
}

/* ── CART & CHECKOUT ────────────────────────────────────── */
.woocommerce .button.checkout-button,
.woocommerce #place_order {
  font-family: var(--ff) !important;
  font-size: 0.6875rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.2em !important;
  text-transform: uppercase !important;
  background: var(--ink) !important;
  color: #fff !important;
  border-radius: 0 !important;
  padding: 1rem 2.5rem !important;
  transition: background 0.3s ease !important;
}

.woocommerce .button.checkout-button:hover,
.woocommerce #place_order:hover {
  background: var(--gold) !important;
}

.woocommerce-checkout #payment {
  background: var(--cream) !important;
  border: 1px solid rgba(200, 194, 188, 0.3) !important;
  border-radius: 0 !important;
}

/* ══════════════════════════════════════════════════════════
   FRAGRANCE INDEX — PREMIUM GRID
   ══════════════════════════════════════════════════════════ */
.wn-fragrance-index {
  background: var(--white);
  padding: 6rem 0;
}

.wn-fragrance-index-header {
  text-align: center;
  margin-bottom: 5rem;
}

.wn-fragrance-index-title {
  font-family: var(--ff-s);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--ink);
  letter-spacing: 0.05em;
}

.wn-fragrance-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 3rem;
}

.wn-fragrance-item {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.wn-fragrance-name {
  font-family: var(--ff);
  /* Alterado para sans-serif como no print */
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.wn-fragrance-subtitle {
  font-family: var(--ff);
  font-size: 0.5rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 1.5rem;
}

.wn-fragrance-solid-line {
  width: 100%;
  height: 2px;
  background-color: var(--soft);
  margin-bottom: 1.5rem;
}

.wn-fragrance-solid-line.bottom {
  margin-top: 1.5rem;
  margin-bottom: 0;
}

.wn-fragrance-dashed-line {
  width: 100%;
  height: 1px;
  border-bottom: 1px dashed var(--mid);
  opacity: 0.4;
  margin: 1rem 0;
}

.wn-fragrance-note {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.wn-fragrance-note-label {
  font-family: var(--ff);
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mid);
}

.wn-fragrance-note-value {
  font-family: var(--ff);
  font-size: 0.75rem;
  color: var(--charcoal);
  line-height: 1.4;
}

/* Animations */
.fade-in-up {
  animation: fadeInUp 0.8s ease backwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1024px) {
  .wn-fragrance-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .wn-fragrance-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 1.5rem;
  }
}

@media (max-width: 480px) {
  .wn-fragrance-grid {
    grid-template-columns: 1fr;
  }
}
