/* =====================================================
   FULL WIDTH OVERRIDE — solo en cms-home-preview
   El theme envuelve el contenido en .page-wrapper > .page-main
   con max-width y padding lateral; lo neutralizamos para
   que el contenido del rediseño llegue a los bordes.
   ===================================================== */
body.cms-home-preview .page-main,
body.cms-home-preview .columns,
body.cms-home-preview .column.main {
  max-width: none !important;
  width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}
body.cms-home-preview .column.main {
  display: block !important;
}

:root {
  --ink:        #14202B;
  --ink-deep:   #0C1620;
  --ink-soft:   #1E2C3A;
  --paper:      #FFFFFF;
  --cream:      #F6F2EA;
  --cream-soft: #FBF8F2;
  --line:       #E5DFD2;
  --line-soft:  #EFEADD;
  --text:       #1A1A1A;
  --text-muted: #6B6B6B;
  --text-soft:  #9A9A9A;
  --gold:       #B8924A;
  --gold-deep:  #8B6E37;
  --terracotta: #B85A3A;
  --sale:       #B83A2E;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'Inter', -apple-system, sans-serif;
  --section-pad: clamp(4rem, 8vw, 8rem);
  --gutter:      clamp(1.25rem, 3vw, 2.5rem);
  --slider-pad:  clamp(1.5rem, 5vw, 4rem);
  --maxw: 1500px;
}
* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }
body {
  font-family: var(--sans);
  color: var(--text);
  background: var(--paper);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  font-size: 15px;
}
img { display:block; max-width:100%; height:auto; }
a { color:inherit; text-decoration:none; }
button { font-family:inherit; cursor:pointer; border:none; background:none; }

.eyebrow {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1.08;
  color: var(--ink);
}
.section-title em { font-style: italic; color: var(--gold-deep); }
.section-sub {
  color: var(--text-muted);
  max-width: 560px;
  margin-top: 1rem;
  font-size: 1rem;
  line-height: 1.65;
}

/* Botones del rediseño — scopeados a `main` (no body) para evitar chocar
   con elementos del header/footer del theme que pueden compartir la
   clase .btn pero combinada con utilities Tailwind como .hidden. */
.cms-home-preview main .btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 1.75rem;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: all 0.3s ease;
}
.cms-home-preview main .btn-primary { background: var(--ink); color: var(--paper); }
.cms-home-preview main .btn-primary:hover { background: var(--gold-deep); transform: translateY(-2px); }
.cms-home-preview main .btn-outline { border: 1px solid var(--ink); color: var(--ink); }
.cms-home-preview main .btn-outline:hover { background: var(--ink); color: var(--paper); }
.cms-home-preview main .btn-ghost {
  color: var(--paper);
  border-bottom: 1px solid rgba(255,255,255,0.4);
  border-radius: 0;
  padding: 0.5rem 0;
  letter-spacing: 0.08em;
}
.cms-home-preview main .btn-ghost:hover { border-bottom-color: var(--gold); }

/* =====================================================
   1. HERO BANNER — full width, video bg + texto encima (v1)
   ===================================================== */
.hero {
  position: relative;
  width: 100%;
  height: clamp(560px, 80vh, 780px);
  overflow: hidden;
  background: var(--ink);
  isolation: isolate;
}
.hero-poster, .hero-video-iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 0;
  pointer-events: none;
}
.hero-poster {
  z-index: 1;
}
.hero-video-iframe {
  z-index: 2;
  opacity: 0;
  transition: opacity 0.6s ease;
}
.hero-video-iframe.is-ready { opacity: 1; }
.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: hidden;
}
.hero-video-wrap iframe {
  position: absolute;
  top: 50%; left: 50%;
  width: 177.77vh;
  min-width: 100%;
  height: 56.25vw;
  min-height: 100%;
  transform: translate(-50%, -50%);
  border: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
}
.hero-video-wrap iframe.is-ready { opacity: 1; }

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  background: linear-gradient(180deg, rgba(12,22,32,0.35) 0%, rgba(12,22,32,0.55) 70%, rgba(12,22,32,0.75) 100%);
}
.hero-content {
  position: relative;
  z-index: 4;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(2.5rem, 6vw, 5rem) clamp(1.5rem, 5vw, 5rem);
  color: var(--paper);
  max-width: 1500px;
  margin: 0 auto;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--paper);
  background: var(--sale);
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  width: fit-content;
  font-weight: 500;
  margin-bottom: 1.5rem;
}
.hero-eyebrow .pulse {
  width: 6px; height: 6px;
  background: var(--paper);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100% { opacity:1 } 50% { opacity:.4 } }

.hero-title {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 7vw, 5.75rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  max-width: 14ch;
}
.hero-title em { font-style: italic; color: var(--gold); }
.hero-title .pct {
  display: inline-block;
  background: var(--gold);
  color: var(--ink-deep);
  padding: 0 0.3em;
  font-style: italic;
}
.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.5;
  color: rgba(255,255,255,0.85);
  max-width: 540px;
  margin-bottom: 2rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-actions .btn-primary {
  background: var(--paper);
  color: var(--ink);
}
.hero-actions .btn-primary:hover {
  background: var(--gold);
  color: var(--ink-deep);
}
.hero-actions .btn-outline {
  border-color: rgba(255,255,255,0.5);
  color: var(--paper);
}
.hero-actions .btn-outline:hover {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--paper);
}
@media (max-width: 700px) {
  .hero { height: clamp(480px, 88vh, 720px); }
  .hero-overlay {
    background: linear-gradient(180deg, rgba(12,22,32,0.30) 0%, rgba(12,22,32,0.65) 60%, rgba(12,22,32,0.85) 100%);
  }
}
/* =====================================================
   SLIDER — shared
   ===================================================== */
.slider-section { padding: var(--section-pad) 0; background: var(--paper); }
.slider-section.alt { background: var(--cream); }
.slider-header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  padding: 0 var(--slider-pad);
  margin-bottom: 3rem;
  gap: 2rem;
  flex-wrap: wrap;
  max-width: var(--maxw);
  margin-left: auto;
  margin-right: auto;
}
.slider-header-text { max-width: 620px; }
.slider-header-text .eyebrow { display: block; margin-bottom: 0.85rem; }
.slider-controls { display: flex; gap: 0.6rem; align-items: center; }
.slider-counter {
  font-family: var(--serif);
  font-style: italic;
  color: var(--text-muted);
  font-size: 1rem;
  margin-right: 0.5rem;
  min-width: 60px;
}
.slider-counter span { color: var(--ink); }
.sl-btn {
  width: 46px; height: 46px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.25s;
  background: var(--paper);
  color: var(--ink);
}
.sl-btn:hover:not(:disabled) { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.sl-btn:disabled { opacity: 0.25; cursor: not-allowed; }
.slider-section.alt .sl-btn { background: var(--cream); }
.slider-section.alt .sl-btn:hover:not(:disabled) { background: var(--ink); }

.slider-track-wrap { overflow: hidden; width: 100%; }
.slider-track {
  display: flex;
  gap: 1.25rem;
  padding: 0 var(--slider-pad);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  scroll-padding-left: var(--slider-pad);
}
.slider-track::-webkit-scrollbar { display: none; }
@media (hover: hover) and (pointer: fine) {
  .slider-track { cursor: grab; }
  .slider-track.is-dragging {
    cursor: grabbing;
    scroll-behavior: auto;
    scroll-snap-type: none;
  }
  /* Sin pointer-events:none aquí: si la clase quedaba pegada por algún
     motivo (p.ej. mouseup fuera de window), bloqueaba TODOS los clicks
     futuros. El handler JS de click capture-phase ya cancela los clicks
     que vinieron de un drag real. */
}

.slider-scrollbar {
  position: relative;
  height: 1px;
  background: var(--line);
  cursor: pointer;
  max-width: var(--maxw);
  margin: 2rem auto 0;
  width: calc(100% - 2 * var(--slider-pad));
}
.slider-scrollbar-thumb {
  position: absolute;
  top: -1px; left: 0;
  height: 3px;
  background: var(--ink);
  transition: width 0.15s ease, transform 0.15s ease;
  cursor: grab;
  min-width: 40px;
}
.slider-scrollbar-thumb:active { cursor: grabbing; }
@media (max-width: 700px) {
  .slider-scrollbar { display: none; }
}

/* CATEGORY CARDS */
.cat-card {
  flex: 0 0 calc((100% - 4 * 1.25rem - 2 * var(--gutter)) / 4);
  min-width: 280px;
  scroll-snap-align: start;
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--cream);
}
.cat-card-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}
.cat-card:hover .cat-card-img { transform: scale(1.05); }
.cat-card-info {
  position: absolute; inset: auto 0 0 0;
  padding: 1.5rem 1.5rem 1.4rem;
  background: linear-gradient(180deg, transparent, rgba(12,22,32,0.85) 60%);
  color: var(--paper);
  z-index: 3;
}
.cat-card-info h3 {
  font-family: var(--serif);
  font-size: 1.65rem;
  font-weight: 500;
  letter-spacing: -0.005em;
  margin-bottom: 0.2rem;
}
.cat-card-info p {
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.78;
}
.cat-card-arrow {
  position: absolute;
  top: 1.25rem; right: 1.25rem;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  display: flex; align-items: center; justify-content: center;
  z-index: 3;
  opacity: 0;
  transform: translateY(-6px);
  transition: all 0.35s ease;
  color: var(--ink);
}
.cat-card:hover .cat-card-arrow { opacity: 1; transform: translateY(0); }
@media (max-width: 1100px) {
  .cat-card { flex-basis: calc((100% - 3 * 1.25rem - 2 * var(--gutter)) / 3); }
}
@media (max-width: 768px) {
  .cat-card { flex-basis: calc((100% - 2 * 1.25rem - 2 * var(--gutter)) / 2); min-width: 220px; }
}
@media (max-width: 500px) {
  .cat-card { flex-basis: 75%; min-width: 0; }
}

/* SIZE CARDS */
.size-card {
  flex: 0 0 calc((100% - 5 * 1.25rem - 2 * var(--gutter)) / 5);
  min-width: 220px;
  scroll-snap-align: start;
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--cream);
  cursor: pointer;
}
.size-card-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.size-card:hover .size-card-img { transform: scale(1.05); }
.size-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(12,22,32,0.85) 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1.5rem;
  color: var(--paper);
}
.size-card-overlay h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 0.2rem;
}
.size-card-overlay .dim {
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.82;
  font-family: var(--sans);
}
@media (max-width: 1100px) {
  .size-card { flex-basis: calc((100% - 3 * 1.25rem - 2 * var(--gutter)) / 3); }
}
@media (max-width: 700px) {
  .size-card { flex-basis: calc((100% - 2 * 1.25rem - 2 * var(--gutter)) / 2); min-width: 180px; }
}
@media (max-width: 480px) {
  .size-card { flex-basis: 70%; min-width: 0; }
}

/* PRODUCT CARDS — best-sellers slider (NEW) */
.product-card {
  flex: 0 0 calc((100% - 5 * 1.25rem - 2 * var(--gutter)) / 5);
  min-width: 220px;
  scroll-snap-align: start;
  position: relative;
  background: transparent;
  cursor: pointer;
  display: flex; flex-direction: column;
}
.product-card-img-wrap {
  position: relative;
  aspect-ratio: 1/1;
  background: var(--cream-soft);
  overflow: hidden;
  margin-bottom: 1rem;
  padding: 0.75rem;
}
.product-card-img {
  position: absolute; inset: 0.75rem;
  width: calc(100% - 1.5rem); height: calc(100% - 1.5rem);
  object-fit: contain; object-position: center;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.product-card:hover .product-card-img { transform: scale(1.04); }
.product-badge {
  position: absolute;
  top: 0.85rem; left: 0.85rem;
  background: var(--paper);
  color: var(--ink);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 0.35rem 0.65rem;
  border-radius: 2px;
  z-index: 2;
}
.product-badge.sale { background: var(--ink); color: var(--paper); }
.product-badge.new  { background: var(--gold); color: var(--ink); }
.product-quickview {
  position: absolute;
  bottom: 0.85rem; left: 0.85rem; right: 0.85rem;
  background: var(--paper);
  color: var(--ink);
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 0.75rem;
  text-align: center;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.35s ease;
  z-index: 2;
}
.product-card:hover .product-quickview { opacity: 1; transform: translateY(0); }
.product-meta {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 0.4rem;
}
.product-name {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 0.35rem;
  line-height: 1.25;
}
.product-dim {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 0.55rem;
}
.product-price {
  display: flex; gap: 0.6rem; align-items: baseline;
  font-size: 0.95rem;
}
.product-price .now { color: var(--ink); font-weight: 500; }
.product-price .was { color: var(--text-soft); text-decoration: line-through; font-size: 0.85rem; }
.product-price.sale .now { color: var(--sale); }
@media (max-width: 1100px) { .product-card { flex-basis: calc((100% - 3 * 1.25rem - 2 * var(--gutter)) / 3); } }
@media (max-width: 700px)  { .product-card { flex-basis: calc((100% - 2 * 1.25rem - 2 * var(--gutter)) / 2); min-width: 180px; } }
@media (max-width: 480px)  { .product-card { flex-basis: 70%; min-width: 0; } }

/* =====================================================
   SERVICES STRIP — refinado, sin círculos cliché
   ===================================================== */
.services {
  padding: 3rem var(--gutter);
  background: var(--cream);
  border-block: 1px solid var(--line);
}
.services-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.service-item {
  display: flex; align-items: center; gap: 1rem;
  padding: 0.5rem 1.5rem;
  border-right: 1px solid var(--line);
}
.service-item:last-child { border-right: none; }
.service-icon {
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--gold-deep);
}
.service-text h4 { font-size: 0.86rem; font-weight: 600; color: var(--ink); margin-bottom: 0.1rem; letter-spacing: 0.01em; }
.service-text p  { font-size: 0.78rem; color: var(--text-muted); }
@media (max-width: 900px) {
  .services-grid { grid-template-columns: repeat(2,1fr); gap: 1rem; }
  .service-item { border-right: none; }
}
@media (max-width: 500px) { .services-grid { grid-template-columns: 1fr; } }

/* =====================================================
   EDITORIAL DOUBLE BANNER
   ===================================================== */
.editorial {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  background: var(--ink);
}
.editorial-card {
  position: relative;
  aspect-ratio: 16/11;
  overflow: hidden;
  cursor: pointer;
}
.editorial-card-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.editorial-card:hover .editorial-card-img { transform: scale(1.05); }
.editorial-card-content {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: clamp(2rem, 4vw, 3.5rem);
  color: var(--paper);
  background: linear-gradient(180deg, transparent 45%, rgba(12,22,32,0.85));
}
.editorial-card-content .eyebrow { color: var(--gold); margin-bottom: 0.85rem; }
.editorial-card-content h3 {
  font-family: var(--serif);
  font-size: clamp(1.85rem, 3vw, 2.5rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 0.85rem;
  max-width: 12ch;
}
.editorial-card-content p {
  font-size: 0.95rem;
  opacity: 0.82;
  margin-bottom: 1.5rem;
  max-width: 380px;
  line-height: 1.55;
}
@media (max-width: 768px) { .editorial { grid-template-columns: 1fr; } }

/* =====================================================
   GET TO KNOW DICARPET
   ===================================================== */
.know {
  padding: var(--section-pad) var(--gutter);
  background: var(--cream);
}
.know-grid {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}
.lite-yt {
  position: relative;
  aspect-ratio: 4/5;
  background: var(--ink);
  cursor: pointer;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lite-yt-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
}
.lite-yt::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(12,22,32,0.30);
  transition: background 0.3s;
}
.lite-yt:hover::after { background: rgba(12,22,32,0.15); }
.lite-yt-play {
  position: relative;
  z-index: 2;
  width: 84px; height: 84px;
  background: rgba(255,255,255,0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
}
.lite-yt:hover .lite-yt-play { transform: scale(1.08); background: var(--gold); }
.lite-yt-play svg { fill: var(--ink); margin-left: 5px; }
.lite-yt iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
  z-index: 3;
}
.know-text .eyebrow { margin-bottom: 1rem; display: block; }
.know-text h2 { margin-bottom: 1.5rem; }
.know-text p {
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  font-size: 1rem;
  line-height: 1.7;
}
.know-features { list-style: none; margin: 2rem 0; }
.know-features li {
  padding: 0.95rem 0;
  border-top: 1px solid var(--line);
  display: flex; align-items: center; gap: 1rem;
  font-size: 0.95rem;
  color: var(--ink);
}
.know-features li::before {
  content: '';
  width: 22px; height: 1px;
  background: var(--gold-deep);
  flex-shrink: 0;
}
.know-features li:last-child { border-bottom: 1px solid var(--line); }
@media (max-width: 900px) {
  .know-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .lite-yt { aspect-ratio: 4/3; }
}

/* =====================================================
   PERSIAN BANNER — refinado
   ===================================================== */
.persian-banner {
  position: relative;
  background: var(--ink-deep);
  color: var(--paper);
  padding: var(--section-pad) var(--gutter);
  overflow: hidden;
}
.persian-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1600166898405-da9535204843?w=1800&q=80");
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  filter: grayscale(0.3);
  pointer-events: none;
}
.persian-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(184,146,74,0.08), transparent 60%);
  pointer-events: none;
}
.persian-grid {
  position: relative;
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
}
.persian-text { max-width: 760px; }
.persian-text .eyebrow { color: var(--gold); display: block; margin-bottom: 1.25rem; }
.persian-text h2 {
  color: var(--paper);
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin-bottom: 1.5rem;
}
.persian-text h2 em { color: var(--gold); font-style: italic; }
.persian-text p {
  font-size: 1.05rem;
  opacity: 0.8;
  margin-bottom: 2rem;
  max-width: 600px;
  line-height: 1.65;
}
.persian-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.15);
  max-width: 760px;
}
.persian-stat .num {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 2.85rem);
  color: var(--gold);
  display: block;
  margin-bottom: 0.35rem;
  font-weight: 400;
  letter-spacing: -0.01em;
}
.persian-stat .num em { font-style: italic; }
.persian-stat .label {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.7;
}
.persian-banner .btn { background: var(--gold); color: var(--ink-deep); }
.persian-banner .btn:hover { background: var(--paper); }

/* =====================================================
   TRUSTPILOT WIDGET (lazy on viewport)
   El widget oficial se inserta cuando entra en pantalla
   ===================================================== */
.trustpilot-section {
  padding: var(--section-pad) var(--gutter);
  background: var(--paper);
  text-align: center;
}
.trustpilot-inner { max-width: 1000px; margin: 0 auto; }
.trustpilot-inner .eyebrow { display: block; margin-bottom: 1.5rem; }
.trustpilot-widget {
  min-height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.trustpilot-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  padding: 1.5rem;
}
.trustpilot-placeholder-stars {
  display: flex; gap: 0.25rem;
}
.trustpilot-placeholder-text {
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--ink);
  font-style: italic;
}
.trustpilot-placeholder-text strong { color: #00B67A; font-style: normal; font-weight: 600; }
.trustpilot-placeholder small {
  color: var(--text-soft);
  font-size: 0.78rem;
  margin-top: 0.25rem;
}

/* =====================================================
   WHY DICARPET
   ===================================================== */
.why { padding: var(--section-pad) var(--gutter); background: var(--cream); }
.why-inner { max-width: 1100px; margin: 0 auto; }
.why-header { margin-bottom: 3rem; max-width: 760px; }
.why-header .eyebrow { display: block; margin-bottom: 1rem; }
.why-text p {
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  font-size: 1.02rem;
  line-height: 1.75;
  max-width: 800px;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 4rem;
  padding-top: 4rem;
  border-top: 1px solid var(--line);
}
.why-pillar h3 {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
  color: var(--ink);
  line-height: 1.2;
}
.why-pillar p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.7; }
.why-pillar .num {
  display: inline-block;
  font-family: var(--serif);
  font-size: 0.85rem;
  font-style: italic;
  color: var(--gold-deep);
  margin-bottom: 0.85rem;
  letter-spacing: 0.08em;
}
@media (max-width: 768px) { .why-grid { grid-template-columns: 1fr; gap: 2rem; } }

/* =====================================================
   FAQ
   ===================================================== */
.faq { padding: var(--section-pad) var(--gutter); background: var(--paper); }
.faq-inner { max-width: 880px; margin: 0 auto; }
.faq-header { text-align: center; margin-bottom: 3rem; }
.faq-header .eyebrow { display: block; margin-bottom: 0.85rem; }
.faq-list { display: flex; flex-direction: column; }
.faq-item {
  border-bottom: 1px solid var(--line);
  transition: all 0.2s;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-weight: 500;
  font-size: 1rem;
  color: var(--ink);
  transition: color 0.2s;
}
.faq-item summary:hover { color: var(--gold-deep); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-icon { width: 22px; height: 22px; flex-shrink: 0; position: relative; }
.faq-icon::before, .faq-icon::after {
  content: '';
  position: absolute;
  background: currentColor;
  transition: transform 0.25s;
}
.faq-icon::before { top: 50%; left: 0; right: 0; height: 1px; transform: translateY(-50%); }
.faq-icon::after  { left: 50%; top: 0; bottom: 0; width: 1px; transform: translateX(-50%); }
.faq-item[open] .faq-icon::after { transform: translateX(-50%) rotate(90deg); opacity: 0; }
.faq-answer {
  padding: 0 0 1.75rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 720px;
  font-size: 0.96rem;
}

