/* =============================================
   JOSY SOUZA - ARTESANATOS RELIGIOSOS
   Main Stylesheet
   Paleta: Creme #faf8f4 | Dourado #A8843E
============================================= */

/* ---- Google Fonts ---- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Lato:wght@300;400;700&family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400&display=swap');

/* ---- Variáveis CSS — Tema Claro ---- */
:root {
  /* Fundos */
  --black:       #faf8f4;   /* fundo principal (creme) */
  --black-soft:  #f0ebe0;   /* fundo de seções alternadas */
  --black-card:  #ffffff;   /* fundo de cards */
  --black-hover: #ede8dd;   /* hover de cards */

  /* Dourado — levemente mais escuro para contraste no fundo claro */
  --gold:        #A8843E;
  --gold-light:  #C4A265;
  --gold-dark:   #8A6A28;
  --gold-shimmer:#D4B060;

  /* Textos */
  --white:       #1c1a16;   /* texto principal (quase preto) */
  --white-soft:  #3d3a34;   /* texto secundário */
  --gray:        #7a7060;   /* texto muted */
  --gray-light:  #a09888;   /* texto muito muted */

  --font-serif:  'Playfair Display', 'Cormorant Garamond', Georgia, serif;
  --font-sans:   'Lato', Arial, sans-serif;
  --font-elegant:'Cormorant Garamond', 'Playfair Display', Georgia, serif;

  --transition:  all 0.3s ease;
  --shadow:      0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg:   0 8px 40px rgba(0, 0, 0, 0.14);
  --border-gold: 1px solid rgba(168, 132, 62, 0.3);
  --radius:      4px;

  /* Texto sempre escuro — usado em botões coloridos e badges */
  --ink:         #1c1a16;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--black);
  color: var(--white);
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--gold-light); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.3rem, 3vw, 1.8rem); }
h4 { font-size: 1.3rem; }

p { margin-bottom: 1rem; color: var(--white-soft); }

ul, ol { padding-left: 1.5rem; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 80px 0; }
.section-sm { padding: 50px 0; }

/* ---- Divisor Dourado ---- */
.gold-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 16px 0 32px;
}
.gold-divider::before,
.gold-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.gold-divider span {
  color: var(--gold);
  font-size: 1.2rem;
}

/* ---- Título de Seção ---- */
.section-title {
  text-align: center;
  margin-bottom: 60px;
}
.section-title h2 {
  color: var(--white);
  margin-bottom: 8px;
}
.section-title .subtitle {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.section-title p {
  max-width: 600px;
  margin: 0 auto;
  color: var(--gray);
}

/* ---- Botões ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  border-radius: var(--radius);
  text-decoration: none;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
  color: var(--ink);
}
.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-light), var(--gold-shimmer));
  color: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(196, 162, 101, 0.4);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--ink);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
  font-size: 0.9rem;
  padding: 16px 36px;
}
.btn-whatsapp:hover {
  background: linear-gradient(135deg, #128C7E, #25D366);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
}
.btn-whatsapp svg, .btn-whatsapp img {
  width: 22px;
  height: 22px;
  display: inline;
}

/* ========================================
   HEADER
======================================== */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(250, 248, 244, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: var(--border-gold);
  transition: var(--transition);
}

#site-header.scrolled {
  background: rgba(250, 248, 244, 0.99);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.site-logo img {
  height: 80px;
  width: auto;
}
.site-logo:hover { opacity: 0.85; }

/* Navigation */
.main-nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 36px;
  padding: 0;
  margin: 0;
}
.main-nav ul li a {
  color: var(--white-soft);
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: var(--transition);
  position: relative;
  padding-bottom: 4px;
}
.main-nav ul li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: var(--transition);
}
.main-nav ul li a:hover,
.main-nav ul li.current-menu-item a {
  color: var(--gold);
}
.main-nav ul li a:hover::after,
.main-nav ul li.current-menu-item a::after {
  width: 100%;
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-cart {
  position: relative;
  color: var(--white);
  font-size: 1.4rem;
  line-height: 1;
}
.header-cart:hover { color: var(--gold); }
.cart-count {
  position: absolute;
  top: -8px;
  right: -10px;
  background: var(--gold);
  color: var(--ink);
  font-size: 0.65rem;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}
.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ========================================
   BANNER PRINCIPAL (configurável no admin)
======================================== */
.site-banner {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background-color: var(--black);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Overlay sobre a imagem de fundo */
.site-banner__overlay {
  position: absolute;
  inset: 0;
  background: #1c1a16;   /* escuro fixo: cobre a imagem conforme opacidade do admin */
  z-index: 1;
}

/* Quando não há imagem: fundo creme com brilho dourado sutil */
.site-banner:not([style*="background-image"]) .site-banner__overlay {
  background:
    radial-gradient(ellipse at 50% 0%,   rgba(168, 132, 62, 0.10) 0%, transparent 60%),
    radial-gradient(ellipse at 0%   100%, rgba(168, 132, 62, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 100% 100%, rgba(168, 132, 62, 0.06) 0%, transparent 50%),
    var(--black);
  opacity: 1 !important;
}

.site-banner__particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.site-banner__content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 120px 24px 60px;
}

.site-banner__icon {
  width: 110px;
  height: 110px;
  margin: 0 auto 28px;
  opacity: 0.92;
  animation: floatIcon 6s ease-in-out infinite;
  filter: drop-shadow(0 0 20px rgba(196,162,101,0.3));
}
@keyframes floatIcon {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}

.site-banner__pretitle {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.site-banner__title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.1;
}
.site-banner__title em {
  font-style: italic;
  color: var(--gold);
}

.site-banner__subtitle {
  font-size: 1.1rem;
  color: var(--gray);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.85;
}

.site-banner__buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.site-banner__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--gold);
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
  animation: bounceScroll 2s ease-in-out infinite;
}
.site-banner__scroll::after {
  content: '';
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}
@keyframes bounceScroll {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ========================================
   TAGLINE BAR (linha slim abaixo do header)
======================================== */
.tagline-bar {
  background: var(--black-soft);
  border-bottom: var(--border-gold);
  padding: 14px 0;
}
.tagline-bar__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.tagline-bar__text {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 1.5px;
  color: var(--white-soft);
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.tagline-bar__ornament {
  color: var(--gold);
  font-size: 0.7rem;
  flex-shrink: 0;
  opacity: 0.8;
}
@media (max-width: 600px) {
  .tagline-bar__text { font-size: 0.75rem; letter-spacing: 0.8px; }
  .tagline-bar__ornament { display: none; }
}

/* ========================================
   BANNER PROMOCIONAL
======================================== */
.promo-banner {
  display: block;
  width: 100%;
  line-height: 0; /* remove espaço extra abaixo da imagem */
  border-top: var(--border-gold);
  border-bottom: var(--border-gold);
}
.promo-banner__link {
  display: block;
  cursor: pointer;
}
.promo-banner__img {
  width: 100%;
  height: auto;
  max-height: 480px;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: opacity 0.3s ease;
}
.promo-banner__link:hover .promo-banner__img {
  opacity: 0.92;
}

/* ---- Grid de produtos na homepage ---- */
.home-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

.home-pagination {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 48px;
}
.home-pagination a,
.home-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border: var(--border-gold);
  color: var(--white);
  border-radius: var(--radius);
  font-size: 0.9rem;
  transition: var(--transition);
}
.home-pagination a:hover,
.home-pagination span.current {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}

/* ========================================
   CATEGORIAS
======================================== */
.categories-section {
  background: var(--black-soft);
  border-top: var(--border-gold);
  border-bottom: var(--border-gold);
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1px;
  background: rgba(196, 162, 101, 0.15);
  border: var(--border-gold);
  border-radius: 8px;
  overflow: hidden;
}

.category-card {
  background: var(--black-card);
  padding: 40px 24px;
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.category-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent, rgba(196, 162, 101, 0.05));
  opacity: 0;
  transition: var(--transition);
}
.category-card:hover::before { opacity: 1; }
.category-card:hover { background: var(--black-hover); }

.category-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  display: block;
  filter: sepia(1) saturate(2) hue-rotate(5deg);
}
.category-card h3 {
  font-size: 1rem;
  font-family: var(--font-sans);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 8px;
}
.category-card p {
  font-size: 0.85rem;
  color: var(--gray);
  margin: 0;
}

/* ========================================
   PRODUTOS (GRID)
======================================== */
.products-section { background: var(--black); }

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

/* ---- Product Card ---- */
.product-card {
  background: var(--black-card);
  border: var(--border-gold);
  border-radius: 8px;
  overflow: hidden;
  transition: var(--transition);
  position: relative;
}
.product-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.product-card-image {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--black-soft);
}
.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .product-card-image img {
  transform: scale(1.06);
}

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--gold);
  color: var(--ink);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
}
.product-badge.sale { background: #c0392b; color: #fff; }

.product-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}
.product-card:hover .product-card-overlay { opacity: 1; }

.product-card-body {
  padding: 20px;
}
.product-card-category {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.product-card-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.3;
}
.product-card-title a { color: inherit; }
.product-card-title a:hover { color: var(--gold); }

.product-card-desc {
  font-size: 0.85rem;
  color: var(--gray);
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: var(--border-gold);
}

.product-price {
  display: flex;
  flex-direction: column;
}
.product-price .price-label {
  font-size: 0.7rem;
  color: var(--gray);
  letter-spacing: 1px;
}
.product-price .price-value {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--gold);
  font-weight: 600;
}
.product-price .price-old {
  font-size: 0.85rem;
  color: var(--gray);
  text-decoration: line-through;
}

.btn-whatsapp-sm {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 10px 16px;
  border-radius: var(--radius);
  transition: var(--transition);
  white-space: nowrap;
}
.btn-whatsapp-sm:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}
.btn-whatsapp-sm svg { width: 16px; height: 16px; }

/* ========================================
   PÁGINA DE PRODUTO INDIVIDUAL
======================================== */
.product-single-wrap {
  padding: 120px 0 80px;
}

.product-single-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.product-gallery-main {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 8px;
  border: var(--border-gold);
}
.product-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 12px;
}
.product-gallery-thumbs img {
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 4px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition);
}
.product-gallery-thumbs img:hover,
.product-gallery-thumbs img.active {
  border-color: var(--gold);
}

.product-single-info {}
.product-single-breadcrumb {
  font-size: 0.8rem;
  color: var(--gray);
  margin-bottom: 16px;
  letter-spacing: 1px;
}
.product-single-breadcrumb a { color: var(--gray); }
.product-single-breadcrumb a:hover { color: var(--gold); }

.product-single-category {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.product-single-title {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--white);
  margin-bottom: 24px;
  line-height: 1.2;
}

.product-single-price {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: var(--border-gold);
}
.product-single-price .current {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  color: var(--gold);
  font-weight: 600;
}
.product-single-price .old {
  font-size: 1.1rem;
  color: var(--gray);
  text-decoration: line-through;
}

.product-single-desc {
  color: var(--white-soft);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 32px;
}

.product-single-meta {
  background: var(--black-card);
  border: var(--border-gold);
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 32px;
}
.product-single-meta ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.product-single-meta li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--white-soft);
}
.product-single-meta li span.icon { color: var(--gold); font-size: 1.1rem; }
.product-single-meta li strong { color: var(--gold); }

.product-whatsapp-block {
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.08), rgba(18, 140, 126, 0.08));
  border: 1px solid rgba(37, 211, 102, 0.2);
  border-radius: 8px;
  padding: 24px;
  text-align: center;
}
.product-whatsapp-block p {
  font-size: 0.9rem;
  color: var(--gray);
  margin-bottom: 16px;
}
.product-whatsapp-block .btn-whatsapp {
  width: 100%;
  justify-content: center;
  font-size: 1rem;
  padding: 18px;
}

/* ========================================
   SOBRE / BANNER CENTRAL
======================================== */
.about-banner {
  background: var(--black-soft);
  border-top: var(--border-gold);
  border-bottom: var(--border-gold);
  overflow: hidden;
  position: relative;
}
.about-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at center, rgba(196,162,101,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.about-banner-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.about-image {
  position: relative;
}
.about-image img {
  border-radius: 8px;
  border: var(--border-gold);
  box-shadow: var(--shadow-lg);
}
.about-image-frame {
  position: absolute;
  top: -12px;
  left: -12px;
  right: 12px;
  bottom: 12px;
  border: 1px solid rgba(196,162,101,0.3);
  border-radius: 8px;
  pointer-events: none;
}

.about-content .pretitle {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.about-content h2 { margin-bottom: 20px; }
.about-content p { color: var(--gray); line-height: 1.9; margin-bottom: 16px; }
.about-stats {
  display: flex;
  gap: 32px;
  margin: 32px 0;
  padding: 24px 0;
  border-top: var(--border-gold);
  border-bottom: var(--border-gold);
}
.about-stat h3 {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 4px;
}
.about-stat p {
  font-size: 0.8rem;
  color: var(--gray);
  margin: 0;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ========================================
   DEPOIMENTOS
======================================== */
.testimonials-section {
  background: var(--black);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.testimonial-card {
  background: var(--black-card);
  border: var(--border-gold);
  border-radius: 8px;
  padding: 32px;
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  right: 24px;
  font-family: var(--font-serif);
  font-size: 5rem;
  color: rgba(196,162,101,0.15);
  line-height: 1;
}

.testimonial-stars {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}
.testimonial-text {
  font-style: italic;
  color: var(--white-soft);
  line-height: 1.8;
  margin-bottom: 24px;
  font-size: 0.95rem;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  object-fit: cover;
}
.testimonial-name {
  font-weight: 700;
  color: var(--white);
  font-size: 0.9rem;
}
.testimonial-location {
  font-size: 0.78rem;
  color: var(--gray);
}

/* ========================================
   WHATSAPP FLOATING BUTTON
======================================== */
.whatsapp-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 9999;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  animation: pulse-whatsapp 3s infinite;
}
.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}
.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: #fff;
}
@keyframes pulse-whatsapp {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
  70% { box-shadow: 0 0 0 16px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ========================================
   FOOTER
======================================== */
#site-footer {
  background: var(--black-soft);
  border-top: var(--border-gold);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-brand .footer-logo {
  height: 56px;
  margin-bottom: 20px;
}
.footer-brand p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 24px;
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  width: 38px;
  height: 38px;
  border: var(--border-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.9rem;
  transition: var(--transition);
}
.footer-social a:hover {
  background: var(--gold);
  color: var(--ink);
}

.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col ul li a {
  color: var(--gray);
  font-size: 0.9rem;
  transition: var(--transition);
}
.footer-col ul li a:hover {
  color: var(--gold);
  padding-left: 6px;
}

.footer-contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 14px;
}
.footer-contact-item .icon { color: var(--gold); margin-top: 2px; }
.footer-contact-item p {
  font-size: 0.9rem;
  color: var(--gray);
  margin: 0;
  line-height: 1.5;
}

.footer-bottom {
  border-top: var(--border-gold);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: var(--gray-light);
  margin: 0;
}
.footer-bottom a { color: var(--gold); }

/* ========================================
   SHOP / WOOCOMMERCE
======================================== */
.woocommerce-page {
  padding-top: 100px;
}

.shop-header {
  background: var(--black-soft);
  padding-top: 128px; /* account for fixed header (88px) + spacing */
  padding-bottom: 40px;
  border-bottom: var(--border-gold);
  text-align: center;
}
.shop-header .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.shop-header__title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--white);
  margin: 0;
}
.shop-header__breadcrumb {
  font-size: 0.85rem;
  color: var(--gray);
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
  justify-content: center;
}
.shop-header__breadcrumb a { color: var(--gray); }
.shop-header__breadcrumb a:hover { color: var(--gold); }

/* Legacy selectors kept for compatibility */
.shop-header h1 {
  font-size: 2.5rem;
  margin-bottom: 8px;
}
.shop-breadcrumb {
  font-size: 0.85rem;
  color: var(--gray);
}
.shop-breadcrumb a { color: var(--gray); }
.shop-breadcrumb a:hover { color: var(--gold); }

/* Shop wrap — outer container below the header */
.shop-wrap {
  padding: 0 0 80px;
}

/* Toolbar: result count + ordering side by side */
.shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: var(--border-gold);
  flex-wrap: wrap;
}

/* Main product area */
.shop-main {
  min-width: 0; /* prevent grid blowout */
}

/* Empty state */
.shop-empty {
  text-align: center;
  padding: 80px 0;
  color: var(--gray);
}
.shop-empty span {
  font-size: 4rem;
  display: block;
  margin-bottom: 20px;
  opacity: 0.25;
}
.shop-empty p {
  margin-bottom: 28px;
  font-size: 1.05rem;
}

/* WhatsApp sidebar widget variant */
.sidebar-widget--wa {
  background: linear-gradient(135deg, rgba(37,211,102,0.08), rgba(18,140,126,0.06));
  border: 1px solid rgba(37,211,102,0.25);
  text-align: center;
}
.sidebar-widget--wa__icon {
  display: block;
  font-size: 2rem;
  margin-bottom: 8px;
}
.sidebar-widget--wa h3 {
  color: var(--white);
  border-bottom-color: rgba(37,211,102,0.2);
}
.sidebar-widget--wa p {
  color: var(--gray);
  font-size: 0.88rem;
  margin-bottom: 16px;
}

.woocommerce-ordering select {
  background: var(--black-card);
  border: var(--border-gold);
  color: var(--white);
  padding: 10px 16px;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  cursor: pointer;
}
.woocommerce-ordering select:focus {
  outline: none;
  border-color: var(--gold);
}

.woocommerce ul.products {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)) !important;
  gap: 24px !important;
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* WooCommerce product card override */
.woocommerce ul.products li.product {
  background: var(--black-card);
  border: var(--border-gold);
  border-radius: 8px;
  overflow: hidden;
  transition: var(--transition);
  text-align: left;
  margin: 0 !important;
}
.woocommerce ul.products li.product:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.woocommerce ul.products li.product .woocommerce-loop-product__link {
  display: block;
}

.woocommerce ul.products li.product img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.woocommerce ul.products li.product:hover img {
  transform: scale(1.05);
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-family: var(--font-serif) !important;
  font-size: 1.1rem !important;
  color: var(--white) !important;
  padding: 16px 16px 8px !important;
  margin: 0 !important;
}

.woocommerce ul.products li.product .price {
  color: var(--gold) !important;
  font-family: var(--font-serif) !important;
  font-size: 1.3rem !important;
  padding: 0 16px 8px !important;
  display: block !important;
}

.woocommerce ul.products li.product .wc-whatsapp-btn {
  display: block;
  margin: 8px 16px 16px;
}

/* Pagination */
.woocommerce-pagination ul {
  display: flex;
  gap: 8px;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 48px 0 0;
}
.woocommerce-pagination ul li a,
.woocommerce-pagination ul li span {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: var(--border-gold);
  color: var(--white);
  border-radius: var(--radius);
  font-size: 0.9rem;
  transition: var(--transition);
}
.woocommerce-pagination ul li a:hover,
.woocommerce-pagination ul li span.current {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}

/* ========================================
   FILTRO DE PRODUTOS (SIDEBAR)
======================================== */
.shop-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 40px;
  padding: 48px 0;
}

.shop-sidebar {
  position: sticky;
  top: 100px;
  align-self: start;
}

.sidebar-widget {
  background: var(--black-card);
  border: var(--border-gold);
  border-radius: 8px;
  padding: 24px;
  margin-bottom: 24px;
}
.sidebar-widget h3 {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: var(--border-gold);
}
.sidebar-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.sidebar-widget ul li a {
  color: var(--gray);
  font-size: 0.9rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
  padding: 4px 0;
}
.sidebar-widget ul li a:hover { color: var(--gold); }
.sidebar-widget ul li a .count {
  background: rgba(196,162,101,0.15);
  color: var(--gold);
  font-size: 0.75rem;
  padding: 2px 8px;
  border-radius: 20px;
}

/* Price range slider */
.price-filter-inputs {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 16px;
}
.price-filter-inputs input {
  background: var(--black-soft);
  border: var(--border-gold);
  color: var(--white);
  padding: 8px 12px;
  border-radius: var(--radius);
  font-size: 0.85rem;
  width: 100%;
}
.price-filter-inputs input:focus {
  outline: none;
  border-color: var(--gold);
}

/* ========================================
   NOTIFICAÇÕES / ALERTS
======================================== */
.woocommerce-message,
.woocommerce-error,
.woocommerce-info {
  background: var(--black-card) !important;
  border-top: 3px solid var(--gold) !important;
  border-left: none !important;
  color: var(--white) !important;
  padding: 16px 20px !important;
  border-radius: 0 0 var(--radius) var(--radius) !important;
  margin-bottom: 24px !important;
}

/* ========================================
   PÁGINA SOBRE / CONTATO
======================================== */
.page-header {
  background: var(--black-soft);
  padding: 120px 0 60px;
  text-align: center;
  border-bottom: var(--border-gold);
}
.page-header h1 { color: var(--white); }
.page-header p { color: var(--gray); max-width: 600px; margin: 0 auto; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 80px 0;
}

.contact-form-group { margin-bottom: 20px; }
.contact-form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.contact-form-group input,
.contact-form-group textarea,
.contact-form-group select {
  width: 100%;
  background: var(--black-card);
  border: var(--border-gold);
  color: var(--white);
  padding: 14px 16px;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  transition: var(--transition);
}
.contact-form-group input:focus,
.contact-form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(196,162,101,0.1);
}
.contact-form-group textarea { min-height: 140px; resize: vertical; }

/* ========================================
   FRETE / ENTREGA BANNER
======================================== */
.shipping-banner {
  background: var(--black-card);
  border-top: var(--border-gold);
  border-bottom: var(--border-gold);
  padding: 24px 0;
}
.shipping-items {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
}
.shipping-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.85rem;
  color: var(--white-soft);
}
.shipping-item .icon {
  color: var(--gold);
  font-size: 1.4rem;
}
.shipping-item strong { color: var(--white); font-size: 0.9rem; }

/* ========================================
   RESPONSIVE
======================================== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .product-single-grid { gap: 40px; }
  .shop-layout { grid-template-columns: 1fr; }
  .shop-sidebar { position: static; }
  .shop-toolbar { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 768px) {
  .header-inner { height: 68px; }
  .main-nav {
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: rgba(250, 248, 244, 0.98);
    backdrop-filter: blur(12px);
    border-bottom: var(--border-gold);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
  }
  .main-nav.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  .main-nav ul {
    flex-direction: column;
    gap: 0;
    padding: 16px 0;
  }
  .main-nav ul li { width: 100%; }
  .main-nav ul li a {
    display: block;
    padding: 14px 24px;
    font-size: 0.85rem;
  }
  .menu-toggle { display: flex; }

  .hero-content { padding: 100px 24px 60px; }
  .hero h1 { font-size: 2rem; }

  .about-banner-inner { grid-template-columns: 1fr; }
  .about-image { display: none; }

  .product-single-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }

  .contact-grid { grid-template-columns: 1fr; }

  .about-stats { flex-wrap: wrap; gap: 20px; }

  .hero-buttons { flex-direction: column; align-items: center; }

  .whatsapp-float { bottom: 20px; right: 20px; width: 52px; height: 52px; }
}

@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-icon { width: 80px; height: 80px; }
  .shipping-items { gap: 20px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ========================================
   ORNAMENTOS / DECORAÇÃO
======================================== */
.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 24px 0;
  color: var(--gold);
  font-size: 1rem;
  opacity: 0.6;
  letter-spacing: 8px;
}

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* Selection */
::selection { background: var(--gold); color: var(--ink); }
