/*
Theme Name: Euphelia v5
Theme URI: https://euphelia.com.br
Author: Euphelia Perfumaria
Description: Tema premium para e-commerce de perfumaria — luxo, elegância e alta conversão.
Version: 5.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 8.0
License: GNU General Public License v2 or later
Text Domain: euphelia-v5
*/

/* ═══════════════════════════════════════
   VARIÁVEIS & RESET
═══════════════════════════════════════ */
:root {
  --black:      #000000;
  --black-soft: #0f0f0f;
  --black-card: #141414;
  --white:      #ffffff;
  --cream:      #faf7f2;
  --gold:       #c6a75e;
  --gold-light: #e2c97e;
  --gold-dark:  #a07830;
  --gray-100:   #f5f5f5;
  --gray-200:   #e8e8e8;
  --gray-400:   #999999;
  --gray-600:   #555555;
  --gray-800:   #222222;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Montserrat', sans-serif;

  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-lg:   16px;
  --radius-full: 999px;

  --shadow-sm:   0 2px 8px rgba(0,0,0,.06);
  --shadow-md:   0 8px 32px rgba(0,0,0,.12);
  --shadow-lg:   0 24px 64px rgba(0,0,0,.18);
  --shadow-gold: 0 8px 32px rgba(198,167,94,.3);

  --transition: .3s cubic-bezier(.4,0,.2,1);
  --container:  1280px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}
@media (max-width: 768px) { .container { padding: 0 20px; } }

/* ═══════════════════════════════════════
   TOP BAR
═══════════════════════════════════════ */
.top-bar {
  background: var(--black);
  height: 38px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.top-bar-track {
  display: flex;
  gap: 80px;
  animation: marquee 24s linear infinite;
  white-space: nowrap;
}
.top-bar-track span {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-light);
  display: flex;
  align-items: center;
  gap: 8px;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════
   HEADER
═══════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--gray-200);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,.08); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}

.site-logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--black);
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  flex-shrink: 0;
}
.site-logo span {
  font-family: var(--font-body);
  font-size: 8px;
  font-weight: 400;
  letter-spacing: .35em;
  color: var(--gray-400);
  text-transform: uppercase;
  margin-top: 4px;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  justify-content: center;
}
.header-nav a {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gray-600);
  padding: 8px 14px;
  position: relative;
  transition: color var(--transition);
  white-space: nowrap;
}
.header-nav a::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 14px; right: 14px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.header-nav a:hover { color: var(--black); }
.header-nav a:hover::after { transform: scaleX(1); }
.header-nav .nav-kits {
  background: var(--gold);
  color: var(--white) !important;
  border-radius: var(--radius-full);
  padding: 8px 18px;
  margin-left: 6px;
}
.header-nav .nav-kits::after { display: none; }
.header-nav .nav-kits:hover { background: var(--gold-dark); }

.header-actions { display: flex; align-items: center; gap: 4px; flex-shrink: 0; }
.header-action-btn {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-full);
  color: var(--gray-600);
  transition: all var(--transition);
  position: relative;
}
.header-action-btn:hover { background: var(--gray-100); color: var(--black); }
.cart-count {
  position: absolute;
  top: 4px; right: 4px;
  width: 16px; height: 16px;
  background: var(--gold);
  color: var(--white);
  font-size: 9px;
  font-weight: 700;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--black);
  transition: var(--transition);
}
.menu-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--gray-200);
  padding: 0 0 16px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-600);
  padding: 14px 24px;
  border-bottom: 1px solid var(--gray-100);
  transition: color var(--transition);
  letter-spacing: .04em;
}
.mobile-nav a:hover { color: var(--gold); }

/* ═══════════════════════════════════════
   BOTÕES
═══════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 32px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  transition: all var(--transition);
  cursor: pointer;
  border: none;
  white-space: nowrap;
}
.btn-gold {
  background: var(--gold);
  color: var(--white);
}
.btn-gold:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
  color: var(--white);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,.35);
}
.btn-outline:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.7);
  color: var(--white);
}
.btn-outline-dark {
  background: transparent;
  color: var(--black);
  border: 1px solid var(--gray-200);
}
.btn-outline-dark:hover {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}
.btn-whatsapp {
  background: #25D366;
  color: var(--white);
}
.btn-whatsapp:hover {
  background: #1da851;
  color: var(--white);
  transform: translateY(-2px);
}
.btn-full { width: 100%; justify-content: center; }
.btn-lg { padding: 18px 40px; font-size: 13px; }

/* ═══════════════════════════════════════
   HERO — DIA DAS MÃES
═══════════════════════════════════════ */
.hero {
  min-height: 88vh;
  background: var(--black);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  overflow: hidden;
  position: relative;
}
.hero-bg-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 15% 85%, rgba(198,167,94,.12) 0%, transparent 55%),
    radial-gradient(ellipse at 75% 15%, rgba(198,167,94,.07) 0%, transparent 50%);
  pointer-events: none;
}

/* Tag Dia das Mães */
.hero-mothers-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(198,167,94,.15);
  border: 1px solid rgba(198,167,94,.35);
  border-radius: var(--radius-full);
  padding: 6px 16px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 24px;
}
.hero-mothers-tag-dot { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: .5; transform: scale(.8); } }

.hero-content {
  padding: 80px 56px 80px 80px;
  position: relative;
  z-index: 2;
}
.hero-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 28px; height: 1px;
  background: var(--gold);
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(44px, 4.5vw, 76px);
  font-weight: 300;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 22px;
  letter-spacing: -.01em;
}
.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}
.hero-desc {
  font-size: 14px;
  color: rgba(255,255,255,.55);
  line-height: 1.85;
  margin-bottom: 40px;
  max-width: 400px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 52px; }

.hero-stats {
  display: flex;
  gap: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.hero-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  color: var(--gold-light);
  line-height: 1;
}
.hero-stat span {
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-top: 5px;
  display: block;
}

.hero-visual {
  height: 100%;
  min-height: 88vh;
  position: relative;
  overflow: hidden;
}
.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.hero-visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--black) 0%, transparent 25%);
}

/* Badge flutuante Dia das Mães */
.hero-badge {
  position: absolute;
  bottom: 40px;
  right: 40px;
  background: rgba(0,0,0,.75);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(198,167,94,.3);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  text-align: center;
  z-index: 3;
}
.hero-badge-emoji { font-size: 28px; display: block; margin-bottom: 6px; }
.hero-badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--white);
  letter-spacing: .06em;
}
.hero-badge span {
  font-size: 10px;
  color: var(--gold-light);
  letter-spacing: .12em;
  text-transform: uppercase;
}

/* ═══════════════════════════════════════
   BENEFÍCIOS
═══════════════════════════════════════ */
.beneficios {
  background: var(--cream);
  border-bottom: 1px solid var(--gray-200);
  padding: 22px 0;
}
.beneficios-items {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}
.beneficio-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 32px;
}
.beneficio-icon { font-size: 20px; flex-shrink: 0; }
.beneficio-item strong {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--black);
  letter-spacing: .04em;
}
.beneficio-item span {
  display: block;
  font-size: 11px;
  color: var(--gray-400);
  margin-top: 1px;
}
.beneficio-divider {
  width: 1px;
  height: 36px;
  background: var(--gray-200);
  flex-shrink: 0;
}

/* ═══════════════════════════════════════
   SECTION HEADERS
═══════════════════════════════════════ */
.section-header { text-align: center; margin-bottom: 52px; }
.section-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.5vw, 48px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--black);
  margin-bottom: 14px;
}
.section-header p {
  font-size: 14px;
  color: var(--gray-400);
  max-width: 440px;
  margin: 0 auto;
  line-height: 1.7;
}
.section-header.light h2 { color: var(--white); }
.section-header.light p  { color: rgba(255,255,255,.5); }
.section-header.light .section-tag { color: var(--gold-light); }

/* ═══════════════════════════════════════
   MARCAS TICKER
═══════════════════════════════════════ */
.marcas {
  padding: 36px 0;
  background: var(--black-soft);
  overflow: hidden;
}
.marcas-label {
  text-align: center;
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-bottom: 20px;
  display: block;
}
.marcas-track-wrap { overflow: hidden; white-space: nowrap; }
.marcas-track {
  display: inline-flex;
  gap: 12px;
  animation: ticker 28s linear infinite;
  white-space: nowrap;
  align-items: center;
}
.marcas-track-wrap:hover .marcas-track { animation-play-state: paused; }
.marca-pill {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(198,167,94,.18);
  border: 1px solid rgba(198,167,94,.3);
  border-radius: var(--radius-full);
  padding: 6px 16px;
  transition: all var(--transition);
  cursor: default;
}
.marca-pill:hover { color: var(--gray-400); background: rgba(198,167,94,.08); }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ═══════════════════════════════════════
   CATEGORIAS
═══════════════════════════════════════ */
.categorias { padding: 96px 0; background: var(--white); }
.cat-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.cat-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px 20px;
  cursor: pointer;
  transition: transform var(--transition);
  text-decoration: none;
}
.cat-card:hover { transform: translateY(-6px); }
.cat-bg {
  position: absolute;
  inset: 0;
  transition: transform .55s cubic-bezier(.4,0,.2,1);
}
.cat-card:hover .cat-bg { transform: scale(1.06); }
.cat-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.75) 0%, rgba(0,0,0,.15) 55%, transparent 100%);
}
.cat-fem .cat-bg    { background: linear-gradient(145deg, #f5e0e8 0%, #ddb8c8 100%); }
.cat-masc .cat-bg   { background: linear-gradient(145deg, #1a2535 0%, #253a55 100%); }
.cat-arabes .cat-bg { background: linear-gradient(145deg, #2a1a0a 0%, #5a3a18 100%); }
.cat-hidra .cat-bg  { background: linear-gradient(145deg, #e8f0e6 0%, #c2d8be 100%); }
.cat-body .cat-bg   { background: linear-gradient(145deg, #ede8f5 0%, #ccc0e5 100%); }
.cat-kits .cat-bg   { background: linear-gradient(145deg, #1a1a0a 0%, #3a3010 100%); }
.cat-emoji {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -62%);
  font-size: 44px;
  z-index: 2;
  transition: transform .4s cubic-bezier(.4,0,.2,1);
}
.cat-card:hover .cat-emoji { transform: translate(-50%, -68%) scale(1.1); }
.cat-label { position: relative; z-index: 2; }
.cat-label h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
  text-shadow: 0 2px 8px rgba(0,0,0,.4);
  line-height: 1.2;
}
.cat-fem .cat-label h3,
.cat-hidra .cat-label h3,
.cat-body .cat-label h3 { color: var(--black); text-shadow: none; }
.cat-label span {
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 600;
}
.cat-fem .cat-label span,
.cat-hidra .cat-label span,
.cat-body .cat-label span { color: var(--gold-dark); }

/* ═══════════════════════════════════════
   PRODUTOS WOOCOMMERCE
═══════════════════════════════════════ */
.produtos-section { padding: 96px 0; }
.produtos-section.bg-cream { background: var(--cream); }

.woocommerce ul.products {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 20px !important;
  margin: 0 !important;
  padding: 0 !important;
}
.woocommerce ul.products li.product {
  background: var(--white) !important;
  border-radius: var(--radius-lg) !important;
  overflow: hidden !important;
  transition: all var(--transition) !important;
  box-shadow: var(--shadow-sm) !important;
  border: 1px solid var(--gray-200) !important;
  margin: 0 !important;
  width: auto !important;
  float: none !important;
  display: flex !important;
  flex-direction: column !important;
}
.woocommerce ul.products li.product:hover {
  transform: translateY(-6px) !important;
  box-shadow: var(--shadow-md) !important;
  border-color: var(--gold-light) !important;
}

/* Imagem do produto */
.woocommerce ul.products li.product a img {
  width: 100% !important;
  aspect-ratio: 1 !important;
  object-fit: cover !important;
  transition: transform .5s cubic-bezier(.4,0,.2,1) !important;
}
.woocommerce ul.products li.product:hover a img { transform: scale(1.05) !important; }

/* Título — 2 linhas máx */
.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-family: var(--font-body) !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  color: var(--black) !important;
  padding: 14px 16px 2px !important;
  line-height: 1.4 !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
  letter-spacing: .04em !important;
  text-transform: uppercase !important;
}

/* Preço */
.woocommerce ul.products li.product .price {
  color: var(--gold-dark) !important;
  font-weight: 700 !important;
  font-size: 15px !important;
  padding: 4px 16px 14px !important;
  display: block !important;
  font-family: var(--font-body) !important;
}
.woocommerce ul.products li.product .price del {
  color: var(--gray-400) !important;
  font-size: 12px !important;
  font-weight: 400 !important;
  margin-right: 4px !important;
}

/* Botão */
.woocommerce ul.products li.product .button {
  margin: auto 16px 16px !important;
  width: calc(100% - 32px) !important;
  background: var(--black) !important;
  color: var(--white) !important;
  border-radius: var(--radius-full) !important;
  font-size: 10px !important;
  font-weight: 700 !important;
  letter-spacing: .12em !important;
  text-transform: uppercase !important;
  padding: 12px 16px !important;
  transition: all var(--transition) !important;
  text-align: center !important;
  display: block !important;
  border: none !important;
}
.woocommerce ul.products li.product .button:hover {
  background: var(--gold) !important;
}

/* Badge oferta */
.woocommerce span.onsale {
  background: var(--gold) !important;
  border-radius: var(--radius-full) !important;
  font-size: 9px !important;
  font-weight: 700 !important;
  letter-spacing: .1em !important;
  min-height: auto !important;
  min-width: auto !important;
  padding: 4px 10px !important;
  line-height: 1.6 !important;
  top: 10px !important;
  left: 10px !important;
}

.section-cta { text-align: center; margin-top: 44px; }

/* ═══════════════════════════════════════
   KITS
═══════════════════════════════════════ */
.kits-section { padding: 96px 0; background: var(--black); }
.kits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.kit-card {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.kit-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}
.kit-card:hover,
.kit-card.destaque {
  border-color: rgba(198,167,94,.25);
  background: rgba(198,167,94,.05);
}
.kit-card:hover::before,
.kit-card.destaque::before { opacity: 1; }

.kit-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(198,167,94,.3);
  border-radius: var(--radius-full);
  padding: 4px 12px;
  margin-bottom: 20px;
  width: fit-content;
}
.kit-emoji { font-size: 40px; margin-bottom: 18px; display: block; }
.kit-card h4 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.2;
}
.kit-card > p {
  font-size: 13px;
  color: rgba(255,255,255,.45);
  margin-bottom: 20px;
  line-height: 1.6;
}
.kit-list { margin-bottom: 24px; }
.kit-list li {
  font-size: 13px;
  color: rgba(255,255,255,.65);
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
  display: flex;
  align-items: center;
  gap: 8px;
}
.kit-list li::before { content: '✦'; color: var(--gold); font-size: 7px; flex-shrink: 0; }
.kit-preco { margin-bottom: 24px; margin-top: auto; }
.kit-preco .de {
  display: block;
  font-size: 12px;
  color: rgba(255,255,255,.25);
  text-decoration: line-through;
  margin-bottom: 4px;
}
.kit-preco .por {
  display: block;
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 600;
  color: var(--gold-light);
  line-height: 1;
}

/* ═══════════════════════════════════════
   POR QUÊ ESCOLHER
═══════════════════════════════════════ */
.por-que-section { padding: 96px 0; background: var(--cream); }
.por-que-inner {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 72px;
  align-items: center;
}
.por-que-texto .section-tag { display: block; margin-bottom: 10px; }
.por-que-texto h2 {
  font-family: var(--font-display);
  font-size: clamp(34px, 3.5vw, 52px);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 20px;
  color: var(--black);
}
.por-que-texto h2 em { font-style: italic; color: var(--gold-dark); }
.por-que-texto p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.85;
  margin-bottom: 32px;
  max-width: 380px;
}
.pq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.pq-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
}
.pq-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-light);
}
.pq-icon { font-size: 28px; margin-bottom: 14px; display: block; }
.pq-card h4 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--black);
}
.pq-card p { font-size: 13px; color: var(--gray-400); line-height: 1.7; }

/* ═══════════════════════════════════════
   FAIXA DE IMPACTO
═══════════════════════════════════════ */
.faixa-impacto {
  background: var(--gold);
  padding: 18px 0;
  overflow: hidden;
}
.faixa-track {
  display: flex;
  gap: 48px;
  animation: ticker 20s linear infinite;
  white-space: nowrap;
}
.faixa-track span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--white);
}
.faixa-dot { color: rgba(255,255,255,.45) !important; font-size: 7px !important; }

/* ═══════════════════════════════════════
   AVALIAÇÕES
═══════════════════════════════════════ */
.avaliacoes-section { padding: 96px 0; background: var(--white); }
.rating-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 16px;
}
.rating-num {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 600;
  color: var(--black);
  line-height: 1;
}
.rating-info .stars { color: var(--gold); font-size: 18px; letter-spacing: 3px; }
.rating-info p { font-size: 12px; color: var(--gray-400); margin-top: 4px; }

.depo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.depo-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: all var(--transition);
}
.depo-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-light);
}
.depo-card.destaque {
  border-color: var(--gold);
  background: #fffdf7;
}
.depo-top { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.depo-avatar {
  width: 44px; height: 44px;
  background: var(--gold);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  flex-shrink: 0;
}
.depo-top strong { display: block; font-size: 13px; font-weight: 700; color: var(--black); }
.depo-top span { display: block; font-size: 11px; color: var(--gray-400); margin-top: 2px; }
.depo-stars { color: var(--gold); font-size: 11px; margin-top: 3px; }
.depo-card p {
  font-size: 13px;
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 16px;
  font-style: italic;
}
.depo-produto {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--gold-dark);
  text-transform: uppercase;
}

/* ═══════════════════════════════════════
   CTA FINAL
═══════════════════════════════════════ */
.cta-final-section {
  padding: 120px 0;
  background: var(--black);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-final-section::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(198,167,94,.1) 0%, transparent 65%);
  pointer-events: none;
}
.cta-final-section .cta-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.cta-final-section h2 {
  font-family: var(--font-display);
  font-size: clamp(38px, 5vw, 68px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
  position: relative;
}
.cta-final-section h2 em { font-style: italic; color: var(--gold-light); }
.cta-final-section p {
  font-size: 14px;
  color: rgba(255,255,255,.45);
  max-width: 460px;
  margin: 0 auto 40px;
  line-height: 1.85;
  position: relative;
}
.cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
.site-footer {
  background: #050505;
  color: rgba(255,255,255,.55);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.footer-brand .site-logo { align-items: flex-start; color: var(--white); }
.footer-brand p {
  font-size: 13px;
  line-height: 1.85;
  margin: 20px 0 28px;
  max-width: 280px;
  color: rgba(255,255,255,.45);
}
.footer-social { display: flex; gap: 8px; }
.social-btn {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.4);
  font-size: 14px;
  transition: all var(--transition);
}
.social-btn:hover { border-color: var(--gold); color: var(--gold); }

.footer-col h4 {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 13px;
  color: rgba(255,255,255,.45);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--gold); }
.footer-contact li {
  font-size: 13px;
  color: rgba(255,255,255,.45);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  line-height: 1.5;
}
.footer-contact svg { flex-shrink: 0; margin-top: 2px; opacity: .5; }

.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,.25); }
.payment-icons { display: flex; gap: 6px; }
.payment-icon {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-sm);
  padding: 5px 10px;
  font-size: 9px;
  font-weight: 700;
  color: rgba(255,255,255,.4);
  letter-spacing: .06em;
}

/* ═══════════════════════════════════════
   WHATSAPP FLOAT
═══════════════════════════════════════ */
.whatsapp-float {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 56px; height: 56px;
  background: #25D366;
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  z-index: 999;
  transition: all var(--transition);
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37,211,102,.5);
  color: var(--white);
}

/* ═══════════════════════════════════════
   WOOCOMMERCE PAGES
═══════════════════════════════════════ */
.woo-page-wrap { padding: 56px 0 96px; min-height: 60vh; }
.woo-page-title {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 400;
  margin-bottom: 44px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--gray-200);
  color: var(--black);
}

/* Cart */
.woocommerce table.shop_table {
  border: none !important;
  border-radius: var(--radius-lg) !important;
  overflow: hidden !important;
  box-shadow: var(--shadow-sm) !important;
  border: 1px solid var(--gray-200) !important;
}
.woocommerce table.shop_table th {
  background: var(--gray-100) !important;
  font-size: 10px !important;
  font-weight: 700 !important;
  letter-spacing: .12em !important;
  text-transform: uppercase !important;
  color: var(--gray-600) !important;
  padding: 16px !important;
  border: none !important;
}
.woocommerce table.shop_table td {
  padding: 20px !important;
  border-color: var(--gray-200) !important;
  vertical-align: middle !important;
}
.woocommerce .cart_totals {
  background: var(--cream) !important;
  border-radius: var(--radius-lg) !important;
  padding: 32px !important;
  border: 1px solid var(--gray-200) !important;
}
.woocommerce .cart_totals h2 {
  font-family: var(--font-display) !important;
  font-size: 24px !important;
  font-weight: 500 !important;
  margin-bottom: 20px !important;
}
.woocommerce .wc-proceed-to-checkout a.checkout-button {
  background: var(--gold) !important;
  color: var(--white) !important;
  border-radius: var(--radius-full) !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  letter-spacing: .12em !important;
  text-transform: uppercase !important;
  padding: 18px 40px !important;
  transition: all var(--transition) !important;
  display: block !important;
  text-align: center !important;
}
.woocommerce .wc-proceed-to-checkout a.checkout-button:hover {
  background: var(--gold-dark) !important;
  box-shadow: var(--shadow-gold) !important;
}

/* Checkout */
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select {
  border: 1px solid var(--gray-200) !important;
  border-radius: var(--radius-md) !important;
  padding: 14px 16px !important;
  font-size: 14px !important;
  transition: border-color var(--transition) !important;
  font-family: var(--font-body) !important;
}
.woocommerce form .form-row input.input-text:focus {
  border-color: var(--gold) !important;
  outline: none !important;
  box-shadow: 0 0 0 3px rgba(198,167,94,.12) !important;
}
.woocommerce #payment #place_order {
  background: var(--gold) !important;
  color: var(--white) !important;
  border-radius: var(--radius-full) !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  letter-spacing: .12em !important;
  text-transform: uppercase !important;
  padding: 18px 40px !important;
  width: 100% !important;
  transition: all var(--transition) !important;
}
.woocommerce #payment #place_order:hover {
  background: var(--gold-dark) !important;
  box-shadow: var(--shadow-gold) !important;
}

/* My Account */
.woocommerce-account .woocommerce-MyAccount-navigation {
  background: var(--cream) !important;
  border-radius: var(--radius-lg) !important;
  padding: 16px !important;
  border: 1px solid var(--gray-200) !important;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li a {
  font-size: 13px !important;
  font-weight: 500 !important;
  color: var(--gray-600) !important;
  padding: 10px 16px !important;
  border-radius: var(--radius-md) !important;
  display: block !important;
  transition: all var(--transition) !important;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li.is-active a,
.woocommerce-account .woocommerce-MyAccount-navigation ul li a:hover {
  background: var(--gold) !important;
  color: var(--white) !important;
}

/* Produto single */
.single-product .product_title {
  font-family: var(--font-display) !important;
  font-size: 38px !important;
  font-weight: 400 !important;
  line-height: 1.2 !important;
  color: var(--black) !important;
}
.single-product .price {
  font-size: 28px !important;
  color: var(--gold-dark) !important;
  font-weight: 700 !important;
}
.single-product .single_add_to_cart_button {
  background: var(--gold) !important;
  color: var(--white) !important;
  border-radius: var(--radius-full) !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  letter-spacing: .12em !important;
  text-transform: uppercase !important;
  padding: 18px 40px !important;
  transition: all var(--transition) !important;
  border: none !important;
}
.single-product .single_add_to_cart_button:hover {
  background: var(--gold-dark) !important;
  box-shadow: var(--shadow-gold) !important;
}

/* ═══════════════════════════════════════
   BREADCRUMB
═══════════════════════════════════════ */
.breadcrumb {
  background: var(--cream);
  border-bottom: 1px solid var(--gray-200);
  padding: 12px 0;
  font-size: 12px;
  color: var(--gray-400);
}
.breadcrumb a { color: var(--gray-600); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { margin: 0 6px; color: var(--gray-400); }

/* ═══════════════════════════════════════
   FADE IN ANIMATIONS
═══════════════════════════════════════ */
.fade-in {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .65s cubic-bezier(.4,0,.2,1), transform .65s cubic-bezier(.4,0,.2,1);
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
.cat-card:nth-child(2) { transition-delay: .07s; }
.cat-card:nth-child(3) { transition-delay: .14s; }
.cat-card:nth-child(4) { transition-delay: .21s; }
.cat-card:nth-child(5) { transition-delay: .28s; }
.pq-card:nth-child(2)  { transition-delay: .1s; }
.pq-card:nth-child(3)  { transition-delay: .2s; }
.pq-card:nth-child(4)  { transition-delay: .3s; }
.depo-card:nth-child(2){ transition-delay: .1s; }
.depo-card:nth-child(3){ transition-delay: .2s; }
.depo-card:nth-child(4){ transition-delay: .3s; }
.kit-card:nth-child(2) { transition-delay: .1s; }
.kit-card:nth-child(3) { transition-delay: .2s; }

/* ═══════════════════════════════════════
   RESPONSIVO
═══════════════════════════════════════ */
@media (max-width: 1200px) {
  .cat-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 1024px) {
  .woocommerce ul.products { grid-template-columns: repeat(3, 1fr) !important; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-visual { display: none; }
  .hero-content { padding: 80px 40px; }
  .por-que-inner { grid-template-columns: 1fr; gap: 48px; }
  .kits-grid { grid-template-columns: 1fr 1fr; }
  .depo-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .header-nav { display: none; }
  .menu-toggle { display: flex; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .woocommerce ul.products { grid-template-columns: repeat(2, 1fr) !important; }
  .kits-grid { grid-template-columns: 1fr; }
  .beneficios-items { justify-content: flex-start; }
  .beneficio-divider { display: none; }
  .beneficio-item { width: 50%; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-content { padding: 56px 20px; }
  .pq-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  .woocommerce ul.products { grid-template-columns: repeat(2, 1fr) !important; gap: 12px !important; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .depo-grid { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; }
  .cta-btns { flex-direction: column; align-items: center; }
  .beneficio-item { width: 100%; }
  .hero-stats { gap: 20px; flex-wrap: wrap; }
}

/* ═══════════════════════════════════════
   HERO SLIDER / CARROSSEL
═══════════════════════════════════════ */
.hero-slider {
  position: relative;
  width: 100%;
  height: 88vh;
  min-height: 520px;
  overflow: hidden;
  background: var(--black);
}

/* Cada slide */
.slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  opacity: 0;
  transition: opacity .7s cubic-bezier(.4,0,.2,1);
  pointer-events: none;
}
.slide.active {
  opacity: 1;
  pointer-events: all;
}

/* Fundos dos slides */
.slide-1 .slide-bg { position:absolute;inset:0;background:radial-gradient(ellipse at 15% 85%, rgba(198,167,94,.14) 0%, transparent 55%), radial-gradient(ellipse at 75% 15%, rgba(198,167,94,.07) 0%, transparent 50%), var(--black); }
.slide-2 .slide-bg { position:absolute;inset:0;background:linear-gradient(135deg, #0a1628 0%, #1a2a1a 100%); }
.slide-3 .slide-bg { position:absolute;inset:0;background:linear-gradient(135deg, #1a0a05 0%, #3a1a08 100%); }
.slide-4 .slide-bg { position:absolute;inset:0;background:linear-gradient(135deg, #0a0a1a 0%, #1a0a2a 100%); }
.slide-5 .slide-bg { position:absolute;inset:0;background:linear-gradient(135deg, #0a1a0a 0%, #1a2a0a 100%); }

/* Conteúdo do slide */
.slide-content {
  padding: 80px 56px 80px 80px;
  position: relative;
  z-index: 2;
}
.slide-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(198,167,94,.15);
  border: 1px solid rgba(198,167,94,.3);
  border-radius: var(--radius-full);
  padding: 6px 16px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 24px;
}
.slide-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 4.5vw, 72px);
  font-weight: 300;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: -.01em;
}
.slide-title em { font-style: italic; color: var(--gold-light); }
.slide-desc {
  font-size: 14px;
  color: rgba(255,255,255,.55);
  line-height: 1.85;
  margin-bottom: 36px;
  max-width: 400px;
}
.slide-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* Visual lado direito */
.slide-visual {
  height: 100%;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.slide-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.slide-visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--black) 0%, transparent 25%);
}

/* Slide frete */
.slide-visual-frete {
  flex-direction: column;
  gap: 24px;
  padding: 40px;
}
.slide-frete-box { font-size: 80px; }
.slide-frete-info { display: flex; flex-direction: column; gap: 12px; }
.frete-item {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-md);
  padding: 12px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.frete-item span { font-size: 13px; color: rgba(255,255,255,.5); }
.frete-item strong { font-size: 13px; color: var(--gold-light); font-weight: 600; }

/* Slide árabes / kits */
.slide-arabes-emoji,
.slide-kits-emoji {
  font-size: 140px;
  filter: drop-shadow(0 0 60px rgba(198,167,94,.3));
  animation: float 4s ease-in-out infinite;
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-16px); }
}

/* Slide PIX */
.slide-pix-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: rgba(198,167,94,.12);
  border: 2px solid rgba(198,167,94,.4);
  border-radius: var(--radius-lg);
  padding: 48px 56px;
}
.pix-emoji { font-size: 56px; }
.slide-pix-badge strong {
  font-family: var(--font-display);
  font-size: 72px;
  font-weight: 600;
  color: var(--gold-light);
  line-height: 1;
}
.slide-pix-badge span {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
}

/* Setas */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px; height: 48px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  cursor: pointer;
  transition: all var(--transition);
  backdrop-filter: blur(8px);
}
.slider-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  transform: translateY(-50%) scale(1.08);
}
.slider-prev { left: 24px; }
.slider-next { right: 24px; }

/* Bolinhas */
.slider-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 8px;
}
.dot {
  width: 8px; height: 8px;
  background: rgba(255,255,255,.3);
  border-radius: 50%;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  padding: 0;
}
.dot.active {
  background: var(--gold);
  width: 24px;
  border-radius: var(--radius-full);
}

/* Responsivo slider */
@media (max-width: 1024px) {
  .slide { grid-template-columns: 1fr; }
  .slide-visual { display: none; }
  .slide-content { padding: 80px 40px; }
  .hero-slider { height: auto; min-height: 520px; }
}
@media (max-width: 768px) {
  .slide-content { padding: 56px 20px; }
  .slide-btns { flex-direction: column; }
  .slider-btn { width: 40px; height: 40px; }
  .slider-prev { left: 12px; }
  .slider-next { right: 12px; }
}

/* ═══════════════════════════════════════
   HEADER NOVO — ESTILO ANMY
═══════════════════════════════════════ */

/* Remove estilos antigos do header-nav inline */
.header-inner .header-nav { display: none; }

/* Header principal */
.header-main {
  border-bottom: 1px solid var(--gray-200);
}
.header-inner {
  display: flex;
  align-items: center;
  height: 72px;
  gap: 24px;
}

/* Logo — esquerda */
.site-logo {
  flex-shrink: 0;
  margin-right: 8px;
}

/* Barra de pesquisa — cresce para ocupar espaço */
.header-search {
  flex: 1;
  max-width: 560px;
}
.header-search form {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-full);
  overflow: hidden;
  transition: border-color var(--transition);
  background: var(--white);
}
.header-search form:focus-within {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(198,167,94,.1);
}
.header-search-input {
  flex: 1;
  border: none;
  outline: none;
  padding: 10px 18px;
  font-size: 13px;
  font-family: var(--font-body);
  color: var(--black);
  background: transparent;
}
.header-search-input::placeholder { color: var(--gray-400); }
.header-search-btn {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  cursor: pointer;
  background: transparent;
  border: none;
  transition: color var(--transition);
  flex-shrink: 0;
}
.header-search-btn:hover { color: var(--gold); }

/* Ações — direita */
.header-actions {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}
.header-action-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: var(--radius-md);
  color: var(--gray-600);
  transition: all var(--transition);
  text-decoration: none;
  position: relative;
}
.header-action-item:hover { color: var(--black); background: var(--gray-100); }
.header-action-item span {
  font-size: 11px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--gray-600);
  white-space: nowrap;
}
.header-action-item:hover span { color: var(--black); }

/* Carrinho — sem texto */
.header-cart {
  padding: 8px;
  position: relative;
}
.header-cart .cart-count {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 17px;
  height: 17px;
  background: var(--gold);
  color: var(--white);
  font-size: 9px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* BARRA DE CATEGORIAS — some no scroll */
.header-nav-bar {
  border-top: 1px solid var(--gray-100);
  background: var(--white);
  transition: max-height .35s cubic-bezier(.4,0,.2,1),
              opacity .35s cubic-bezier(.4,0,.2,1),
              border-color .35s ease;
  max-height: 48px;
  opacity: 1;
  overflow: hidden;
}
.header-nav-bar.hidden {
  max-height: 0;
  opacity: 0;
  border-color: transparent;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 0;
  height: 46px;
}
.header-nav a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gray-600);
  padding: 0 16px;
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
  transition: color var(--transition);
  white-space: nowrap;
}
.header-nav a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 16px; right: 16px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.header-nav a:hover { color: var(--black); }
.header-nav a:hover::after { transform: scaleX(1); }
.header-nav .nav-kits {
  background: var(--gold);
  color: var(--white) !important;
  border-radius: var(--radius-full);
  padding: 6px 18px;
  margin-left: 8px;
  height: auto;
}
.header-nav .nav-kits::after { display: none; }
.header-nav .nav-kits:hover { background: var(--gold-dark); }

/* Responsivo header */
@media (max-width: 1024px) {
  .header-action-item span { display: none; }
  .header-action-item { padding: 8px; }
}
@media (max-width: 768px) {
  .header-search { max-width: 200px; }
  .header-nav-bar { display: none; }
  .menu-toggle { display: flex; }
}
@media (max-width: 480px) {
  .header-search { display: none; }
}

/* ═══════════════════════════════════════
   CATEGORIAS CÍRCULO — CARROSSEL
═══════════════════════════════════════ */
.cat-circle-section {
  padding: 64px 0;
  background: var(--white);
}
.cat-circle-section .section-header {
  text-align: left;
  margin-bottom: 36px;
}
.cat-circle-section .section-header h2 {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 700;
  color: var(--black);
  letter-spacing: -.01em;
}

/* Wrapper do carrossel */
.cat-circle-wrap {
  position: relative;
}
.cat-circle-track-outer {
  overflow: hidden;
}
.cat-circle-track {
  display: flex;
  gap: 28px;
  transition: transform .4s cubic-bezier(.4,0,.2,1);
}

/* Card círculo */
.cat-circle-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  text-decoration: none;
  flex-shrink: 0;
  width: 150px;
}
.cat-circle-img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--gray-100);
  border: 2px solid transparent;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 52px;
}
.cat-circle-item:hover .cat-circle-img {
  border-color: var(--gold);
  box-shadow: 0 8px 24px rgba(198,167,94,.2);
  transform: translateY(-4px);
}
.cat-circle-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
}
.cat-circle-item:hover .cat-circle-img img { transform: scale(1.08); }
.cat-circle-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--black);
  text-align: center;
  line-height: 1.4;
}

/* Setas do carrossel */
.cat-circle-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-60%);
  z-index: 5;
  width: 40px; height: 40px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
  color: var(--gray-600);
}
.cat-circle-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
  box-shadow: var(--shadow-gold);
}
.cat-circle-prev { left: -20px; }
.cat-circle-next { right: -20px; }

/* ═══════════════════════════════════════
   CARDS DE PRODUTO MINIMALISTAS
═══════════════════════════════════════ */

/* Override completo dos cards WooCommerce */
.woocommerce ul.products li.product {
  background: var(--white) !important;
  border-radius: 0 !important;
  overflow: visible !important;
  box-shadow: none !important;
  border: none !important;
  transition: all var(--transition) !important;
}
.woocommerce ul.products li.product:hover {
  transform: none !important;
  box-shadow: none !important;
  border: none !important;
}

/* Wrapper da imagem */
.woocommerce ul.products li.product a.woocommerce-loop-product__link {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--gray-100);
  margin-bottom: 14px;
}

/* Imagem */
.woocommerce ul.products li.product a img {
  width: 100% !important;
  aspect-ratio: 1 !important;
  object-fit: cover !important;
  border-radius: var(--radius-md) !important;
  transition: transform .6s cubic-bezier(.4,0,.2,1) !important;
  display: block !important;
}
.woocommerce ul.products li.product:hover a img {
  transform: scale(1.04) !important;
}

/* Badge oferta */
.woocommerce span.onsale {
  background: var(--black) !important;
  color: var(--white) !important;
  border-radius: var(--radius-sm) !important;
  font-size: 9px !important;
  font-weight: 700 !important;
  letter-spacing: .1em !important;
  text-transform: uppercase !important;
  padding: 3px 8px !important;
  min-height: auto !important;
  min-width: auto !important;
  line-height: 1.6 !important;
  top: 10px !important;
  left: 10px !important;
}

/* Botão add to cart — aparece no hover */
.woocommerce ul.products li.product .button {
  position: absolute !important;
  bottom: 10px !important;
  left: 10px !important;
  right: 10px !important;
  width: calc(100% - 20px) !important;
  margin: 0 !important;
  background: rgba(0,0,0,.85) !important;
  color: var(--white) !important;
  border-radius: var(--radius-sm) !important;
  font-size: 10px !important;
  font-weight: 700 !important;
  letter-spacing: .12em !important;
  text-transform: uppercase !important;
  padding: 11px 16px !important;
  transition: all var(--transition) !important;
  text-align: center !important;
  display: block !important;
  border: none !important;
  opacity: 0 !important;
  transform: translateY(8px) !important;
  backdrop-filter: blur(4px) !important;
}
.woocommerce ul.products li.product:hover .button {
  opacity: 1 !important;
  transform: translateY(0) !important;
  background: var(--gold) !important;
}

/* Título produto */
.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-family: var(--font-body) !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  color: var(--black) !important;
  padding: 0 0 4px !important;
  line-height: 1.4 !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
  letter-spacing: .01em !important;
  text-transform: none !important;
}

/* Estrelas */
.woocommerce ul.products li.product .star-rating {
  font-size: 11px !important;
  color: var(--gold) !important;
  margin: 0 0 4px !important;
}

/* Preço */
.woocommerce ul.products li.product .price {
  color: var(--black) !important;
  font-weight: 600 !important;
  font-size: 14px !important;
  padding: 0 !important;
  display: block !important;
  font-family: var(--font-body) !important;
  letter-spacing: -.01em !important;
}
.woocommerce ul.products li.product .price del {
  color: var(--gray-400) !important;
  font-size: 12px !important;
  font-weight: 400 !important;
  margin-right: 4px !important;
}
.woocommerce ul.products li.product .price ins {
  text-decoration: none !important;
  color: #c0392b !important;
}

/* Grid mais arejado */
.woocommerce ul.products {
  gap: 32px 24px !important;
}


/* ═══════════════════════════════════════
   NEWSLETTER — CAPTURA DE EMAIL
═══════════════════════════════════════ */
.newsletter-section {
  background: var(--cream);
  padding: 80px 0;
  text-align: center;
}
.newsletter-inner {
  max-width: 620px;
  margin: 0 auto;
}
.newsletter-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 600;
  color: var(--black);
  line-height: 1.2;
  margin-bottom: 8px;
  position: relative;
  display: inline-block;
}
/* Sublinhado decorativo */
.newsletter-title::after {
  content: '';
  display: block;
  width: 70%;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin: 8px auto 0;
  opacity: .5;
}
.newsletter-subtitle {
  font-size: 14px;
  color: var(--gray-400);
  margin: 16px 0 36px;
}
.newsletter-form {
  display: flex;
  gap: 0;
  max-width: 560px;
  margin: 0 auto 16px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.newsletter-input {
  flex: 1;
  border: 1px solid var(--gray-200);
  border-right: none;
  padding: 16px 20px;
  font-size: 14px;
  font-family: var(--font-body);
  color: var(--black);
  background: var(--white);
  outline: none;
  transition: border-color var(--transition);
}
.newsletter-input::placeholder { color: var(--gray-400); }
.newsletter-input:focus { border-color: var(--gold); }
.newsletter-btn {
  background: var(--black);
  color: var(--white);
  border: none;
  padding: 16px 32px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--transition);
  white-space: nowrap;
}
.newsletter-btn:hover { background: var(--gold); }
.newsletter-terms {
  font-size: 11px;
  color: var(--gray-400);
  line-height: 1.6;
}
.newsletter-terms a {
  color: var(--gray-600);
  text-decoration: underline;
  transition: color var(--transition);
}
.newsletter-terms a:hover { color: var(--gold); }

@media (max-width: 480px) {
  .newsletter-form { flex-direction: column; }
  .newsletter-input { border-right: 1px solid var(--gray-200); border-bottom: none; }
  .newsletter-btn { padding: 16px; }
}

/* ═══════════════════════════════════════
   BANNERS PROMOCIONAIS 3 COLUNAS
═══════════════════════════════════════ */
.banners-section {
  padding: 64px 0;
  background: var(--white);
}
.banners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.banner-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px 28px;
  text-decoration: none;
  cursor: pointer;
}
/* Fundos por cor enquanto não tem imagem real */
.banner-card-1 { background: linear-gradient(135deg, #e8d5c0 0%, #d4b896 100%); }
.banner-card-2 { background: linear-gradient(135deg, #f0e0e8 0%, #e0c8d4 100%); }
.banner-card-3 { background: linear-gradient(135deg, #d0d0d8 0%, #b8b8c4 100%); }

/* Quando tiver imagem real */
.banner-card img.banner-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.4,0,.2,1);
}
.banner-card:hover img.banner-bg { transform: scale(1.05); }

/* Overlay escuro no hover */
.banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.5) 0%, rgba(0,0,0,.1) 60%);
  transition: background var(--transition);
}
.banner-card:hover .banner-overlay {
  background: linear-gradient(to top, rgba(0,0,0,.65) 0%, rgba(0,0,0,.2) 60%);
}

.banner-content {
  position: relative;
  z-index: 2;
}
.banner-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.8);
  margin-bottom: 8px;
  display: block;
}
.banner-title {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 600;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 6px;
}
.banner-desc {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  margin-bottom: 20px;
  display: block;
}
.banner-discount {
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  display: block;
}
.banner-discount strong {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
}
.banner-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--white);
  color: var(--black);
  border: none;
  padding: 12px 24px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  cursor: pointer;
  text-decoration: none;
}
.banner-btn:hover {
  background: var(--gold);
  color: var(--white);
}

@media (max-width: 768px) {
  .banners-grid { grid-template-columns: 1fr; }
  .banner-card { aspect-ratio: 16/9; }
}
@media (max-width: 480px) {
  .banner-card { aspect-ratio: 4/3; padding: 24px 20px; }
}

/* ═══════════════════════════════════════
   CARDS PRODUTO — ESTILO MINIMALISTA v2
═══════════════════════════════════════ */

.woocommerce ul.products li.product {
  background: var(--white) !important;
  border-radius: 0 !important;
  overflow: visible !important;
  box-shadow: none !important;
  border: none !important;
  padding: 0 !important;
  display: flex !important;
  flex-direction: column !important;
}
.woocommerce ul.products li.product:hover {
  transform: none !important;
  box-shadow: none !important;
}

/* Wrapper imagem */
.woocommerce ul.products li.product a.woocommerce-loop-product__link {
  display: block !important;
  position: relative !important;
  overflow: hidden !important;
  border-radius: var(--radius-md) !important;
  background: var(--gray-100) !important;
  margin-bottom: 0 !important;
}

/* Imagem quadrada */
.woocommerce ul.products li.product a img {
  width: 100% !important;
  aspect-ratio: 1 !important;
  object-fit: cover !important;
  border-radius: var(--radius-md) !important;
  transition: transform .6s cubic-bezier(.4,0,.2,1) !important;
  display: block !important;
}
.woocommerce ul.products li.product:hover a img {
  transform: scale(1.04) !important;
}

/* Botão — aparece sobre a imagem no hover */
.woocommerce ul.products li.product .button {
  position: absolute !important;
  bottom: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  margin: 0 !important;
  background: rgba(255,255,255,.92) !important;
  color: var(--black) !important;
  border-radius: 0 0 var(--radius-md) var(--radius-md) !important;
  font-size: 10px !important;
  font-weight: 700 !important;
  letter-spacing: .14em !important;
  text-transform: uppercase !important;
  padding: 14px 16px !important;
  transition: all var(--transition) !important;
  text-align: center !important;
  display: block !important;
  border: none !important;
  opacity: 0 !important;
  transform: translateY(0) !important;
  backdrop-filter: blur(6px) !important;
}
.woocommerce ul.products li.product:hover .button {
  opacity: 1 !important;
  background: rgba(255,255,255,.95) !important;
  color: var(--black) !important;
}
.woocommerce ul.products li.product .button:hover {
  background: var(--gold) !important;
  color: var(--white) !important;
}

/* Área de info abaixo da imagem */
.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-family: var(--font-body) !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  color: var(--black) !important;
  padding: 12px 0 2px !important;
  line-height: 1.4 !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
  letter-spacing: .01em !important;
  text-transform: none !important;
  text-align: center !important;
}

/* Categoria do produto acima do nome */
.woocommerce ul.products li.product .woocommerce-loop-category__title,
.woocommerce ul.products li.product .ast-woo-product-category {
  font-size: 10px !important;
  font-weight: 600 !important;
  letter-spacing: .14em !important;
  text-transform: uppercase !important;
  color: var(--gray-400) !important;
  padding: 12px 0 2px !important;
  text-align: center !important;
  display: block !important;
}

/* Estrelas */
.woocommerce ul.products li.product .star-rating {
  font-size: 11px !important;
  color: var(--gold) !important;
  margin: 4px auto !important;
  float: none !important;
  display: block !important;
  text-align: center !important;
  width: fit-content !important;
}

/* Preço */
.woocommerce ul.products li.product .price {
  color: var(--black) !important;
  font-weight: 600 !important;
  font-size: 14px !important;
  padding: 0 !important;
  display: block !important;
  font-family: var(--font-body) !important;
  text-align: center !important;
  margin-top: 4px !important;
}
.woocommerce ul.products li.product .price del {
  color: var(--gray-400) !important;
  font-size: 12px !important;
  font-weight: 400 !important;
  margin-right: 4px !important;
}
.woocommerce ul.products li.product .price ins {
  text-decoration: none !important;
  color: #c0392b !important;
}

/* Badge QUENTE/OFERTA */
.woocommerce span.onsale {
  background: var(--gold) !important;
  color: var(--white) !important;
  border-radius: var(--radius-sm) !important;
  font-size: 9px !important;
  font-weight: 700 !important;
  letter-spacing: .1em !important;
  text-transform: uppercase !important;
  padding: 3px 10px !important;
  min-height: auto !important;
  min-width: auto !important;
  line-height: 1.6 !important;
  top: 10px !important;
  left: 10px !important;
  border-radius: var(--radius-sm) !important;
}

/* Grid espaçado */
.woocommerce ul.products {
  gap: 36px 24px !important;
}

/* ═══════════════════════════════════════
   PALETA LIMPA — OVERRIDE GERAL
═══════════════════════════════════════ */

/* Novas variáveis mais suaves */
:root {
  --cream:      #f8f4ef;
  --cream-dark: #f0e9e0;
  --gold:       #c8a96e;
  --gold-light: #dfc090;
  --gold-dark:  #a07840;
  --shadow-gold: 0 8px 32px rgba(200,169,110,.2);
}

/* TOP BAR — de preto para bege escuro */
.top-bar {
  background: #2a2420;
  height: 36px;
}
.top-bar-track span {
  color: rgba(255,255,255,.65);
  font-size: 11px;
}

/* HEADER — mais limpo */
.site-header {
  background: var(--white);
  border-bottom: 1px solid #ece8e4;
}
.header-search form {
  border-color: #ece8e4;
  background: #faf8f6;
}
.header-search form:focus-within {
  border-color: var(--gold);
  background: var(--white);
}

/* NAV BAR — linha separadora mais suave */
.header-nav-bar {
  border-top: 1px solid #ece8e4;
}
.header-nav a { color: #666666; }
.header-nav a:hover { color: var(--black); }

/* BENEFÍCIOS — fundo mais neutro */
.beneficios {
  background: var(--white);
  border-top: 1px solid #ece8e4;
  border-bottom: 1px solid #ece8e4;
}
.beneficio-item strong { color: #1a1a1a; }
.beneficio-item span { color: #999999; }
.beneficio-divider { background: #ece8e4; }

/* FAIXA IMPACTO — de dourado forte para neutro elegante */
.faixa-impacto {
  background: var(--cream);
  border-top: 1px solid #ece8e4;
  border-bottom: 1px solid #ece8e4;
  padding: 16px 0;
}
.faixa-track span {
  color: #888888;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .2em;
}
.faixa-dot { color: #cccccc !important; }

/* MARCAS TICKER — mais suave */
.marcas {
  background: #faf8f6;
  border-bottom: 1px solid #ece8e4;
}
.marcas-label { color: #aaaaaa; }
.marca-pill {
  color: #666666;
  background: rgba(200,169,110,.08);
  border-color: rgba(200,169,110,.2);
}
.marca-pill:hover { color: #999999; }

/* SEÇÃO HEADERS — texto mais suave */
.section-tag { color: #a07840; }
.section-header h2 { color: #1a1a1a; }
.section-header p { color: #888888; }

/* BOTÕES — versão mais limpa */
.btn-gold {
  background: #1a1a1a;
  color: var(--white);
}
.btn-gold:hover {
  background: #333333;
  box-shadow: 0 8px 24px rgba(0,0,0,.15);
}
.btn-outline-dark {
  border-color: #cccccc;
  color: #333333;
}
.btn-outline-dark:hover {
  background: #1a1a1a;
  border-color: #1a1a1a;
  color: var(--white);
}

/* CATEGORIAS CÍRCULO */
.cat-circle-section { background: var(--white); }
.cat-circle-section .section-header h2 { color: #1a1a1a; }
.cat-circle-img {
  background: var(--cream);
  border-color: transparent;
}
.cat-circle-item:hover .cat-circle-img {
  border-color: var(--gold);
  box-shadow: 0 8px 24px rgba(200,169,110,.15);
}
.cat-circle-label { color: #333333; }

/* PRODUTOS SECTION */
.produtos-section { background: var(--white); }
.produtos-section.bg-cream { background: var(--cream); }

/* CARDS — botão bege ao invés de preto */
.woocommerce ul.products li.product .button {
  background: rgba(248,244,239,.96) !important;
  color: #1a1a1a !important;
}
.woocommerce ul.products li.product .button:hover {
  background: #1a1a1a !important;
  color: var(--white) !important;
}
.woocommerce ul.products li.product .woocommerce-loop-product__title {
  color: #1a1a1a !important;
}
.woocommerce ul.products li.product .price {
  color: #1a1a1a !important;
}
.woocommerce ul.products li.product .price ins { color: #c0392b !important; }
.woocommerce span.onsale { background: #1a1a1a !important; }

/* KITS — fundo mais escuro mas menos agressivo */
.kits-section { background: #1a1614; }
.kit-card {
  background: rgba(255,255,255,.03);
  border-color: rgba(255,255,255,.06);
}
.kit-card:hover,
.kit-card.destaque {
  border-color: rgba(200,169,110,.2);
  background: rgba(200,169,110,.04);
}
.kit-badge { color: var(--gold); border-color: rgba(200,169,110,.25); }
.kit-preco .por { color: #dfc090; }

/* POR QUÊ ESCOLHER */
.por-que-section { background: var(--cream); }
.pq-card {
  background: var(--white);
  border-color: #ece8e4;
}
.pq-card:hover { border-color: rgba(200,169,110,.3); }

/* AVALIAÇÕES */
.avaliacoes-section { background: var(--white); }
.depo-card { border-color: #ece8e4; }
.depo-card:hover { border-color: rgba(200,169,110,.3); }
.depo-card.destaque { border-color: rgba(200,169,110,.4); background: #fdfaf6; }
.depo-avatar { background: #c8a96e; }
.depo-stars { color: #c8a96e; }

/* CTA FINAL — de preto puro para quase preto */
.cta-final-section { background: #1a1614; }

/* NEWSLETTER */
.newsletter-section { background: var(--cream); }
.newsletter-btn { background: #1a1a1a; }
.newsletter-btn:hover { background: var(--gold); }

/* FOOTER */
.site-footer { background: #110e0c; }
.footer-bottom p { color: rgba(255,255,255,.2); }

/* WOOCOMMERCE páginas */
.woocommerce .wc-proceed-to-checkout a.checkout-button {
  background: #1a1a1a !important;
}
.woocommerce .wc-proceed-to-checkout a.checkout-button:hover {
  background: var(--gold) !important;
}
.woocommerce #payment #place_order {
  background: #1a1a1a !important;
}
.woocommerce #payment #place_order:hover {
  background: var(--gold) !important;
}

/* BANNERS */
.banner-btn { background: var(--white); color: #1a1a1a; }
.banner-btn:hover { background: #1a1a1a; color: var(--white); }

/* HEADER NAV kits */
.header-nav .nav-kits {
  background: #1a1a1a;
  color: var(--white) !important;
}
.header-nav .nav-kits:hover { background: var(--gold); }

/* CARRINHO count */
.cart-count { background: var(--gold); }

/* ═══════════════════════════════════════
   PÁGINA DE PRODUTO — ESTILO PREMIUM v2
═══════════════════════════════════════ */

/* Layout geral */
.single-product div.product {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 64px !important;
  max-width: 1280px !important;
  margin: 48px auto !important;
  padding: 0 40px !important;
  align-items: start !important;
}

/* ── GALERIA ── */
.single-product .woocommerce-product-gallery {
  position: sticky !important;
  top: 100px !important;
}
.single-product .woocommerce-product-gallery__wrapper {
  border-radius: var(--radius-lg) !important;
  overflow: hidden !important;
  background: var(--cream) !important;
  aspect-ratio: 1 !important;
}
.single-product .woocommerce-product-gallery__image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  transition: transform .6s cubic-bezier(.4,0,.2,1) !important;
}
.single-product .woocommerce-product-gallery__image:hover img {
  transform: scale(1.03) !important;
}
/* Miniaturas */
.single-product .flex-control-thumbs {
  display: flex !important;
  gap: 10px !important;
  margin-top: 12px !important;
  padding: 0 !important;
  list-style: none !important;
}
.single-product .flex-control-thumbs li {
  flex: 1 !important;
  margin: 0 !important;
}
.single-product .flex-control-thumbs li img {
  border-radius: var(--radius-md) !important;
  border: 2px solid transparent !important;
  cursor: pointer !important;
  aspect-ratio: 1 !important;
  object-fit: cover !important;
  transition: all var(--transition) !important;
  opacity: .65 !important;
}
.single-product .flex-control-thumbs li img:hover,
.single-product .flex-control-thumbs li img.flex-active {
  border-color: var(--gold) !important;
  opacity: 1 !important;
}

/* Badge oferta */
.single-product span.onsale {
  background: #1a1a1a !important;
  color: var(--white) !important;
  font-size: 10px !important;
  font-weight: 700 !important;
  letter-spacing: .1em !important;
  border-radius: var(--radius-sm) !important;
  padding: 4px 10px !important;
  min-height: auto !important;
  min-width: auto !important;
  top: 14px !important;
  left: 14px !important;
}

/* ── ÁREA DE INFORMAÇÕES ── */
.single-product .summary {
  padding: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 0 !important;
}

/* Categoria */
.single-product .posted_in {
  font-size: 10px !important;
  font-weight: 700 !important;
  letter-spacing: .2em !important;
  text-transform: uppercase !important;
  color: var(--gold-dark) !important;
  margin-bottom: 10px !important;
  display: block !important;
}
.single-product .posted_in a { color: var(--gold-dark) !important; }

/* Título */
.single-product .product_title {
  font-family: var(--font-display) !important;
  font-size: clamp(28px, 3vw, 44px) !important;
  font-weight: 400 !important;
  line-height: 1.15 !important;
  color: #1a1a1a !important;
  margin: 0 0 16px !important;
  letter-spacing: -.01em !important;
}

/* Avaliações */
.single-product .woocommerce-product-rating {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  margin-bottom: 20px !important;
  padding-bottom: 20px !important;
  border-bottom: 1px solid #ece8e4 !important;
}
.single-product .star-rating { color: var(--gold) !important; font-size: 14px !important; }
.single-product .woocommerce-review-link {
  font-size: 12px !important;
  color: #888 !important;
}
.single-product .woocommerce-review-link:hover { color: var(--gold) !important; }

/* Preço */
.single-product p.price,
.single-product span.price {
  display: flex !important;
  align-items: baseline !important;
  gap: 12px !important;
  margin-bottom: 20px !important;
  padding: 16px 20px !important;
  background: var(--cream) !important;
  border-radius: var(--radius-md) !important;
  border-left: 3px solid var(--gold) !important;
}
.single-product p.price .woocommerce-Price-amount {
  font-family: var(--font-display) !important;
  font-size: 36px !important;
  font-weight: 600 !important;
  color: #1a1a1a !important;
  line-height: 1 !important;
}
.single-product p.price del {
  font-size: 18px !important;
  color: #aaa !important;
}
.single-product p.price ins { text-decoration: none !important; }

/* Descrição curta */
.single-product .woocommerce-product-details__short-description {
  font-size: 14px !important;
  line-height: 1.8 !important;
  color: #555 !important;
  margin-bottom: 24px !important;
  padding-bottom: 24px !important;
  border-bottom: 1px solid #ece8e4 !important;
}

/* Tags como pills — notas olfativas */
.single-product .tagged_as {
  display: block !important;
  margin-bottom: 24px !important;
  padding-bottom: 24px !important;
  border-bottom: 1px solid #ece8e4 !important;
}
.single-product .tagged_as::before {
  content: 'Notas principais' !important;
  display: block !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: .16em !important;
  text-transform: uppercase !important;
  color: #333 !important;
  margin-bottom: 12px !important;
}
.single-product .tagged_as a {
  display: inline-flex !important;
  align-items: center !important;
  background: var(--white) !important;
  border: 1px solid #ddd !important;
  border-radius: var(--radius-full) !important;
  padding: 5px 14px !important;
  font-size: 11px !important;
  font-weight: 500 !important;
  color: #444 !important;
  margin: 0 6px 6px 0 !important;
  transition: all var(--transition) !important;
  text-decoration: none !important;
}
.single-product .tagged_as a:hover {
  background: #1a1a1a !important;
  border-color: #1a1a1a !important;
  color: var(--white) !important;
}

/* ── QUANTIDADE ── */
.single-product .quantity {
  display: flex !important;
  align-items: center !important;
  border: 1px solid #ddd !important;
  border-radius: var(--radius-full) !important;
  overflow: hidden !important;
  width: fit-content !important;
  background: var(--white) !important;
}
.single-product .quantity .qty {
  width: 52px !important;
  height: 48px !important;
  border: none !important;
  text-align: center !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  background: transparent !important;
  outline: none !important;
  -moz-appearance: textfield !important;
}
.single-product .quantity .qty::-webkit-outer-spin-button,
.single-product .quantity .qty::-webkit-inner-spin-button { -webkit-appearance: none !important; }
.woocommerce .quantity .plus,
.woocommerce .quantity .minus {
  width: 44px !important;
  height: 48px !important;
  background: transparent !important;
  border: none !important;
  font-size: 20px !important;
  font-weight: 300 !important;
  color: #666 !important;
  cursor: pointer !important;
  transition: all var(--transition) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}
.woocommerce .quantity .plus:hover,
.woocommerce .quantity .minus:hover {
  background: var(--cream) !important;
  color: #1a1a1a !important;
}

/* ── BOTÕES CARRINHO ── */
.single-product .cart {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  margin-bottom: 24px !important;
}
.single-product .single_add_to_cart_button {
  flex: 1 !important;
  height: 52px !important;
  background: #1a1a1a !important;
  color: var(--white) !important;
  border: none !important;
  border-radius: var(--radius-full) !important;
  font-family: var(--font-body) !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  letter-spacing: .14em !important;
  text-transform: uppercase !important;
  cursor: pointer !important;
  transition: all var(--transition) !important;
  position: relative !important;
  overflow: hidden !important;
}
.single-product .single_add_to_cart_button::before {
  content: '' !important;
  position: absolute !important;
  top: 0 !important; left: -100% !important;
  width: 100% !important; height: 100% !important;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.15), transparent) !important;
  transition: left .5s ease !important;
}
.single-product .single_add_to_cart_button:hover::before { left: 100% !important; }
.single-product .single_add_to_cart_button:hover {
  background: #333 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 24px rgba(0,0,0,.15) !important;
}

/* ── META SKU ── */
.single-product .product_meta {
  font-size: 12px !important;
  color: #aaa !important;
  padding-top: 20px !important;
  border-top: 1px solid #ece8e4 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 4px !important;
}
.single-product .product_meta a { color: #666 !important; }
.single-product .product_meta a:hover { color: var(--gold) !important; }

/* ── SELOS DE CONFIANÇA ── */
.single-product .summary::after {
  content: '';
}
.sp-trust {
  display: flex !important;
  gap: 16px !important;
  padding: 16px !important;
  background: var(--cream) !important;
  border-radius: var(--radius-md) !important;
  margin-top: 20px !important;
  flex-wrap: wrap !important;
}
.sp-trust-item {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  font-size: 11px !important;
  color: #555 !important;
  flex: 1 !important;
  min-width: 100px !important;
}

/* ── TABS ── */
.single-product .woocommerce-tabs {
  max-width: 1280px !important;
  margin: 0 auto !important;
  padding: 0 40px 64px !important;
}
.single-product .woocommerce-tabs ul.tabs {
  display: flex !important;
  gap: 0 !important;
  border-bottom: 1px solid #ece8e4 !important;
  margin: 0 0 36px !important;
  padding: 0 !important;
  list-style: none !important;
  background: none !important;
}
.single-product .woocommerce-tabs ul.tabs::before { display: none !important; }
.single-product .woocommerce-tabs ul.tabs li {
  border: none !important;
  background: none !important;
  border-radius: 0 !important;
  margin: 0 !important;
}
.single-product .woocommerce-tabs ul.tabs li a {
  font-size: 13px !important;
  font-weight: 600 !important;
  letter-spacing: .08em !important;
  text-transform: uppercase !important;
  color: #999 !important;
  padding: 14px 24px !important;
  display: block !important;
  border-bottom: 2px solid transparent !important;
  transition: all var(--transition) !important;
  margin-bottom: -1px !important;
  background: none !important;
}
.single-product .woocommerce-tabs ul.tabs li.active a,
.single-product .woocommerce-tabs ul.tabs li a:hover {
  color: #1a1a1a !important;
  border-bottom-color: #1a1a1a !important;
  background: none !important;
}
.single-product .woocommerce-tabs .panel {
  font-size: 14px !important;
  line-height: 1.85 !important;
  color: #555 !important;
  border: none !important;
  padding: 0 !important;
  background: none !important;
}
.single-product .woocommerce-tabs .panel h2 {
  font-family: var(--font-display) !important;
  font-size: 26px !important;
  font-weight: 400 !important;
  color: #1a1a1a !important;
  margin-bottom: 16px !important;
}

/* ── AVALIAÇÕES ── */
.single-product #reviews #comments ol.commentlist li {
  border: 1px solid #ece8e4 !important;
  border-radius: var(--radius-lg) !important;
  padding: 24px !important;
  margin-bottom: 14px !important;
  background: var(--white) !important;
}
.single-product #reviews .star-rating { color: var(--gold) !important; }
.single-product #reviews #respond {
  background: var(--cream) !important;
  border-radius: var(--radius-lg) !important;
  padding: 32px !important;
  margin-top: 32px !important;
}

/* ── PRODUTOS RELACIONADOS ── */
.single-product .related.products {
  max-width: 1280px !important;
  margin: 0 auto !important;
  padding: 0 40px 64px !important;
}
.single-product .related.products > h2 {
  font-family: var(--font-display) !important;
  font-size: 32px !important;
  font-weight: 400 !important;
  color: #1a1a1a !important;
  margin-bottom: 32px !important;
}
.single-product .related ul.products {
  grid-template-columns: repeat(4, 1fr) !important;
}

/* ── RESPONSIVO ── */
@media (max-width: 1024px) {
  .single-product div.product {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
    padding: 0 24px !important;
  }
  .single-product .woocommerce-product-gallery { position: relative !important; top: auto !important; }
  .single-product .related ul.products { grid-template-columns: repeat(2, 1fr) !important; }
  .single-product .woocommerce-tabs { padding: 0 24px 48px !important; }
  .single-product .related.products { padding: 0 24px 48px !important; }
}
@media (max-width: 768px) {
  .single-product div.product { padding: 0 16px !important; margin: 24px auto !important; }
  .single-product .product_title { font-size: 28px !important; }
  .single-product .cart { flex-wrap: wrap !important; }
  .single-product .single_add_to_cart_button { width: 100% !important; }
}
