*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bordeaux: #6B2D3E;
  --bordeaux-dark: #4A1E2A;
  --bordeaux-light: #8B3F53;
  --rose: #E8A0B4;
  --rose-dark: #D87FA5;
  --blush: #F5D0DC;
  --nude: #E8D5C4;
  --cream: #FAF5F0;
  --cream-dark: #F0E8E0;
  --charcoal: #2A1F24;
  --gray: #7A7A7A;
  --gray-light: #E8E8E8;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Montserrat', sans-serif;
  --tr: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --tr-fast: 0.18s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }
body { 
  font-family: var(--font-sans); 
  background: var(--cream); 
  color: var(--charcoal); 
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ─── ANNOUNCEMENT ─── */
.announce {
  background: linear-gradient(135deg, var(--bordeaux), var(--bordeaux-dark));
  color: white;
  text-align: center; 
  padding: 12px 20px;
  font-size: 0.70rem; 
  letter-spacing: 0.15em; 
  text-transform: uppercase; 
  font-weight: 500;
  position: relative;
  overflow: hidden;
}
.announce::before {
  content: '✦';
  position: absolute;
  left: 20px;
  opacity: 0.5;
}
.announce::after {
  content: '✦';
  position: absolute;
  right: 20px;
  opacity: 0.5;
}

/* ─── HEADER ─── */
header {
  position: sticky; 
  top: 0; 
  z-index: 900;
  border-bottom: 1px solid rgba(107,45,62, .08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(250,245,240, .95);
  box-shadow: 0 2px 12px rgba(0,0,0, .04);
}
.header-inner {
  max-width: 1440px; 
  margin: 0 auto; 
  padding: 0 24px;
  height: 70px; 
  display: grid; 
  grid-template-columns: auto 1fr auto; 
  align-items: center;
  gap: 32px;
}
nav.primary { 
  display: flex; 
  gap: 28px;
  order: 2;
}
nav.primary a {
  font-size: .75rem; 
  letter-spacing: .12em; 
  text-transform: uppercase;
  color: var(--charcoal); 
  text-decoration: none; 
  font-weight: 500;
  position: relative; 
  transition: color var(--tr-fast);
  padding-bottom: 2px;
}
nav.primary a::after { 
  content: ''; 
  position: absolute; 
  bottom: -4px; 
  left: 0; 
  width: 0; 
  height: 2px; 
  background: linear-gradient(90deg, var(--bordeaux), var(--rose));
  transition: width var(--tr-fast); 
}
nav.primary a:hover { 
  color: var(--bordeaux); 
}
nav.primary a:hover::after { 
  width: 100%; 
}

/* ─── DROPDOWN MENU ─── */
.nav-item {
  position: relative;
  display: flex;
  align-items: center;
}
.nav-item > a {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-item .dropdown-icon {
  width: 12px;
  height: 12px;
  stroke-width: 2.5;
  transition: transform var(--tr-fast);
}
.nav-item.active .dropdown-icon {
  transform: rotate(180deg);
}
.dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  background: white;
  border: 1px solid rgba(107,45,62, .1);
  border-radius: 6px;
  box-shadow: 0 8px 32px rgba(42,31,36, .12);
  padding: 12px 0;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--tr);
  z-index: 1000;
  backdrop-filter: blur(8px);
}
.nav-item.active .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu a {
  display: block;
  padding: 12px 20px;
  color: var(--charcoal);
  text-decoration: none;
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 400;
  transition: all var(--tr-fast);
  border-left: 3px solid transparent;
}
.dropdown-menu a:hover {
  background: rgba(107,45,62, .05);
  color: var(--bordeaux);
  border-left-color: var(--bordeaux);
  padding-left: 24px;
}
.dropdown-menu a:first-child {
  padding-top: 8px;
}
.dropdown-menu a:last-child {
  padding-bottom: 8px;
}

.logo {
  text-align: center;
  text-decoration: none;
  order: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-img {
  height: 60px;
  width: auto;
  object-fit: contain;
  display: block;
}
.logo-name {
  font-family: var(--font-serif);
  font-size: 1.65rem;
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1;
  letter-spacing: -0.5px;
}
.logo-sub {
  font-size: .56rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--rose);
  font-weight: 600;
  margin-top: 3px;
}

.header-actions { 
  display: flex; 
  align-items: center; 
  gap: 8px; 
  justify-content: flex-end;
  order: 3;
}
.icon-btn {
  background: none; 
  border: none; 
  cursor: pointer; 
  color: var(--charcoal);
  display: flex; 
  align-items: center; 
  justify-content: center;
  width: 40px; 
  height: 40px; 
  border-radius: 50%; 
  transition: all var(--tr-fast);
  position: relative;
  font-size: 1.1rem;
}
.icon-btn:hover { 
  color: var(--bordeaux); 
  background: rgba(107,45,62, .08);
  transform: scale(1.05);
}
.icon-btn:active {
  transform: scale(0.95);
}
.icon-btn svg { 
  width: 20px; 
  height: 20px; 
  stroke-width: 1.5; 
}
.cart-badge {
  position: absolute; 
  top: -2px; 
  right: -2px; 
  background: linear-gradient(135deg, var(--bordeaux), var(--rose-dark)); 
  color: white;
  font-size: .55rem; 
  width: 18px; 
  height: 18px; 
  border-radius: 50%;
  display: none; 
  align-items: center; 
  justify-content: center; 
  font-weight: 700;
  animation: badgePop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.cart-badge.updated { animation: badgePop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1); }
@keyframes badgePop {
  0% { transform: scale(0); }
  50% { transform: scale(1.3); }
  100% { transform: scale(1); }
}

/* ─── SEARCH OVERLAY ─── */
.search-overlay {
  position: fixed; 
  inset: 0; 
  background: rgba(42,31,36, .92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 2000;
  display: flex; 
  align-items: center; 
  justify-content: center;
  opacity: 0; 
  pointer-events: none; 
  transition: opacity var(--tr-fast);
}
.search-overlay.active { 
  opacity: 1; 
  pointer-events: all; 
}
.search-box { 
  width: 90%; 
  max-width: 700px; 
  position: relative;
}
.search-box input {
  width: 100%; 
  background: transparent; 
  border: none;
  border-bottom: 2px solid rgba(245,208,220, .4);
  color: white; 
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 300;
  font-style: italic;
  padding: 16px 0 12px 0;
  outline: none;
  transition: border-color var(--tr);
}
.search-box input:focus {
  border-bottom-color: white;
}
.search-box input::placeholder { 
  color: rgba(245,208,220, .3); 
}
.search-close { 
  position: absolute; 
  top: -50px; 
  right: 0; 
  background: none; 
  border: none; 
  color: rgba(245,208,220, .6); 
  cursor: pointer; 
  font-size: 1.8rem;
  transition: color var(--tr-fast);
}
.search-close:hover { 
  color: white; 
}

/* ─── HERO ─── */
.hero {
  min-height: 100vh; 
  display: grid; 
  grid-template-columns: 1fr 1fr; 
  overflow: hidden;
  align-items: stretch;
  position: relative;
}
.hero-content {
  display: flex; 
  flex-direction: column; 
  justify-content: flex-start;
  padding: 140px 72px 80px 80px; 
  position: relative;
  z-index: 2;
  background: linear-gradient(135deg, var(--cream) 0%, rgba(245,208,220, .05) 100%);
}
.hero-eyebrow {
  font-size: .68rem; 
  letter-spacing: .38em; 
  text-transform: uppercase;
  color: var(--rose-dark); 
  font-weight: 600; 
  margin-bottom: 20px;
  display: flex; 
  align-items: center; 
  gap: 12px;
}
.hero-eyebrow::before { 
  content: ''; 
  width: 48px; 
  height: 2px; 
  background: linear-gradient(90deg, var(--rose-dark), transparent);
}
h1.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 6.2vw, 5.2rem);
  font-weight: 700;
  line-height: 1.08;
  color: var(--charcoal);
  margin-bottom: 24px;
  letter-spacing: -1px;
}
h1.hero-title em { 
  font-style: italic; 
  color: var(--bordeaux);
  font-weight: 700;
}
.hero-desc { 
  font-size: .98rem; 
  line-height: 1.8; 
  color: rgba(42,31,36, .62); 
  font-weight: 400; 
  max-width: 420px; 
  margin-bottom: 40px;
}
.hero-cta { 
  display: flex; 
  gap: 18px; 
  align-items: center;
  flex-wrap: wrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--bordeaux), var(--bordeaux-light)); 
  color: white; 
  border: none; 
  padding: 16px 44px;
  font-family: var(--font-sans); 
  font-size: .76rem; 
  letter-spacing: .16em;
  text-transform: uppercase; 
  cursor: pointer; 
  transition: all var(--tr);
  font-weight: 600; 
  text-decoration: none; 
  display: inline-block;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(107,45,62, .2);
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255, .2), transparent);
  opacity: 0;
  transition: opacity var(--tr);
}
.btn-primary:hover { 
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(107,45,62, .35);
}
.btn-primary:hover::before {
  opacity: 1;
}
.btn-ghost {
  color: var(--charcoal); 
  text-decoration: none; 
  font-size: .76rem;
  letter-spacing: .14em; 
  text-transform: uppercase; 
  font-weight: 600;
  display: flex; 
  align-items: center; 
  gap: 9px; 
  transition: all var(--tr);
  padding: 12px 0;
  position: relative;
}
.btn-ghost::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--bordeaux);
  transition: width var(--tr);
}
.btn-ghost:hover { 
  color: var(--bordeaux); 
}
.btn-ghost:hover::after {
  width: 100%;
}
.btn-ghost svg { 
  width: 16px; 
  height: 16px; 
  transition: transform var(--tr);
}
.btn-ghost:hover svg { 
  transform: translateX(5px); 
}

.hero-photo {
  position: relative; 
  overflow: hidden;
  background: linear-gradient(135deg, #1a0f15, #2a1520);
}
/* ── CARROSSEL HERO ── */
.hero-carousel {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  opacity: 0;
  transition: opacity .9s ease;
  will-change: opacity;
}
.hero-slide.active {
  opacity: .97;
}
.hero-carousel-dots {
  position: absolute;
  bottom: 52px;
  right: 22px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  z-index: 5;
}
.hero-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
  border: 1.5px solid rgba(255,255,255,.7);
  cursor: pointer;
  padding: 0;
  transition: background .3s, transform .3s;
}
.hero-dot.active {
  background: #fff;
  transform: scale(1.35);
}
/* Seta prev / next */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  background: rgba(255,255,255,.18);
  border: none;
  color: #fff;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s;
  backdrop-filter: blur(4px);
}
.hero-arrow:hover { background: rgba(255,255,255,.35); }
.hero-arrow.prev { left: 14px; }
.hero-arrow.next { right: 14px; }
.hero-arrow svg { width: 16px; height: 16px; }
.hero-photo-overlay {
  position: absolute; 
  inset: 0;
  background: linear-gradient(to right, rgba(250,245,240, .12) 0%, transparent 35%);
  pointer-events: none;
}
.hero-badge {
  position: absolute; 
  bottom: 44px; 
  left: 40px;
  background: white;
  padding: 20px 28px;
  box-shadow: 0 12px 48px rgba(42,31,36, .15);
  border-radius: 4px;
  backdrop-filter: blur(8px);
  z-index: 3;
}
.hero-badge-title { 
  font-family: var(--font-serif); 
  font-size: 1.1rem; 
  font-weight: 600; 
  color: var(--bordeaux);
}
.hero-badge-sub { 
  font-size: .66rem; 
  letter-spacing: .12em; 
  text-transform: uppercase; 
  color: rgba(42,31,36, .55); 
  margin-top: 5px;
  font-weight: 500;
}

/* ─── FEATURES ─── */
.features-bar { 
  background: linear-gradient(135deg, var(--cream-dark) 0%, var(--cream) 100%);
  border-top: 1px solid rgba(107,45,62, .06);
  border-bottom: 1px solid rgba(107,45,62, .06);
}
.features-inner {
  max-width: 1440px; 
  margin: 0 auto; 
  padding: 56px 24px;
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); 
  gap: 32px;
}
.feature-item { 
  text-align: center; 
  padding: 8px;
  transition: transform var(--tr);
}
.feature-item:hover {
  transform: translateY(-4px);
}
.feature-icon { 
  width: 48px; 
  height: 48px; 
  margin: 0 auto 16px;
  color: var(--bordeaux);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(232,160,180, .12);
  border-radius: 50%;
  transition: all var(--tr);
}
.feature-item:hover .feature-icon {
  background: linear-gradient(135deg, var(--rose), var(--blush));
  color: white;
  transform: scale(1.1);
}
.feature-title { 
  font-family: var(--font-serif); 
  font-size: 1.05rem; 
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--charcoal);
}
.feature-desc { 
  font-size: .82rem; 
  color: rgba(42,31,36, .6); 
  line-height: 1.65; 
  font-weight: 400;
}

/* ─── CATEGORIES ─── */
.cats-bg { 
  background: linear-gradient(180deg, var(--charcoal) 0%, #352028 100%);
  position: relative;
  overflow: hidden;
}
.cats-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(232,160,180, .08) 0%, transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(107,45,62, .08) 0%, transparent 50%);
  pointer-events: none;
}
.cats-inner { 
  max-width: 1440px; 
  margin: 0 auto; 
  padding: 88px 24px; 
  position: relative;
  z-index: 1;
}
.section-eyebrow { 
  font-size: .68rem; 
  letter-spacing: .3em; 
  text-transform: uppercase; 
  font-weight: 600; 
  margin-bottom: 14px;
}
.section-title { 
  font-family: var(--font-serif); 
  font-size: clamp(2.2rem, 3.2vw, 2.8rem); 
  font-weight: 700; 
  line-height: 1.15;
}
.section-title em { 
  font-style: italic;
}
.section-header { 
  display: flex; 
  align-items: flex-end; 
  justify-content: space-between; 
  margin-bottom: 56px;
  flex-wrap: wrap;
  gap: 16px;
}
.section-link { 
  font-size: .73rem; 
  letter-spacing: .14em; 
  text-transform: uppercase; 
  text-decoration: none; 
  font-weight: 600; 
  display: flex; 
  align-items: center; 
  gap: 8px; 
  white-space: nowrap; 
  transition: all var(--tr); 
  padding-bottom: 2px;
  position: relative;
}
.section-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: currentColor;
  transition: width var(--tr);
}
.section-link:hover { 
  opacity: 1;
  transform: translateX(4px);
}
.section-link:hover::after {
  width: 100%;
}

.cats-grid { 
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); 
  gap: 20px;
}
.cat-card { 
  position: relative; 
  aspect-ratio: 3/4; 
  overflow: hidden; 
  cursor: pointer; 
  border-radius: 6px;
  transition: all var(--tr);
}
.cat-card:hover {
  transform: translateY(-8px);
}
.cat-card:hover .cat-img,
.cat-card:hover .cat-img-ph {
  transform: scale(1.08);
}
.cat-img { 
  width: 100%; 
  height: 100%; 
  object-fit: cover; 
  transition: transform 0.6s cubic-bezier(0.2, 0, 0.2, 1); 
}
.cat-img-ph { 
  width: 100%; 
  height: 100%; 
  transition: transform 0.6s cubic-bezier(0.2, 0, 0.2, 1);
}

.ph-conj    { background: linear-gradient(160deg, #F5D0DC 0%, #E8A0B4 50%, #C96B8A 100%); }
.ph-sutia   { background: linear-gradient(160deg, #FAF5F0 0%, #E8D5C4 50%, #D4B5A0 100%); }
.ph-short   { background: linear-gradient(160deg, #4A2040 0%, #6B3860 50%, #8B4565 100%); }
.ph-academia{ background: linear-gradient(160deg, #2a1a28 0%, #4D2035 50%, #6B3860 100%); }
.ph-masc    { background: linear-gradient(160deg, #1a2a40 0%, #2D4A70 50%, #3D6A90 100%); }
.ph-inf     { background: linear-gradient(160deg, #C8E0A4 0%, #90C850 50%, #60A030 100%); }

.cat-grad { 
  position: absolute; 
  inset: 0; 
  background: linear-gradient(to top, rgba(0,0,0, .7) 0%, rgba(0,0,0, .3) 40%, transparent 100%);
  transition: background var(--tr);
}
.cat-card:hover .cat-grad {
  background: linear-gradient(to top, rgba(0,0,0, .5) 0%, rgba(0,0,0, .2) 40%, transparent 100%);
}
.cat-info { 
  position: absolute; 
  inset: 0; 
  display: flex; 
  flex-direction: column; 
  justify-content: flex-end; 
  padding: 28px 22px; 
  z-index: 2;
}
.cat-count { 
  font-size: .62rem; 
  letter-spacing: .2em; 
  text-transform: uppercase; 
  color: rgba(255,255,255, .6); 
  margin-bottom: 8px;
  font-weight: 500;
}
.cat-name { 
  font-family: var(--font-serif); 
  font-size: 1.45rem; 
  font-weight: 700;
  color: white;
  margin-bottom: 12px;
}
.cat-arrow {
  width: 38px; 
  height: 38px; 
  border: 2px solid rgba(255,255,255, .35); 
  border-radius: 50%;
  display: flex; 
  align-items: center; 
  justify-content: center;
  margin-top: 12px; 
  opacity: 0; 
  transform: translateY(12px) translateX(-8px);
  transition: all var(--tr);
  color: white;
}
.cat-card:hover .cat-arrow { 
  opacity: 1; 
  transform: translateY(0) translateX(0);
}

/* ─── CATALOG ─── */
.catalog-section { 
  max-width: 1440px; 
  margin: 0 auto; 
  padding: 88px 24px;
}

.filter-bar {
  display: flex; 
  gap: 12px; 
  flex-wrap: wrap; 
  margin-bottom: 56px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(107,45,62, .12);
  overflow-x: auto;
}
.filter-btn {
  background: transparent; 
  border: 1.5px solid rgba(107,45,62, .25);
  padding: 11px 26px; 
  font-family: var(--font-sans); 
  font-size: .73rem;
  letter-spacing: .1em; 
  text-transform: uppercase; 
  cursor: pointer;
  color: var(--charcoal); 
  transition: all var(--tr); 
  border-radius: 24px;
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
  position: relative;
}
.filter-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--bordeaux);
  border-radius: 24px;
  z-index: -1;
  opacity: 0;
  transition: opacity var(--tr);
}
.filter-btn:hover { 
  border-color: var(--bordeaux);
  color: var(--bordeaux);
}
.filter-btn.active {
  background: linear-gradient(135deg, var(--bordeaux), var(--rose-dark));
  color: white;
  border-color: var(--bordeaux);
  box-shadow: 0 4px 15px rgba(107,45,62, .25);
}

.sort-select {
  margin-left:auto;
  padding:10px 32px 10px 14px;
  border:1.5px solid rgba(107,45,62,.25);
  border-radius:50px;
  background:transparent url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%236B2D3E'/%3E%3C/svg%3E") no-repeat right 12px center;
  font-family:var(--sans);
  font-size:.74rem;
  color:var(--charcoal);
  cursor:pointer;
  appearance:none;
  -webkit-appearance:none;
  flex-shrink:0;
  transition:border-color var(--tr);
}
.sort-select:hover { border-color:var(--bordeaux); }
.sort-select:focus { outline:none; border-color:var(--bordeaux); }

.products-grid { 
  display: grid; 
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); 
  gap: 28px;
}

.product-card {
  cursor: pointer; 
  transition: all var(--tr);
  animation: fadeInUp 0.6s ease-out forwards;
  opacity: 0;
}
.product-card.hidden { 
  display: none; 
}

.prod-img-wrap {
  position: relative; 
  aspect-ratio: 3/4; 
  overflow: hidden;
  border-radius: 6px; 
  margin-bottom: 14px; 
  background: #111;
}
.prod-img-wrap img {
  width: 100%; 
  height: 100%; 
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2, 0, 0.2, 1); 
  display: block;
}
.product-card:hover .prod-img-wrap img { 
  transform: scale(1.06);
}

.prod-badge {
  position: absolute; 
  top: 12px; 
  left: 12px; 
  z-index: 3;
  font-size: .62rem; 
  letter-spacing: .1em; 
  text-transform: uppercase; 
  padding: 6px 12px; 
  font-weight: 700;
  border-radius: 3px;
  backdrop-filter: blur(8px);
}
.badge-new { 
  background: rgba(42,31,36, .9); 
  color: white;
}
.badge-hot { 
  background: linear-gradient(135deg, rgba(232,160,180, .95), rgba(220,127,149, .95)); 
  color: white;
}

.prod-multi {
  position: absolute; 
  top: 12px; 
  right: 12px; 
  z-index: 3;
  background: rgba(0,0,0, .65); 
  color: white; 
  font-size: .62rem;
  padding: 6px 10px; 
  letter-spacing: .05em;
  display: flex; 
  align-items: center; 
  gap: 5px;
  border-radius: 3px;
  font-weight: 600;
  backdrop-filter: blur(8px);
}
.prod-multi svg { 
  width: 12px; 
  height: 12px;
}

.prod-actions {
  position: absolute; 
  bottom: 12px; 
  left: 12px; 
  right: 12px;
  display: flex; 
  gap: 8px;
  transform: translateY(16px); 
  opacity: 0; 
  transition: all var(--tr);
  z-index: 2;
}
.product-card:hover .prod-actions { 
  transform: translateY(0); 
  opacity: 1;
}
.btn-add {
  flex: 1; 
  background: rgba(42,31,36, .92); 
  color: white; 
  border: none;
  padding: 12px; 
  font-size: .68rem; 
  letter-spacing: .1em; 
  text-transform: uppercase;
  cursor: pointer; 
  font-family: var(--font-sans); 
  font-weight: 600;
  transition: all var(--tr);
  border-radius: 3px;
  backdrop-filter: blur(4px);
}
.btn-add:hover { 
  background: linear-gradient(135deg, var(--bordeaux), var(--rose-dark));
  transform: scale(1.02);
}
.btn-add:active {
  transform: scale(0.98);
}
.btn-wish {
  width: 44px; 
  background: rgba(255,255,255, .92); 
  border: none;
  display: flex; 
  align-items: center; 
  justify-content: center;
  cursor: pointer; 
  color: var(--charcoal); 
  transition: all var(--tr);
  border-radius: 3px;
  backdrop-filter: blur(4px);
}
.btn-wish:hover { 
  background: var(--blush); 
  color: var(--bordeaux);
  transform: scale(1.08);
}
.btn-wish svg { 
  width: 18px; 
  height: 18px;
}

.prod-info { 
  padding: 0 2px;
}
.prod-cat-label {
  font-size: .63rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--rose-dark);
  margin-bottom: 6px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.prod-code {
  font-size: .6rem;
  letter-spacing: .05em;
  color: #aaa;
  font-weight: 500;
  text-transform: none;
  white-space: nowrap;
}
.prod-name { 
  font-family: var(--font-serif); 
  font-size: 1.08rem; 
  font-weight: 600; 
  color: var(--charcoal); 
  margin-bottom: 6px; 
  line-height: 1.3;
}
.prod-code { 
  font-size: .62rem; 
  color: rgba(42,31,36, .42); 
  margin-bottom: 10px;
  font-weight: 400;
}
.prod-price-row { 
  display: flex; 
  align-items: center; 
  gap: 9px;
  margin-bottom: 10px;
}
.prod-price {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--bordeaux);
}
.prod-price-wrap { display:flex; align-items:baseline; gap:6px; flex-wrap:wrap; }
.prod-price-from { font-size:.82rem; color:#999; text-decoration:line-through; font-weight:400; }
.prod-price-promo { font-size:1.08rem; font-weight:800; color:var(--bordeaux); }
.prod-unit { font-size:.68rem; color:#999; font-weight:400; }
.prod-stock { font-size:.65rem; color:#d4a017; font-weight:500; margin-top:5px; }

/* ── Sold Out styles ── */
.badge-soldout {
  background: rgba(120, 120, 120, .92);
  color: white;
}
.sold-out .prod-img-main,
.sold-out .prod-img-hover,
.sold-out .dest-img-main,
.sold-out .dest-img-hover,
.sold-out .bs-img-main,
.sold-out .bs-img-hover {
  filter: grayscale(60%) opacity(.7);
  transition: filter .3s;
}
.sold-out:hover .prod-img-main,
.sold-out:hover .dest-img-main,
.sold-out:hover .bs-img-main {
  filter: grayscale(30%) opacity(.85);
}
.prod-soldout, .dest-soldout, .bs-soldout {
  color: #999 !important;
  font-style: italic;
}
.btn-soldout {
  background: #ccc !important;
  color: #777 !important;
  cursor: not-allowed !important;
  pointer-events: none;
}
.btn-esgotado {
  background: #ccc !important;
  color: #777 !important;
  cursor: not-allowed !important;
}
.prod-sizes { 
  display: flex; 
  gap: 6px; 
  flex-wrap: wrap;
}
.sz { 
  font-size: .62rem; 
  color: rgba(42,31,36, .5); 
  border: 1.5px solid rgba(42,31,36, .18); 
  padding: 4px 9px; 
  cursor: pointer; 
  transition: all var(--tr);
  border-radius: 3px;
  font-weight: 500;
}
.sz:hover { 
  border-color: var(--bordeaux); 
  color: var(--bordeaux);
  background: rgba(107,45,62, .05);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ─── PROMO BANNER ─── */
.promo-bg { 
  background: linear-gradient(135deg, #5D2638 0%, #8B3F53 50%, #6B2D3E 100%); 
  position: relative; 
  overflow: hidden;
}
.promo-inner { 
  max-width: 1440px; 
  margin: 0 auto; 
  padding: 80px 24px; 
  display: grid; 
  grid-template-columns: 1fr 1fr; 
  align-items: center; 
  gap: 72px;
  position: relative;
  z-index: 2;
}
.promo-deco { 
  position: absolute; 
  inset: 0; 
  pointer-events: none;
  overflow: hidden;
}
.promo-c1 { 
  position: absolute; 
  width: 520px; 
  height: 520px; 
  border-radius: 50%; 
  background: radial-gradient(circle, rgba(255,255,255, .06) 0%, transparent 70%);
  top: -160px; 
  right: -120px;
}
.promo-c2 { 
  position: absolute; 
  width: 320px; 
  height: 320px; 
  border-radius: 50%; 
  background: radial-gradient(circle, rgba(255,255,255, .04) 0%, transparent 70%);
  bottom: -100px; 
  left: 200px;
}
.promo-eyebrow { 
  font-size: .68rem; 
  letter-spacing: .35em; 
  text-transform: uppercase; 
  color: rgba(255,255,255, .75); 
  font-weight: 600; 
  margin-bottom: 18px;
}
.promo-title { 
  font-family: var(--font-serif); 
  font-size: clamp(2rem, 4.2vw, 3.8rem); 
  font-weight: 700; 
  color: white; 
  line-height: 1.1; 
  margin-bottom: 20px;
}
.promo-title em { 
  font-style: italic; 
  color: var(--blush);
}
.promo-desc { 
  color: rgba(255,255,255, .75); 
  font-size: .98rem; 
  line-height: 1.8; 
  font-weight: 400; 
  margin-bottom: 36px;
  max-width: 500px;
}
.promo-btn {
  background: white; 
  color: var(--bordeaux); 
  border: none; 
  padding: 16px 44px;
  font-family: var(--font-sans); 
  font-size: .76rem; 
  letter-spacing: .16em;
  text-transform: uppercase; 
  cursor: pointer; 
  font-weight: 700;
  transition: all var(--tr);
  text-decoration: none; 
  display: inline-block;
  border-radius: 4px;
  box-shadow: 0 8px 24px rgba(0,0,0, .2);
}
.promo-btn:hover { 
  background: var(--blush); 
  transform: translateY(-3px); 
  box-shadow: 0 12px 40px rgba(0,0,0, .3);
}
.promo-photos { 
  display: grid; 
  grid-template-columns: 1fr 1fr; 
  gap: 16px; 
  align-items: center;
}
.promo-photo { 
  border-radius: 6px; 
  overflow: hidden; 
  position: relative;
  transition: transform var(--tr);
}
.promo-photo:hover {
  transform: translateY(-4px);
}
.promo-photo-1 { 
  aspect-ratio: 2/3;
}
.promo-photo-2 { 
  aspect-ratio: 3/4; 
  align-self: end;
}
.promo-photo img { 
  width: 100%; 
  height: 100%; 
  object-fit: cover; 
  display: block;
  transition: transform 0.6s cubic-bezier(0.2, 0, 0.2, 1);
}
.promo-photo:hover img {
  transform: scale(1.05);
}
.promo-disc {
  position: absolute; 
  top: 16px; 
  right: 16px;
  width: 62px; 
  height: 62px; 
  border-radius: 50%;
  background: rgba(107,45,62, .95); 
  color: white;
  display: flex; 
  flex-direction: column; 
  align-items: center; 
  justify-content: center;
  font-weight: 800; 
  font-size: .88rem; 
  line-height: 1;
  box-shadow: 0 4px 20px rgba(0,0,0, .2);
  backdrop-filter: blur(8px);
}
.promo-disc span { 
  font-size: .5rem; 
  font-weight: 500; 
  letter-spacing: .08em;
  margin-top: 2px;
}

/* ─── NEWSLETTER ─── */
.nl-bg { 
  background: linear-gradient(180deg, white 0%, rgba(232,160,180, .05) 100%);
  border-top: 1px solid rgba(107,45,62, .08);
  border-bottom: 1px solid rgba(107,45,62, .08);
}
.nl-inner { 
  max-width: 620px; 
  margin: 0 auto; 
  text-align: center; 
  padding: 100px 24px;
}
.nl-eyebrow { 
  font-size: .68rem; 
  letter-spacing: .3em; 
  text-transform: uppercase; 
  color: var(--rose-dark); 
  font-weight: 600; 
  margin-bottom: 16px;
}
.nl-title { 
  font-family: var(--font-serif); 
  font-size: clamp(2rem, 3.2vw, 2.8rem); 
  font-weight: 700; 
  color: var(--charcoal); 
  line-height: 1.2; 
  margin-bottom: 16px;
}
.nl-title em { 
  font-style: italic; 
  color: var(--bordeaux);
}
.nl-desc { 
  font-size: .95rem; 
  color: rgba(42,31,36, .6); 
  line-height: 1.8; 
  font-weight: 400; 
  margin-bottom: 40px;
}
.nl-form { 
  display: flex; 
  max-width: 480px; 
  margin: 0 auto;
  gap: 0;
  box-shadow: 0 6px 24px rgba(107,45,62, .12);
  border-radius: 4px;
  overflow: hidden;
}
.nl-form input {
  flex: 1; 
  border: none;
  padding: 15px 20px; 
  font-family: var(--font-sans); 
  font-size: .9rem;
  color: var(--charcoal); 
  background: white; 
  outline: none;
  transition: all var(--tr);
}
.nl-form input:focus { 
  background: rgba(232,160,180, .05);
}
.nl-form input::placeholder { 
  color: rgba(42,31,36, .35);
}
.nl-form button {
  background: linear-gradient(135deg, var(--bordeaux), var(--rose-dark)); 
  color: white; 
  border: none; 
  padding: 15px 32px;
  font-family: var(--font-sans); 
  font-size: .75rem; 
  letter-spacing: .14em;
  text-transform: uppercase; 
  cursor: pointer; 
  font-weight: 700;
  transition: all var(--tr);
  white-space: nowrap;
}
.nl-form button:hover { 
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(107,45,62, .3);
}
.nl-disc { 
  font-size: .72rem; 
  color: rgba(42,31,36, .4); 
  margin-top: 16px;
  font-weight: 400;
}

/* ─── FOOTER ─── */
footer { 
  background: linear-gradient(180deg, #2A1F24 0%, #1a0f15 100%);
  padding: 80px 24px 36px;
  border-top: 1px solid rgba(250,245,240, .08);
}
.footer-inner { 
  max-width: 1440px; 
  margin: 0 auto;
}
.footer-top { 
  display: grid; 
  grid-template-columns: 1.8fr 1fr 1fr 1fr; 
  gap: 60px; 
  margin-bottom: 60px;
}
.footer-logo {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: white;
  line-height: 1;
  letter-spacing: -0.5px;
}
.footer-logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
  display: block;
  margin-bottom: 14px;
}
.footer-logo-sub {
  font-size: .57rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--rose);
  font-weight: 600;
  margin-top: 6px;
}
.footer-brand p { 
  font-size: .85rem; 
  line-height: 1.8; 
  font-weight: 400; 
  margin-top: 20px; 
  color: rgba(250,245,240, .55);
}
.footer-social { 
  display: flex; 
  gap: 12px; 
  margin-top: 24px;
}
.soc-btn {
  width: 40px; 
  height: 40px; 
  border: 1.5px solid rgba(250,245,240, .2); 
  border-radius: 50%;
  display: flex; 
  align-items: center; 
  justify-content: center;
  color: rgba(250,245,240, .6); 
  transition: all var(--tr); 
  background: transparent; 
  text-decoration: none; 
  cursor: pointer;
}
.soc-btn:hover { 
  border-color: var(--rose); 
  color: white; 
  background: linear-gradient(135deg, var(--rose), var(--blush));
  transform: translateY(-3px);
}
.soc-btn svg { 
  width: 16px; 
  height: 16px;
}
.footer-col h4 { 
  font-family: var(--font-serif); 
  font-size: 1.02rem; 
  font-weight: 700; 
  color: white; 
  margin-bottom: 22px;
  letter-spacing: -0.3px;
}
.footer-col ul { 
  list-style: none; 
  display: flex; 
  flex-direction: column; 
  gap: 12px;
}
.footer-col ul li a { 
  color: rgba(250,245,240, .55); 
  text-decoration: none; 
  font-size: .85rem; 
  font-weight: 400; 
  transition: all var(--tr);
  position: relative;
}
.footer-col ul li a::before {
  content: '→';
  position: absolute;
  left: -16px;
  opacity: 0;
  transition: opacity var(--tr), left var(--tr);
}
.footer-col ul li a:hover { 
  color: white;
}
.footer-col ul li a:hover::before {
  opacity: 1;
  left: -20px;
}
.footer-delivery {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px 24px;
  margin-bottom: 28px;
  background: rgba(250,245,240,.06);
  border: 1px solid rgba(250,245,240,.1);
  border-radius: 8px;
}
.fd-icon { color: var(--rose); flex-shrink: 0; margin-top: 2px; }
.fd-text { font-size: .8rem; color: rgba(250,245,240,.55); line-height: 1.7; font-weight: 300; }
.fd-text strong { color: var(--rose); font-weight: 600; }

.footer-bottom {
  border-top: 1px solid rgba(250,245,240, .1);
  padding-top: 32px;
  display: flex;
  justify-content: space-between; 
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-copy { 
  font-size: .76rem; 
  color: rgba(250,245,240, .35);
  font-weight: 400;
}
.footer-pays { 
  display: flex; 
  gap: 10px;
  flex-wrap: wrap;
}
.pay-badge { 
  background: rgba(250,245,240, .08); 
  border: 1px solid rgba(250,245,240, .15); 
  padding: 6px 12px; 
  font-size: .68rem; 
  color: rgba(250,245,240, .5); 
  border-radius: 3px;
  font-weight: 500;
  transition: all var(--tr);
}
.pay-badge:hover {
  background: rgba(250,245,240, .12);
  color: rgba(250,245,240, .7);
  border-color: rgba(250,245,240, .25);
}

/* ─── FLOATING BUTTONS ─── */
.float-btn {
  position: fixed;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  font-size: 1.4rem;
  transition: all var(--tr);
  z-index: 800;
  box-shadow: 0 4px 20px rgba(0,0,0, .15);
  backdrop-filter: blur(8px);
}

/* WhatsApp Button */
#wppBtn {
  bottom: 20px;
  right: 20px;
  background: linear-gradient(135deg, #25D366, #1ebe59);
  color: white;
  animation: float 3s ease-in-out infinite;
}
#wppBtn:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 32px rgba(37,211,102, .4);
}
#wppBtn:active {
  transform: scale(0.95);
}
#wppBtn svg {
  width: 24px;
  height: 24px;
  stroke-width: 1.5;
}

/* Back to Top Button */
#backToTop {
  bottom: 90px;
  right: 20px;
  background: linear-gradient(135deg, var(--bordeaux), var(--rose-dark));
  color: white;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--tr);
}
#backToTop.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
#backToTop:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(107,45,62, .35);
}
#backToTop svg {
  width: 22px;
  height: 22px;
  stroke-width: 2;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102, .15); }
  50% { box-shadow: 0 4px 32px rgba(37,211,102, .35); }
}

#wppBtn {
  animation: float 3s ease-in-out infinite, pulse 2s ease-in-out infinite;
}

@media (max-width: 768px) {
  .float-btn {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }

  #wppBtn {
    bottom: 16px;
    right: 16px;
  }

  #backToTop {
    bottom: 80px;
    right: 16px;
  }
}

@media (max-width: 480px) {
  .float-btn {
    width: 48px;
    height: 48px;
    font-size: 1.1rem;
  }

  #wppBtn {
    bottom: 12px;
    right: 12px;
  }

  #backToTop {
    bottom: 72px;
    right: 12px;
  }
}

/* ─── FADE ANIMATIONS ─── */
.fade-up { 
  opacity: 0; 
  transform: translateY(28px); 
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible { 
  opacity: 1; 
  transform: translateY(0);
}
.fade-up:nth-child(2) { transition-delay: .1s; }
.fade-up:nth-child(3) { transition-delay: .2s; }
.fade-up:nth-child(4) { transition-delay: .3s; }
.fade-up:nth-child(5) { transition-delay: .4s; }
.fade-up:nth-child(6) { transition-delay: .5s; }
.fade-up:nth-child(7) { transition-delay: .6s; }
.fade-up:nth-child(8) { transition-delay: .7s; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1200px) {
  .header-inner {
    padding: 0 20px;
  }
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-content {
    padding: 100px 32px 60px 32px;
  }
  .hero-photo {
    height: 50vw;
    min-height: 340px;
  }
  .cats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
  }
  .promo-inner {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 60px 32px;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .header-inner {
    padding: 0 16px;
    height: 64px;
    grid-template-columns: auto 1fr auto;
    gap: 12px;
  }
  nav.primary {
    display: none;
  }
  .logo-name {
    font-size: 1.35rem;
  }
  .logo-sub {
    font-size: .5rem;
  }
  .icon-btn {
    width: 36px;
    height: 36px;
  }
  .announce {
    padding: 10px 16px;
    font-size: .65rem;
  }
  .announce::before,
  .announce::after {
    display: none;
  }
  
  .hero-content {
    padding: 80px 20px 56px;
    background: none;
  }
  h1.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
  }
  .hero-desc {
    font-size: .9rem;
    max-width: 100%;
    margin-bottom: 32px;
  }
  .hero-cta {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }
  .btn-primary,
  .btn-ghost {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
  .btn-ghost {
    padding: 12px 16px;
  }
  
  .features-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    padding: 40px 20px;
  }
  .feature-item:hover {
    transform: none;
  }
  
  .cats-inner {
    padding: 56px 20px;
  }
  .section-header {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 40px;
  }
  .section-title {
    font-size: clamp(1.8rem, 3vw, 2.2rem);
  }
  .cats-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 12px;
  }
  .cat-name {
    font-size: 1.1rem;
  }
  .cat-count {
    font-size: .58rem;
  }
  
  .catalog-section {
    padding: 56px 20px;
  }
  .filter-bar {
    gap: 8px;
    margin-bottom: 40px;
    padding-bottom: 16px;
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .filter-bar::-webkit-scrollbar { display: none; }
  .filter-btn {
    padding: 8px 16px;
    font-size: .68rem;
    white-space: nowrap;
    flex-shrink: 0;
  }
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  
  .promo-inner {
    padding: 48px 20px;
    gap: 32px;
  }
  .promo-title {
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  }
  .promo-desc {
    font-size: .88rem;
  }
  .promo-btn {
    width: 100%;
    padding: 14px 20px;
  }
  .promo-photos {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .promo-photo-1,
  .promo-photo-2 {
    aspect-ratio: auto;
    min-height: 280px;
  }
  
  .nl-inner {
    padding: 60px 20px;
  }
  .nl-title {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
  }
  .nl-form {
    flex-direction: column;
    gap: 0;
  }
  .nl-form input {
    border-radius: 4px 4px 0 0;
    padding: 14px 16px;
  }
  .nl-form button {
    border-radius: 0 0 4px 4px;
    padding: 14px 16px;
  }
  
  footer {
    padding: 56px 20px 28px;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 40px;
  }
  .footer-col h4 {
    font-size: .95rem;
    margin-bottom: 16px;
  }
  .footer-col ul {
    gap: 8px;
  }
  .footer-col ul li a {
    font-size: .78rem;
  }
  .footer-copy {
    font-size: .68rem;
  }
  .footer-pays {
    order: 1;
    justify-content: center;
    gap: 8px;
  }
}

@media (max-width: 480px) {
  .header-inner {
    padding: 0 12px;
  }
  .logo-name {
    font-size: 1.15rem;
  }
  .logo-sub {
    font-size: .48rem;
    letter-spacing: .2em;
  }
  .icon-btn {
    width: 32px;
    height: 32px;
  }
  .icon-btn svg {
    width: 18px;
    height: 18px;
  }
  .cart-badge {
    width: 16px;
    height: 16px;
    font-size: .5rem;
  }
  
  .hero-content {
    padding: 70px 16px 48px;
  }
  h1.hero-title {
    font-size: clamp(1.6rem, 4.5vw, 2.8rem);
    letter-spacing: 0;
  }
  .hero-eyebrow {
    font-size: .65rem;
    margin-bottom: 16px;
  }
  .hero-eyebrow::before {
    width: 32px;
    height: 1.5px;
  }
  .hero-desc {
    font-size: .85rem;
    line-height: 1.7;
    margin-bottom: 24px;
  }
  .btn-primary,
  .btn-ghost {
    font-size: .7rem;
    padding: 11px 20px;
  }
  .hero-badge {
    bottom: 16px;
    left: 16px;
    padding: 12px 16px;
  }
  .hero-badge-title {
    font-size: .9rem;
  }
  .hero-badge-sub {
    font-size: .6rem;
  }
  
  .features-inner {
    padding: 32px 16px;
    gap: 16px;
  }
  .feature-title {
    font-size: .95rem;
  }
  .feature-desc {
    font-size: .78rem;
  }
  
  .cats-inner {
    padding: 40px 16px;
  }
  .section-title {
    font-size: clamp(1.5rem, 2.5vw, 1.8rem);
  }
  .cats-grid {
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 8px;
  }
  .cat-name {
    font-size: .9rem;
  }
  .cat-info {
    padding: 16px 12px;
  }
  
  .catalog-section {
    padding: 40px 16px;
  }
  .filter-bar {
    margin-bottom: 32px;
    padding-bottom: 12px;
  }
  .filter-btn {
    padding: 7px 14px;
    font-size: .64rem;
  }
  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 8px;
  }
  .prod-info {
    padding: 0;
  }
  .prod-name {
    font-size: .9rem;
    margin-bottom: 4px;
  }
  .prod-code {
    font-size: .58rem;
    margin-bottom: 6px;
  }
  .prod-sizes {
    gap: 4px;
  }
  .sz {
    font-size: .56rem;
    padding: 2px 6px;
  }
  
  .promo-inner {
    padding: 40px 16px;
    gap: 24px;
  }
  .promo-eyebrow {
    font-size: .63rem;
  }
  .promo-title {
    font-size: clamp(1.4rem, 2.8vw, 1.8rem);
  }
  .promo-desc {
    font-size: .8rem;
    margin-bottom: 24px;
  }
  .promo-btn {
    padding: 12px 16px;
    font-size: .68rem;
  }
  .promo-photo {
    min-height: 240px;
  }
  
  .nl-inner {
    padding: 48px 16px;
  }
  .nl-eyebrow {
    font-size: .63rem;
    margin-bottom: 12px;
  }
  .nl-title {
    font-size: clamp(1.4rem, 2.8vw, 1.8rem);
    margin-bottom: 12px;
  }
  .nl-desc {
    font-size: .85rem;
    margin-bottom: 28px;
  }
  .nl-form input,
  .nl-form button {
    font-size: .8rem;
    padding: 12px 14px;
  }
  .nl-disc {
    font-size: .65rem;
    margin-top: 12px;
  }
  
  footer {
    padding: 40px 16px 20px;
  }
  .footer-logo {
    font-size: 1.3rem;
  }
  .footer-logo-sub {
    font-size: .52rem;
  }
  .footer-brand p {
    font-size: .78rem;
    margin-top: 12px;
  }
  .footer-social {
    gap: 8px;
    margin-top: 16px;
  }
  .soc-btn {
    width: 36px;
    height: 36px;
  }
  .footer-col h4 {
    font-size: .88rem;
    margin-bottom: 12px;
  }
  .footer-col ul {
    gap: 8px;
  }
  .footer-col ul li a {
    font-size: .78rem;
  }
  .footer-copy {
    font-size: .68rem;
  }
  .pay-badge {
    font-size: .6rem;
    padding: 4px 8px;
  }
}


/* ─────────────────────────────────────────
   HAMBURGER + MOBILE NAV
───────────────────────────────────────── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 4px;
  background: none;
  border: none;
  cursor: pointer;
  order: 0;
}
.hamburger span {
  display: block;
  height: 1.5px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: transform .3s, opacity .3s, width .3s;
  transform-origin: center;
}
.hamburger span:nth-child(1) { width: 22px; }
.hamburger span:nth-child(2) { width: 16px; }
.hamburger span:nth-child(3) { width: 22px; }
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); width: 22px; }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); width: 22px; }

.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.35);
  z-index: 1100;
  opacity: 0;
  transition: opacity .3s;
}
.mobile-nav-overlay.open {
  display: block;
  opacity: 1;
}
.mobile-nav-panel {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: min(300px, 85vw);
  background: #fff;
  z-index: 1101;
  transform: translateX(-100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
.mobile-nav-panel.open {
  transform: translateX(0);
}
.mobile-nav-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid var(--silk);
}
.mobile-nav-head img {
  height: 40px;
  object-fit: contain;
}
.mobile-nav-close {
  background: none;
  border: none;
  font-size: 1.3rem;
  color: var(--charcoal);
  cursor: pointer;
  line-height: 1;
}
.mobile-nav-links {
  padding: 12px 0;
  flex: 1;
}
.mobile-nav-links a {
  display: block;
  padding: 13px 24px;
  font-family: var(--font-sans);
  font-size: .88rem;
  font-weight: 500;
  color: var(--charcoal);
  text-decoration: none;
  letter-spacing: .04em;
  border-bottom: 1px solid #f2eff0;
  transition: background .2s, color .2s;
}
.mobile-nav-links a:hover {
  background: var(--blush);
  color: var(--bordeaux);
}
.mobile-nav-section {
  padding: 6px 24px 2px;
  font-family: var(--font-sans);
  font-size: .62rem;
  font-weight: 700;
  color: var(--bordeaux);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-top: 8px;
}

/* ─────────────────────────────────────────
   LOGO MOBILE OVERRIDES
───────────────────────────────────────── */
@media (max-width: 768px) {
  .hamburger { display: flex; }
  .logo-img  { height: 46px; }
  .header-inner {
    grid-template-columns: auto 1fr auto auto;
  }
}
@media (max-width: 480px) {
  .logo-img { height: 40px; }
}

/* ─────────────────────────────────────────
   SCROLL PROGRESS BAR
───────────────────────────────────────── */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--bordeaux), var(--rose));
  transform-origin: left;
  transform: scaleX(0);
  z-index: 9998;
  pointer-events: none;
}

/* ─────────────────────────────────────────
   MARQUEE ANNOUNCEMENT BAR
───────────────────────────────────────── */
.marquee-bar {
  background: linear-gradient(135deg, var(--bordeaux), var(--bordeaux-dark));
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}
.marquee-track {
  display: inline-flex;
  animation: marqueeScroll 28s linear infinite;
}
.marquee-item {
  display: inline-block;
  padding: 10px 48px;
  font-size: .68rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  font-weight: 500;
  color: rgba(255,255,255,.9);
}
@keyframes marqueeScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ─────────────────────────────────────────
   HEADER SHRINK
───────────────────────────────────────── */
header.header--scrolled .header-inner {
  height: 56px;
}
header.header--scrolled .logo-img {
  height: 42px;
}
header.header--scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,.08);
  border-bottom-color: rgba(107,45,62,.12);
}

/* ─────────────────────────────────────────
   HERO SPLIT (texto esquerda | foto direita)
───────────────────────────────────────── */
.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  overflow: hidden;
}

/* ── Coluna esquerda ── */
.hero-split-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 72px 80px 80px;
  background: var(--cream);
  position: relative;
  z-index: 2;
}
/* Detalhe decorativo: linha vertical bordeaux */
.hero-split-deco {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 4px;
  background: linear-gradient(180deg, transparent, var(--bordeaux) 30%, var(--rose) 70%, transparent);
  opacity: .35;
}

/* Eyebrow */
.hero-split-content .hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: .68rem;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--rose-dark);
  font-weight: 600;
  margin-bottom: 24px;
}
.hero-eyebrow-line {
  display: inline-block;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--bordeaux), var(--rose));
  flex-shrink: 0;
}

/* Título */
.hero-split-content h1.hero-title {
  color: var(--charcoal);
  margin-bottom: 22px;
}
.hero-split-content h1.hero-title em {
  color: var(--bordeaux);
}

/* Desc */
.hero-split-content .hero-desc {
  margin-bottom: 40px;
}

/* CTA */
.hero-split-content .hero-cta {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 44px;
}

/* Dots (versão escura) */
.hero-dots {
  display: flex;
  gap: 10px;
  align-items: center;
}
.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(107,45,62,.18);
  border: 1.5px solid rgba(107,45,62,.35);
  cursor: pointer;
  padding: 0;
  transition: all .3s;
}
.hero-dot.active {
  background: var(--bordeaux);
  border-color: var(--bordeaux);
  transform: scale(1.35);
}
/* dots brancos (variante para fundo escuro — não usada no split) */
.hero-dot.dark {
  background: rgba(107,45,62,.18);
  border-color: rgba(107,45,62,.35);
}

/* ── Coluna direita: foto ── */
.hero-split-photo {
  position: relative;
  overflow: hidden;
  background: #1a0f15;
}
.hero-split-photo .hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-split-photo .hero-slide.active {
  opacity: 1;
}

/* Badge flutuante sobre a foto */
.hero-split-badge {
  position: absolute;
  bottom: 40px;
  left: 32px;
  background: rgba(250,245,240,.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 18px 24px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 12px 40px rgba(0,0,0,.15);
}
.hsb-num {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--bordeaux);
  line-height: 1;
}
.hsb-txt {
  font-size: .68rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(42,31,36,.65);
  font-weight: 600;
  line-height: 1.5;
}

/* Reveal animations */
.reveal-up {
  opacity: 0;
  transform: translateY(28px);
  animation: revealUp .7s ease forwards;
}
@keyframes revealUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ─────────────────────────────────────────
   TRUST BAR — INLINE
───────────────────────────────────────── */
.trust-bar {
  background: white;
  border-bottom: 1px solid rgba(107,45,62,.06);
}
.trust-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 28px;
  font-size: .78rem;
  color: var(--charcoal);
  white-space: nowrap;
}
.trust-item svg {
  width: 20px;
  height: 20px;
  color: var(--bordeaux);
  flex-shrink: 0;
}
.trust-item strong {
  font-weight: 700;
}
.trust-sep {
  width: 1px;
  height: 24px;
  background: rgba(107,45,62,.12);
}

/* ─────────────────────────────────────────
   DESTAQUES — EDITORIAL GRID
───────────────────────────────────────── */
.dest-section {
  padding: 88px 0;
}
.dest-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px;
}
.dest-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.dest-card {
  cursor: pointer;
  transition: transform var(--tr);
}
.dest-card:hover {
  transform: translateY(-6px);
}
.dest-img-wrap {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: 6px;
  margin-bottom: 14px;
  background: #111;
}
.dest-img-main,
.dest-img-hover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity .5s ease;
}
.dest-img-hover {
  opacity: 0;
}
.dest-card:hover .dest-img-hover {
  opacity: 1;
}
.dest-card:hover .dest-img-main {
  opacity: 0;
}
.dest-info {
  padding: 0 4px;
}
.dest-cat {
  font-size: .62rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--rose-dark);
  font-weight: 600;
  margin-bottom: 4px;
}
.dest-name {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 6px;
  line-height: 1.2;
}
.dest-price-from {
  font-size: .82rem;
  color: #999;
  text-decoration: line-through;
  margin-bottom: 2px;
}
.dest-price-promo {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--bordeaux);
}
.btn-esgotado {
  background: #bbb !important;
  border-color: #bbb !important;
  cursor: not-allowed !important;
  opacity: .8;
}
.dest-note {
  margin-top: 8px;
  font-size: .72rem;
  color: #7a4f3a;
  background: #fdf0e8;
  border: 1px solid #f0d5c0;
  border-radius: 4px;
  padding: 5px 8px;
  line-height: 1.4;
}
.dest-stock {
  margin-top: 6px;
  font-size: .68rem;
  color: #d4a017;
  font-weight: 500;
}
.bs-stock {
  font-size: .64rem;
  color: #d4a017;
  font-weight: 500;
  margin-top: 2px;
}
.qv-note {
  margin: 10px 0;
  font-size: .78rem;
  color: #7a4f3a;
  background: #fdf0e8;
  border: 1px solid #f0d5c0;
  border-radius: 4px;
  padding: 7px 10px;
  line-height: 1.4;
}
.dest-payment-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 40px;
  margin-top: 36px;
  padding: 22px 32px;
  background: #fdf8f5;
  border: 1px solid #eeddd6;
  border-radius: 10px;
  color: var(--charcoal);
}
.dpb-sep {
  width: 1px;
  height: 28px;
  background: #ddd;
  flex-shrink: 0;
}
.dpb-item {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .01em;
  color: var(--charcoal);
}
.dpb-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--bordeaux);
}
@media (max-width: 640px) {
  .dpb-sep { display: none; }
  .dest-payment-bar { gap: 14px 24px; padding: 18px 20px; }
  .dpb-item { font-size: .88rem; }
}

/* ─────────────────────────────────────────
   CATEGORIES — REAL IMAGES (updated)
───────────────────────────────────────── */
.cats-section {
  background: linear-gradient(180deg, var(--charcoal) 0%, #352028 100%);
  position: relative;
  overflow: hidden;
}
.cats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(232,160,180,.08) 0%, transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(107,45,62,.08) 0%, transparent 50%);
  pointer-events: none;
}
.cat-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform .6s cubic-bezier(.2,0,.2,1);
}
.cat-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.7) 0%, rgba(0,0,0,.3) 40%, transparent 100%);
  transition: background var(--tr);
}
.cat-card:hover .cat-overlay {
  background: linear-gradient(to top, rgba(0,0,0,.5) 0%, rgba(0,0,0,.2) 40%, transparent 100%);
}
.cat-card:hover .cat-img {
  transform: scale(1.08);
}
.cat-card {
  text-decoration: none;
}
.cat-arrow-icon {
  font-size: 1.4rem;
  color: white;
  opacity: 0;
  transform: translateX(-8px);
  transition: all var(--tr);
}
.cat-card:hover .cat-arrow-icon {
  opacity: 1;
  transform: translateX(0);
}

/* ─────────────────────────────────────────
   BEST SELLERS — HORIZONTAL CAROUSEL
───────────────────────────────────────── */
.bestsellers-section {
  padding: 88px 0;
  overflow: hidden;
}
.bestsellers-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px;
}
.carousel-nav {
  display: flex;
  gap: 8px;
}
.carousel-arrow {
  width: 42px;
  height: 42px;
  border: 1.5px solid rgba(107,45,62,.25);
  border-radius: 50%;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--tr);
  color: var(--charcoal);
}
.carousel-arrow:hover {
  background: var(--bordeaux);
  border-color: var(--bordeaux);
  color: white;
}
.carousel-arrow svg {
  width: 18px;
  height: 18px;
}

.bs-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 8px 0 20px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
}
.bs-track::-webkit-scrollbar { display: none; }
.bs-track.dragging { cursor: grabbing; scroll-snap-type: none; }
.bs-track.dragging * { pointer-events: none; }

.bs-card {
  flex: 0 0 260px;
  scroll-snap-align: start;
  cursor: pointer;
  transition: transform var(--tr);
}
.bs-card:hover {
  transform: translateY(-6px);
}
.bs-img-wrap {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: 6px;
  margin-bottom: 12px;
  background: #111;
}
.bs-img-main,
.bs-img-hover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity .5s ease;
}
.bs-img-hover {
  opacity: 0;
}
.bs-card:hover .bs-img-hover {
  opacity: 1;
}
.bs-card:hover .bs-img-main {
  opacity: 0;
}
.bs-add {
  position: absolute;
  bottom: 10px;
  left: 10px;
  right: 10px;
  background: rgba(42,31,36,.92);
  color: white;
  border: none;
  padding: 10px;
  font-family: var(--font-sans);
  font-size: .68rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  border-radius: 4px;
  opacity: 0;
  transform: translateY(8px);
  transition: all var(--tr);
  backdrop-filter: blur(4px);
}
.bs-card:hover .bs-add {
  opacity: 1;
  transform: translateY(0);
}
.bs-add:hover {
  background: linear-gradient(135deg, var(--bordeaux), var(--rose-dark));
}
.bs-info {
  padding: 0 4px;
}
.bs-name {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 4px;
}
.bs-price {
  font-size: .95rem;
  font-weight: 700;
  color: var(--bordeaux);
}

/* ─────────────────────────────────────────
   STORYTELLING — BRAND STATEMENT
───────────────────────────────────────── */
.story-section {
  padding: 120px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--cream);
}
.story-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.story-shape {
  position: absolute;
  border: 1.5px solid rgba(107,45,62,.08);
  border-radius: 50%;
}
.story-shape.s1 {
  width: 300px;
  height: 300px;
  top: -80px;
  left: -60px;
  animation: storyFloat 8s ease-in-out infinite alternate;
}
.story-shape.s2 {
  width: 200px;
  height: 200px;
  bottom: -40px;
  right: -30px;
  animation: storyFloat 6s ease-in-out 1s infinite alternate-reverse;
}
.story-shape.s3 {
  width: 140px;
  height: 140px;
  top: 50%;
  right: 15%;
  border-color: rgba(232,160,180,.12);
  animation: storyFloat 7s ease-in-out 2s infinite alternate;
}
@keyframes storyFloat {
  0% { transform: translateY(0) rotate(0deg); }
  100% { transform: translateY(-20px) rotate(5deg); }
}
.story-inner {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.story-eyebrow {
  font-size: .68rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--rose-dark);
  font-weight: 600;
  margin-bottom: 28px;
}
.story-quote {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 400;
  line-height: 1.45;
  color: var(--charcoal);
  font-style: italic;
  margin: 0;
}
.story-quote em {
  font-style: normal;
  color: var(--bordeaux);
  font-weight: 600;
}
.story-line {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}
.story-line span {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--rose), var(--bordeaux));
  display: block;
}

/* ─────────────────────────────────────────
   CATALOG — SHOW MORE BUTTON
───────────────────────────────────────── */
.catalog-more {
  text-align: center;
  margin-top: 48px;
}
.btn-show-more {
  background: transparent;
  border: 2px solid rgba(107,45,62,.25);
  padding: 16px 44px;
  font-family: var(--font-sans);
  font-size: .76rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--charcoal);
  cursor: pointer;
  transition: all var(--tr);
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.btn-show-more svg {
  width: 16px;
  height: 16px;
  transition: transform var(--tr);
}
.btn-show-more:hover {
  background: var(--bordeaux);
  border-color: var(--bordeaux);
  color: white;
}
.btn-show-more:hover svg {
  transform: translateY(3px);
}

/* Image hover for product cards */
.prod-img-hover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity .5s ease;
  z-index: 1;
}
.product-card:hover .prod-img-hover {
  opacity: 1;
}
.prod-img-main {
  position: relative;
  z-index: 0;
}

/* ─────────────────────────────────────────
   WHATSAPP CTA — STEPS + CHAT MOCKUP
───────────────────────────────────────── */
.wpp-section {
  background: linear-gradient(135deg, var(--cream-dark), var(--cream));
  padding: 88px 0;
}
.wpp-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}
.wpp-content {
  max-width: 520px;
}
.wpp-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.15;
  margin-bottom: 36px;
}
.wpp-title em {
  font-style: italic;
  color: var(--bordeaux);
}
.wpp-steps {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 20px;
}
.wpp-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.wpp-step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--bordeaux), var(--rose-dark));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .85rem;
  flex-shrink: 0;
}
.wpp-step-text {
  font-size: .92rem;
  color: rgba(42,31,36,.75);
  line-height: 1.6;
  padding-top: 6px;
}
.wpp-step-text strong {
  color: var(--charcoal);
}

/* Chat mockup */
.wpp-chat {
  background: #ECE5DD;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 48px rgba(0,0,0,.12);
  max-width: 380px;
  margin-left: auto;
}
.wpp-chat-header {
  background: #075E54;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: white;
}
.wpp-chat-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--bordeaux), var(--rose));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .68rem;
  font-weight: 700;
  color: white;
}
.wpp-chat-name {
  font-size: .88rem;
  font-weight: 600;
}
.wpp-chat-status {
  font-size: .68rem;
  opacity: .7;
}
.wpp-chat-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 260px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80'%3E%3Cpath d='M0 0h80v80H0z' fill='%23ECE5DD'/%3E%3Cpath d='M20 20h2v2h-2zm20 0h2v2h-2zm20 0h2v2h-2zm-30 20h2v2h-2zm20 0h2v2h-2zm20 0h2v2h-2zm-50 20h2v2h-2zm20 0h2v2h-2zm20 0h2v2h-2z' fill='%23D5CFC4' opacity='.2'/%3E%3C/svg%3E");
}
.wpp-bubble {
  max-width: 85%;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: .84rem;
  line-height: 1.5;
  position: relative;
}
.wpp-bubble-them {
  background: white;
  color: #303030;
  align-self: flex-start;
  border-top-left-radius: 2px;
  box-shadow: 0 1px 2px rgba(0,0,0,.08);
}
.wpp-bubble-me {
  background: #DCF8C6;
  color: #303030;
  align-self: flex-end;
  border-top-right-radius: 2px;
  box-shadow: 0 1px 2px rgba(0,0,0,.06);
}
.wpp-animate {
  opacity: 0;
  transform: translateY(10px);
  animation: bubbleIn .4s ease forwards;
}
@keyframes bubbleIn {
  to { opacity: 1; transform: translateY(0); }
}

/* ─────────────────────────────────────────
   TESTIMONIALS
───────────────────────────────────────── */
.testimonials-section {
  padding: 88px 0;
  background: white;
}
.testimonials-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.test-card {
  background: var(--cream);
  border-radius: 8px;
  padding: 36px 28px;
  position: relative;
  transition: transform .3s, box-shadow .3s;
  transform-style: preserve-3d;
  border: 1px solid rgba(107,45,62,.06);
}
.test-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(107,45,62,.1);
}
.test-quote {
  font-family: var(--font-serif);
  font-size: 3rem;
  color: var(--rose);
  line-height: 1;
  margin-bottom: 8px;
}
.test-card p {
  font-size: .9rem;
  line-height: 1.75;
  color: rgba(42,31,36,.7);
  margin-bottom: 16px;
}
.test-stars {
  color: #F5A623;
  font-size: .9rem;
  letter-spacing: 2px;
  margin-bottom: 8px;
}
.test-author {
  font-size: .78rem;
  font-weight: 700;
  color: var(--charcoal);
  letter-spacing: .06em;
}

/* ─────────────────────────────────────────
   NEWSLETTER SECTION (redesigned)
───────────────────────────────────────── */
.nl-section {
  background: linear-gradient(180deg, white 0%, rgba(232,160,180,.05) 100%);
  border-top: 1px solid rgba(107,45,62,.08);
  border-bottom: 1px solid rgba(107,45,62,.08);
}
.nl-section .nl-inner {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
  padding: 100px 24px;
}

/* ─────────────────────────────────────────
   QUICK-VIEW MODAL
───────────────────────────────────────── */
.qv-overlay {
  position: fixed;
  inset: 0;
  background: rgba(42,31,36,.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: all .3s ease;
}
.qv-overlay.open {
  opacity: 1;
  visibility: visible;
}
.qv-modal {
  background: white;
  border-radius: 8px;
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(20px) scale(.97);
  transition: transform .3s ease;
}
.qv-overlay.open .qv-modal {
  transform: translateY(0) scale(1);
}
.qv-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(42,31,36,.08);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.1rem;
  color: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  transition: all var(--tr);
}
.qv-close:hover {
  background: rgba(42,31,36,.15);
}
.qv-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.qv-gallery {
  padding: 24px;
  background: #f5f0ed;
}
.qv-main-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 6px;
  display: block;
  margin-bottom: 12px;
}
.qv-thumbs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
}
.qv-thumb {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 4px;
  cursor: pointer;
  border: 2px solid transparent;
  opacity: .6;
  transition: all var(--tr);
}
.qv-thumb.active,
.qv-thumb:hover {
  opacity: 1;
  border-color: var(--bordeaux);
}
.qv-info {
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.qv-cat {
  font-size: .62rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--rose-dark);
  font-weight: 600;
}
.qv-name {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--charcoal);
  margin: 0;
}
.qv-ref {
  font-size: .68rem;
  font-weight: 400;
  color: rgba(42,31,36,.4);
  letter-spacing: .03em;
  margin-left: 8px;
}

/* ── PIX Hero (price highlight) ── */
.qv-pix-hero {
  background: linear-gradient(135deg, rgba(107,45,62,.05), rgba(232,160,180,.08));
  border: 2px solid rgba(107,45,62,.15);
  border-radius: 12px;
  padding: 16px 20px;
  margin: 4px 0 8px;
}
.qv-pix-hero-row {
  display: flex;
  align-items: center;
  gap: 12px;
}
.qv-pix-badges {
  display: flex;
  gap: 5px;
}
.qv-pix-badge {
  font-size: .6rem;
  font-weight: 700;
  color: #fff;
  background: var(--bordeaux);
  padding: 3px 10px;
  border-radius: 4px;
  letter-spacing: .08em;
  text-align: center;
}
.qv-pix-badge-off {
  font-size: .56rem;
  font-weight: 700;
  color: var(--bordeaux);
  background: rgba(107,45,62,.1);
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: .05em;
  text-align: center;
}
.qv-pix-hero-price {
  font-family: var(--font-serif);
  font-weight: 700;
  color: var(--bordeaux);
  line-height: 1;
  display: flex;
  align-items: baseline;
}
.qv-pix-hero-price .pix-currency {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  margin-right: 2px;
}
.qv-pix-hero-price .pix-integer {
  font-size: clamp(2.6rem, 4.5vw, 3.2rem);
}
.qv-pix-hero-price .pix-cents {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  margin-left: 1px;
}
.qv-pix-hero-label {
  font-size: .65rem;
  color: rgba(42,31,36,.5);
  margin-top: 4px;
  font-weight: 400;
}

/* ── Other payment price ── */
.qv-other-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(107,45,62,.08);
  margin-bottom: 4px;
}
.qv-other-value {
  font-size: 1rem;
  font-weight: 600;
  color: var(--charcoal);
}
.qv-other-label {
  font-size: .65rem;
  color: rgba(42,31,36,.45);
}

/* ── Installment Accordion ── */
.qv-installments {
  border: 1px solid rgba(107,45,62,.1);
  border-radius: 8px;
  margin: 8px 0;
  overflow: hidden;
}
.qv-installments summary {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  font-size: .78rem;
  font-weight: 500;
  color: var(--charcoal);
  cursor: pointer;
  list-style: none;
  background: rgba(107,45,62,.02);
  transition: background .2s;
}
.qv-installments summary::-webkit-details-marker { display: none; }
.qv-installments summary:hover { background: rgba(107,45,62,.05); }
.qv-inst-icon { font-size: 1rem; }
.qv-chevron {
  margin-left: auto;
  transition: transform .25s ease;
  flex-shrink: 0;
  color: rgba(42,31,36,.4);
}
.qv-installments[open] .qv-chevron { transform: rotate(180deg); }
.qv-installments .pay-table {
  margin: 0;
  padding: 0 14px 10px;
}
.qv-inst-flags {
  font-size: .6rem;
  color: rgba(42,31,36,.35);
  text-align: center;
  padding: 0 14px 12px;
  letter-spacing: .03em;
}

/* ── Payment Table ── */
.pay-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .68rem;
}
.pay-table thead th {
  text-align: left;
  font-weight: 500;
  color: rgba(42,31,36,.4);
  padding: 0 0 6px;
  border-bottom: 1px solid rgba(107,45,62,.08);
  font-size: .6rem;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.pay-table thead th:last-child { text-align: right; }
.pay-table tbody td {
  padding: 4px 0;
  color: rgba(42,31,36,.7);
  border-bottom: 1px solid rgba(107,45,62,.04);
}
.pay-table tbody td:last-child {
  text-align: right;
  color: rgba(42,31,36,.45);
  font-size: .62rem;
}
.pay-table tbody tr:last-child td { border-bottom: none; }
.pay-no-interest {
  color: #2a7d3f;
  font-weight: 600;
  font-size: .6rem;
}
.qv-desc {
  font-size: .88rem;
  color: rgba(42,31,36,.65);
  line-height: 1.7;
}
.qv-sizes {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 8px 0;
}
.qv-sz {
  font-size: .68rem;
  color: var(--charcoal);
  border: 1.5px solid rgba(42,31,36,.2);
  padding: 8px 14px;
  cursor: pointer;
  transition: all var(--tr);
  border-radius: 4px;
  font-weight: 500;
}
.qv-sz:hover {
  border-color: var(--bordeaux);
  color: var(--bordeaux);
  background: rgba(107,45,62,.05);
}
.qv-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
}

/* ─────────────────────────────────────────
   SCROLL REVEAL ANIMATION
───────────────────────────────────────── */
.scroll-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.scroll-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─────────────────────────────────────────
   NEW RESPONSIVE — ADDITIONS
───────────────────────────────────────── */
@media (max-width: 1200px) {
  .dest-grid {
    grid-template-columns: 1fr 1fr;
  }
  .wpp-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .wpp-chat {
    margin: 0 auto;
  }
  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .marquee-item {
    padding: 8px 32px;
    font-size: .62rem;
  }
  .hero-split {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-split-content {
    padding: 72px 24px 52px;
    order: 1;
    text-align: center;
    align-items: center;
  }
  .hero-split-photo {
    height: 55vw;
    min-height: 320px;
    order: 0;
  }
  .hero-split-content h1.hero-title {
    font-size: clamp(1.8rem, 5vw, 2.8rem);
  }
  .hero-split-content .hero-cta {
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }
  .hero-split-content .hero-cta .btn-primary,
  .hero-split-content .hero-cta .btn-ghost {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
  .hero-split-badge {
    bottom: 16px;
    left: 16px;
    padding: 12px 16px;
  }
  .trust-inner {
    flex-direction: column;
    gap: 0;
  }
  .trust-sep {
    width: 80%;
    height: 1px;
  }
  .trust-item {
    padding: 10px 16px;
    font-size: .72rem;
  }
  .dest-section {
    padding: 56px 0;
  }
  .dest-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .bestsellers-section {
    padding: 56px 0;
  }
  .bs-card {
    flex: 0 0 200px;
  }
  .story-section {
    padding: 72px 20px;
  }
  .story-quote {
    font-size: clamp(1.4rem, 3vw, 2rem);
  }
  .wpp-inner {
    gap: 32px;
    padding: 0 20px;
  }
  .wpp-section {
    padding: 56px 0;
  }
  .testimonials-section {
    padding: 56px 0;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .test-card {
    padding: 28px 20px;
  }
  .nl-section .nl-inner {
    padding: 60px 20px;
  }
  .qv-body {
    grid-template-columns: 1fr;
  }
  .qv-gallery {
    padding: 16px;
  }
  .qv-main-img {
    aspect-ratio: 4/3;
    max-height: 40vh;
  }
  .qv-info {
    padding: 20px 16px;
  }
  .carousel-nav {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero-split-photo {
    height: 70vw;
    min-height: 280px;
  }
  .hero-split-content {
    padding: 52px 16px 44px;
  }
  .hero-split-content h1.hero-title {
    font-size: clamp(1.5rem, 4.5vw, 2.2rem);
  }
  .hero-split-content .hero-desc {
    font-size: .85rem;
    text-align: center;
  }
  .hero-split-content .hero-eyebrow {
    justify-content: center;
  }
  .hero-dots {
    margin-top: 24px;
  }
  .dest-grid {
    grid-template-columns: 1fr 1fr;
  }
  .bs-card {
    flex: 0 0 170px;
  }
  .story-shape { display: none; }
  .story-inner {
    text-align: center;
  }
  .story-eyebrow {
    justify-content: center;
  }
  .story-line {
    justify-content: center;
  }
  .wpp-content {
    text-align: center;
    max-width: 100%;
  }
  .wpp-steps {
    align-items: center;
  }
  .wpp-step {
    justify-content: flex-start;
    max-width: 320px;
    margin: 0 auto;
  }
  .wpp-cta-btn {
    display: block;
    max-width: 320px;
    margin: 0 auto;
  }
  .wpp-chat {
    max-width: 100%;
  }
  .wpp-step-text {
    font-size: .84rem;
  }
  .qv-name {
    font-size: 1.3rem;
  }
}