/* =============================================
   SPLENDOR — Estilos Homepage
   ============================================= */

/* ---- PAGE LOADER ---- */
.page-loader {
  position: fixed;
  inset: 0;
  background: var(--color-bg-dark);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.loader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.loader-logo {
  font-family: var(--font-serif);
  font-size: 4rem;
  color: #fff;
  letter-spacing: 0.15em;
  animation: loader-breathe 2s ease-in-out infinite;
}
@keyframes loader-breathe {
  0%, 100% { opacity: 1; letter-spacing: 0.15em; }
  50%      { opacity: 0.6; letter-spacing: 0.25em; }
}
.loader-line {
  width: 0;
  height: 1px;
  background: var(--gold-gradient, var(--color-secondary));
  animation: loader-grow 1.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
@keyframes loader-grow {
  to { width: 120px; }
}

/* Hero alineado al fondo (patrón Zara Home / marca lujo), pero con breathing
   room real. 90vh en vez de 100vh para que no se sienta tan pesado en monitores
   pequeños. */
.hero {
  min-height: 640px;
  height: 90vh;
  max-height: 880px;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: calc(var(--nav-height, 70px) + 2rem) 0 5.5rem;
}
.hero__bg-wrap {
  position: absolute;
  inset: 0;
}
.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
}
/* Overlay vertical sutil: la imagen sigue viéndose nítida arriba, pero
   el texto (abajo/centro) tiene contraste suficiente sin oscurecer toda la foto. */
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10,10,10,0.20) 0%,
    rgba(10,10,10,0.25) 40%,
    rgba(10,10,10,0.65) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 750px;
}
.hero__eyebrow {
  font-size: var(--text-sm);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-secondary);
  margin-bottom: 1.25rem;
  opacity: 0;
}
.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.25rem, 4.8vw, 4.25rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 1.15rem;
  opacity: 0;
}
.hero__title em {
  font-style: italic;
  color: var(--color-secondary);
}
.hero__sub {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  font-weight: 300;
  line-height: 1.65;
  color: rgba(255,255,255,0.78);
  margin-bottom: 2rem;
  max-width: 32rem;
  opacity: 0;
}
.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
}
.btn-light {
  background: #fff;
  color: var(--color-bg-dark);
  border: 1px solid #fff;
  padding: 0.875rem 2rem;
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.45s var(--ease-expo, cubic-bezier(0.16, 1, 0.3, 1));
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.btn-light::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--color-secondary);
  z-index: -1;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.55s var(--ease-expo, cubic-bezier(0.16, 1, 0.3, 1));
}
.btn-light:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}
.btn-light:hover {
  border-color: var(--color-secondary);
  color: #fff;
}
.btn-ghost-light {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.5);
  padding: 0.875rem 2rem;
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.45s var(--ease-expo, cubic-bezier(0.16, 1, 0.3, 1));
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.btn-ghost-light::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.12);
  z-index: -1;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.55s var(--ease-expo, cubic-bezier(0.16, 1, 0.3, 1));
}
.btn-ghost-light:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}
.btn-ghost-light:hover {
  border-color: #fff;
}
/* Scroll indicator abajo-derecha. `right: calc(...)` para evitar que la R
   de "DESCUBRIR" se corte si el viewport tiene scrollbar vertical. */
.hero__scroll {
  position: absolute;
  bottom: 1.5rem;
  right: calc(var(--container-padding) + 0.75rem);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  color: rgba(255,255,255,0.45);
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0;
}
.hero__scroll-line {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.28);
  position: relative;
  overflow: hidden;
}
.hero__scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-secondary);
  animation: scroll-line 1.8s ease infinite;
}
@keyframes scroll-line {
  0%   { top: -100%; }
  100% { top: 100%; }
}

/* ---- BRAND STRIP ---- */
.brand-strip {
  background: var(--color-primary);
  overflow: hidden;
  padding: 1rem 0;
}
.brand-strip__inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  white-space: nowrap;
  animation: marquee 25s linear infinite;
  width: max-content;
}
.brand-strip__inner span {
  font-size: var(--text-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.brand-strip__dot {
  width: 4px;
  height: 4px;
  background: var(--color-secondary);
  border-radius: 50%;
  flex-shrink: 0;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---- SECCIÓN HEADER ---- */
.section-header {
  margin-bottom: 3rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.section-eyebrow {
  font-size: var(--text-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-secondary);
  display: block;
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--color-text);
}
.section-link {
  font-size: var(--text-sm);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text);
  border-bottom: 1px solid var(--color-text);
  padding-bottom: 2px;
  display: inline-flex;
  align-items: center;
  transition: color 0.3s, border-color 0.3s;
}
.section-link:hover {
  color: var(--color-secondary);
  border-color: var(--color-secondary);
}

/* ---- CATEGORÍAS ---- */
.categories-section {
  background: var(--color-bg);
}
.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 12px;
}
.category-card {
  position: relative;
  overflow: hidden;
  display: block;
  text-decoration: none;
}
.category-card__img-wrap {
  width: 100%;
  padding-top: 120%;
  position: relative;
  overflow: hidden;
}
.category-card--small .category-card__img-wrap {
  padding-top: 65%;
}
/* Las 3 primeras ocupan su celda normal, las últimas 2 están en la segunda fila */
.category-card:nth-child(4),
.category-card:nth-child(5) {
  grid-column: span 1;
}
.categories-grid .category-card:nth-child(4) { grid-column: 1 / 3; }
.categories-grid .category-card:nth-child(5) { grid-column: 3 / 4; }

.category-card__img-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-expo, cubic-bezier(0.16, 1, 0.3, 1));
}
.category-card:hover .category-card__img-wrap img {
  transform: scale(1.08);
}
.category-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  color: #fff;
  transition: background 0.4s;
}
.category-card:hover .category-card__overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.15) 70%);
}
.category-card__name {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 0.25rem;
}
.category-card__count {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: var(--color-secondary);
  text-transform: uppercase;
}

/* ---- PRODUCTOS DESTACADOS ---- */
.featured-section {
  background: #f5f3f0;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.product-card {
  cursor: pointer;
}
.product-card__img-wrap {
  position: relative;
  overflow: hidden;
  padding-top: 125%;
  background: #eae8e4;
  margin-bottom: 1rem;
}
.product-card__img-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease-expo, cubic-bezier(0.16, 1, 0.3, 1));
}
.product-card:hover .product-card__img-wrap img {
  transform: scale(1.08);
}
.product-card__badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--color-secondary);
  color: var(--color-bg-dark);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
}
.product-card__badge--sale {
  background: #c0392b;
  color: #fff;
}
.product-card__actions {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.3s ease;
}
.product-card:hover .product-card__actions {
  opacity: 1;
  transform: translateY(0);
}
/* En touch devices: siempre visibles */
@media (hover: none) {
  .product-card__actions {
    opacity: 1;
    transform: translateY(0);
  }
  .btn-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
  }
}
.btn-icon {
  width: 40px;
  height: 40px;
  background: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  transition: background 0.2s;
}
.btn-icon:hover {
  background: var(--color-primary);
  color: #fff;
}
.btn-icon svg { pointer-events: none; }
.product-card__meta {
  margin-bottom: 0.3rem;
}
.product-card__cat {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-light);
}
.product-card__name {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 400;
  margin-bottom: 0.4rem;
  color: var(--color-text);
}
.product-card__price {
  font-size: var(--text-sm);
  color: var(--color-text);
}
.product-card__old-price {
  text-decoration: line-through;
  color: var(--color-text-light);
  margin-left: 0.5rem;
  font-size: 0.85em;
}

/* ---- BANNER FULL-WIDTH ---- */
.banner-section {
  position: relative;
  height: 70vh;
  min-height: 500px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.banner__img-wrap {
  position: absolute;
  inset: 0;
}
.banner__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
}
.banner__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,0.45);
}
.banner__content {
  position: relative;
  z-index: 2;
  color: #fff;
}
.banner__eyebrow {
  font-size: var(--text-xs);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-secondary);
  display: block;
  margin-bottom: 1rem;
}
.banner__title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 400;
  line-height: 1.05;
  margin-bottom: 2rem;
}

/* ---- SOBRE SPLENDOR ---- */
.about-section {
  background: var(--color-bg);
  overflow: hidden;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.about__img-wrap {
  position: relative;
}
.about__img-wrap img {
  width: 100%;
  height: 600px;
  object-fit: cover;
}
.about__img-accent {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 60%;
  height: 60%;
  border: 1px solid var(--color-secondary);
  z-index: -1;
  transition: all 1s var(--ease-expo, cubic-bezier(0.16, 1, 0.3, 1));
}
.about-section:hover .about__img-accent {
  bottom: -2rem;
  right: -2rem;
}
.about__line {
  width: 50px;
  height: 1px;
  background: var(--color-secondary);
  margin: 1.5rem 0;
}
.about__body {
  color: var(--color-text-light);
  line-height: 1.9;
  margin-bottom: 1rem;
  font-size: var(--text-base);
}

/* ---- TESTIMONIOS ---- */
.testimonials-section {
  background: #f5f3f0;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.testimonial-card {
  background: #fff;
  padding: 2.5rem;
  border-top: 2px solid var(--color-secondary);
}
.testimonial-card__stars {
  color: var(--color-secondary);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 1.25rem;
}
.testimonial-card__quote {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.8;
  color: var(--color-text);
  margin-bottom: 1.5rem;
}
.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  background: var(--color-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  border-radius: 50%;
  flex-shrink: 0;
}
.testimonial-card__name {
  font-size: var(--text-sm);
  font-weight: 500;
}
.testimonial-card__city {
  font-size: var(--text-xs);
  color: var(--color-text-light);
}

/* ---- BLOG ---- */
.blog-section {
  background: var(--color-bg);
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.blog-card {
  display: block;
  text-decoration: none;
  color: inherit;
}
.blog-card__img-wrap {
  overflow: hidden;
  padding-top: 65%;
  position: relative;
  margin-bottom: 1.25rem;
  background: var(--color-border);
}
.blog-card__img-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease-expo, cubic-bezier(0.16, 1, 0.3, 1));
}
.blog-card:hover .blog-card__img-wrap img {
  transform: scale(1.08);
}
.blog-card__body {
  padding: 0 0.25rem;
}
.blog-card__cat {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-secondary);
  display: block;
  margin-bottom: 0.5rem;
}
.blog-card__title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.4;
  margin-bottom: 0.5rem;
  transition: color 0.2s;
}
.blog-card:hover .blog-card__title {
  color: var(--color-secondary);
}
.blog-card__date {
  font-size: var(--text-xs);
  color: var(--color-text-light);
}

/* ---- CTA FINAL ---- */
.cta-section {
  background: var(--color-bg-dark);
  padding: 7rem 0;
}
.cta-inner {
  text-align: center;
  color: #fff;
}
.cta-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 2.5rem;
}
.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---- PREMIUM HOVER EFFECTS ---- */
.testimonial-card {
  transition: transform 0.55s var(--ease-expo, cubic-bezier(0.16, 1, 0.3, 1)),
              box-shadow 0.55s ease;
}
.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover, 0 20px 50px rgba(0,0,0,0.10));
}

.blog-card {
  transition: transform 0.5s var(--ease-expo, cubic-bezier(0.16, 1, 0.3, 1));
}
.blog-card:hover {
  transform: translateY(-4px);
}

.product-card {
  transition: transform 0.5s var(--ease-expo, cubic-bezier(0.16, 1, 0.3, 1));
}
.product-card:hover {
  transform: translateY(-4px);
}

.trust-item__icon {
  transition: all 0.45s var(--ease-expo, cubic-bezier(0.16, 1, 0.3, 1));
}
.trust-item:hover .trust-item__icon {
  transform: scale(1.12) rotate(-3deg);
}

.material-card {
  transition: transform 0.5s var(--ease-expo, cubic-bezier(0.16, 1, 0.3, 1)),
              box-shadow 0.5s ease;
}
.material-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover, 0 20px 50px rgba(0,0,0,0.10));
}

.category-card__count {
  transform: translateY(8px);
  opacity: 0;
  transition: all 0.5s var(--ease-expo, cubic-bezier(0.16, 1, 0.3, 1));
}
.category-card:hover .category-card__count {
  transform: translateY(0);
  opacity: 1;
}

.category-card__name {
  transition: transform 0.5s var(--ease-expo, cubic-bezier(0.16, 1, 0.3, 1));
}
.category-card:hover .category-card__name {
  transform: translateY(-4px);
}

/* ---- CURSOR DOT + RING ---- */
.cursor-dot {
  width: 8px;
  height: 8px;
  background: var(--color-secondary);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.35s var(--ease-expo, cubic-bezier(0.16, 1, 0.3, 1)),
              height 0.35s var(--ease-expo, cubic-bezier(0.16, 1, 0.3, 1)),
              background 0.3s ease,
              opacity 0.3s ease;
}
.cursor-dot.cursor-hover {
  width: 12px;
  height: 12px;
  background: var(--color-secondary);
  mix-blend-mode: difference;
}
.cursor-dot.cursor-hidden {
  opacity: 0;
  width: 0;
  height: 0;
}
.cursor-ring {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(201, 169, 110, 0.35);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.5s var(--ease-expo, cubic-bezier(0.16, 1, 0.3, 1)),
              height 0.5s var(--ease-expo, cubic-bezier(0.16, 1, 0.3, 1)),
              border-color 0.3s ease,
              opacity 0.35s ease;
}
.cursor-ring.cursor-hover {
  width: 64px;
  height: 64px;
  border-color: rgba(201, 169, 110, 0.5);
}
.cursor-ring.cursor-hidden {
  opacity: 0;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1200px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 1024px) {
  .categories-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about__img-wrap img { height: 450px; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .lookbook-wrap { grid-template-columns: 1fr; gap: 2rem; }
  .lookbook-side { order: 2; }
  .lookbook-main img { height: 400px; }
  .materials-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .hero {
    min-height: 620px;
    padding: 6rem 0 3rem;
    align-items: flex-end;
  }
  .hero__title { font-size: clamp(2.25rem, 9vw, 3.25rem); line-height: 1.05; }
  .hero__sub { font-size: 0.95rem; line-height: 1.55; }
  .hero__eyebrow { font-size: 0.7rem; letter-spacing: 0.2em; }
  .hero__actions .btn { padding: 0.8rem 1.2rem; font-size: 0.75rem; }
  .hero__teaser,
  .hero__dots,
  .hero__scroll { display: none; }

  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .categories-grid { grid-template-columns: 1fr; gap: 1rem; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .section-header { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
  .section-title { font-size: clamp(1.6rem, 6vw, 2.2rem); }
  .banner-section { height: 55vh; min-height: 360px; }
  .banner__title { font-size: clamp(1.8rem, 7vw, 2.5rem); }
  .about__img-accent { display: none; }
  .cursor-dot { display: none; }

  /* Padding general más ajustado */
  .section { padding: 3.5rem 0; }
  .container { padding: 0 1.25rem; }

  /* Trust bar stack */
  .trust-bar__grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }

  /* CTA section */
  .cta-section { padding: 4rem 0; }
  .cta-title { font-size: clamp(1.8rem, 7vw, 2.5rem); }
  .cta-actions { flex-direction: column; gap: 0.75rem; }
  .cta-actions .btn { width: 100%; }

  /* Newsletter */
  .newsletter-form { flex-direction: column; gap: 0.75rem; }
  .newsletter-input, .newsletter-btn { width: 100%; }
  .newsletter-title { font-size: clamp(1.6rem, 6vw, 2.2rem); }
}

@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
  .hero__actions { flex-direction: column; width: 100%; }
  .hero__actions .btn { width: 100%; text-align: center; }
  .trust-bar__grid { grid-template-columns: 1fr; }
  .trust-item { padding: 0.75rem 0; }
  .stat-counter__num { font-size: 2.5rem; }
}

/* =============================================
   CARRUSELES SWIPER
   ============================================= */

/* Wrapper que permite que el swiper desborde ligeramente */
.carousel-outer {
  position: relative;
  padding: 0 clamp(1rem, 5vw, 5rem);
  margin-top: 2.5rem;
}

/* El swiper puede mostrar el inicio del slide siguiente */
.featured-swiper,
.novedades-swiper {
  overflow: visible;
  /* Clip horizontal para que no desborde la página */
  clip-path: inset(0 -2px 0 0);
}

/* Pagination debajo */
.swiper-pagination.featured-pagination,
.swiper-pagination.novedades-pagination {
  position: relative;
  margin-top: 1.8rem;
}

.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: var(--color-border);
  opacity: 1;
  transition: all 0.3s ease;
}
.swiper-pagination-bullet-active {
  background: var(--color-secondary);
  width: 28px;
  border-radius: 4px;
}

/* =============================================
   Flechas de navegación carrusel — versión premium robusta
   SVG encoded en URL-safe para que se renderice en TODOS los navegadores.
   Círculo oscuro profundo con flecha dorada, invertir al hover.
============================================= */
.swiper-button-prev,
.swiper-button-next {
  width: 52px !important;
  height: 52px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: var(--color-primary);
  border: 1px solid var(--color-primary);
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(20,18,15,.14);
  color: var(--color-secondary);
  transition:
    background .35s ease,
    border-color .35s ease,
    box-shadow .35s ease,
    transform .35s ease;
  margin-top: -26px;         /* centrado vertical */
  top: 50%;
  z-index: 20;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  touch-action: manipulation;
  --swiper-navigation-size: 0;
}

.swiper-button-prev::before,
.swiper-button-next::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
}

/* Reemplazar icono default de Swiper con SVG nuestro */
.swiper-button-prev::after,
.swiper-button-next::after {
  content: '' !important;
  width: 18px;
  height: 18px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: transform .35s ease, background-image .2s ease;
  font-size: 0 !important;
  font-family: inherit !important;
  font-weight: normal !important;
  display: block;
}

/* Flecha izquierda — arrow-left Feather icon, stroke dorado */
.swiper-button-prev::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23c9a96e' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='19' y1='12' x2='5' y2='12'/%3E%3Cpolyline points='12 19 5 12 12 5'/%3E%3C/svg%3E");
}

.swiper-button-next::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23c9a96e' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='5' y1='12' x2='19' y2='12'/%3E%3Cpolyline points='12 5 19 12 12 19'/%3E%3C/svg%3E");
}

/* Hover: fondo dorado, flecha oscura, lift + shift direccional */
.swiper-button-prev:hover,
.swiper-button-next:hover {
  background: var(--color-secondary);
  border-color: var(--color-secondary);
  box-shadow: 0 16px 36px rgba(201,169,110,.3);
}
.swiper-button-prev:hover::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%231a1a1a' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='19' y1='12' x2='5' y2='12'/%3E%3Cpolyline points='12 19 5 12 12 5'/%3E%3C/svg%3E");
  transform: translateX(-3px);
}
.swiper-button-next:hover::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%231a1a1a' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='5' y1='12' x2='19' y2='12'/%3E%3Cpolyline points='12 5 19 12 12 19'/%3E%3C/svg%3E");
  transform: translateX(3px);
}

/* Active táctil — feedback sutil al click */
.swiper-button-prev:active,
.swiper-button-next:active {
  transform: scale(0.94);
}

/* Estado disabled — fade (cuando Swiper llega al extremo sin loop) */
.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  pointer-events: none;
}

/* Posición: las flechas sobresalen ligeramente fuera del contenedor,
   estilo editorial. Usamos left/right negativos del carousel-outer. */
.featured-swiper .swiper-button-prev,
.novedades-swiper .swiper-button-prev,
.related-swiper .swiper-button-prev {
  left: -26px;
}
.featured-swiper .swiper-button-next,
.novedades-swiper .swiper-button-next,
.related-swiper .swiper-button-next {
  right: -26px;
}

/* En mobile: flechas más pequeñas y pegadas al borde (dentro del card) */
@media (max-width: 768px) {
  .swiper-button-prev,
  .swiper-button-next {
    width: 40px !important;
    height: 40px !important;
    margin-top: -20px;
    box-shadow: 0 6px 16px rgba(20,18,15,.18);
  }
  .swiper-button-prev::after,
  .swiper-button-next::after {
    width: 14px;
    height: 14px;
  }
  .featured-swiper .swiper-button-prev,
  .novedades-swiper .swiper-button-prev,
  .related-swiper .swiper-button-prev {
    left: 6px;
  }
  .featured-swiper .swiper-button-next,
  .novedades-swiper .swiper-button-next,
  .related-swiper .swiper-button-next {
    right: 6px;
  }
}

/* Slide — la card ocupa el 100% del slide */
.featured-swiper .swiper-slide,
.novedades-swiper .swiper-slide {
  height: auto;
}
.featured-swiper .product-card,
.novedades-swiper .product-card {
  width: 100%;
  margin: 0;
  box-shadow: none;
}

/* Sección Novedades fondo ligeramente diferente para contraste */
.novedades-section {
  background: var(--color-bg);
}

/* Catálogo — estilos de empty state y paginación */
.catalog-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 4rem 2rem;
  color: var(--color-text-light);
}
.catalog-empty p { font-size: 1.1rem; margin-bottom: 1.5rem; }

.pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}
.page-btn {
  padding: 0.5rem 1rem;
  border: 1px solid var(--color-border);
  background: transparent;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.25s ease;
  color: var(--color-text);
}
.page-btn:hover { border-color: var(--color-primary); background: var(--color-primary); color: #fff; }
.page-btn.active { background: var(--color-secondary); border-color: var(--color-secondary); color: #fff; }

/* List view en catálogo */
.catalog-grid.list-view {
  grid-template-columns: 1fr;
}
.catalog-grid.list-view .product-card {
  display: grid;
  grid-template-columns: 200px 1fr;
}
.catalog-grid.list-view .product-card__img-wrap {
  padding-top: 0;
  height: 200px;
}
.catalog-grid.list-view .product-card__info {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* =============================================
   HERO — SLIDESHOW + TEASER
   ============================================= */

/* Hero: una sola imagen fija (la misma que muestra el loader al terminar).
   El slideshow automático se desactiva — las imágenes del catálogo son
   verticales y no funcionan bien como fondo full-screen cíclico.
   Las otras dos imágenes del HTML quedan ocultas pero disponibles si
   queremos reactivar el ciclo con imágenes adecuadas. */
.hero__bg--1 { z-index: 0; opacity: 1; }
.hero__bg--2 { z-index: 0; opacity: 0; }
.hero__bg--3 { z-index: 0; opacity: 0; }

/* Dot indicators — ocultos porque el slideshow automático está desactivado.
   Si reactivas el slideshow, quita este display:none y restaura posición. */
.hero__dots {
  display: none;
}
.hero__dots--legacy {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: .6rem;
  align-items: center;
}
.hero__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  transition: all .4s ease;
  cursor: pointer;
}
.hero__dot.active { background: var(--color-secondary); width: 20px; border-radius: 3px; }

/* Product teaser (bottom-right of hero) */
.hero__teaser {
  position: absolute;
  bottom: 3rem;
  right: var(--container-padding);
  z-index: 3;
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.18);
  padding: .85rem 1.1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 280px;
  text-decoration: none;
  color: #fff;
  transition: background .3s ease;
}
.hero__teaser:hover {
  background: rgba(255,255,255,0.18);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}
.hero__teaser {
  transition: background .3s ease, transform .4s var(--ease-expo, cubic-bezier(0.16, 1, 0.3, 1)), box-shadow .4s ease;
}
.hero__teaser img { width: 52px; height: 52px; object-fit: cover; flex-shrink: 0; }
.hero__teaser-tag {
  font-size: .62rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--color-secondary);
  display: block;
  margin-bottom: .2rem;
}
.hero__teaser-name { font-size: .82rem; font-weight: 500; margin-bottom: .15rem; line-height: 1.3; }
.hero__teaser-price { font-size: .75rem; color: rgba(255,255,255,.65); }
.hero__teaser-arrow {
  margin-left: auto;
  font-size: 1.2rem;
  color: var(--color-secondary);
  flex-shrink: 0;
}

/* =============================================
   TRUST BAR
   ============================================= */
.trust-bar {
  background: #faf8f5;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 1.75rem 0;
}
.trust-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.trust-item__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-secondary);
  transition: all .3s ease;
}
.trust-item:hover .trust-item__icon {
  background: var(--color-secondary);
  color: #fff;
  border-color: var(--color-secondary);
}
.trust-item__title {
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .02em;
  margin-bottom: .15rem;
  color: var(--color-text);
}
.trust-item__sub {
  font-size: .74rem;
  color: var(--color-text-light);
}

/* =============================================
   LOOKBOOK EDITORIAL
   ============================================= */
.lookbook-section {
  overflow: hidden;
}
.lookbook-wrap {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  min-height: 80vh;
}
.lookbook-main {
  position: relative;
  overflow: hidden;
}
.lookbook-main__inner {
  height: 100%;
  position: relative;
}
.lookbook-main__inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 600px;
  transition: transform 1.6s var(--ease-expo, cubic-bezier(0.16, 1, 0.3, 1));
}
.lookbook-section:hover .lookbook-main__inner img {
  transform: scale(1.05);
}
.lookbook-chip {
  position: absolute;
  bottom: 2.5rem;
  left: 2.5rem;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(8px);
  padding: .9rem 1.4rem;
  border-left: 3px solid var(--color-secondary);
}
.lookbook-chip__eyebrow {
  font-size: .66rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--color-secondary);
  margin-bottom: .3rem;
}
.lookbook-chip__title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--color-text);
}

.lookbook-side {
  display: flex;
  flex-direction: column;
  background: #1a1a1a;
}
.lookbook-side__text {
  flex: 1;
  padding: 4rem 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
}
.lookbook-side__text .section-eyebrow { color: var(--color-secondary); }
.lookbook-heading {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  font-weight: 400;
  line-height: 1.1;
  margin: 1rem 0 0;
  color: #fff;
}
.lookbook-heading em { font-style: italic; color: var(--color-secondary); }
.lookbook-line {
  width: 45px;
  height: 1px;
  background: var(--color-secondary);
  margin: 1.5rem 0;
}
.lookbook-body {
  color: rgba(255,255,255,.65);
  line-height: 1.85;
  font-size: .92rem;
  margin-bottom: .75rem;
}
.lookbook-side__img {
  flex: 0 0 45%;
  position: relative;
  overflow: hidden;
}
.lookbook-side__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s ease;
}
.lookbook-section:hover .lookbook-side__img img { transform: scale(1.04); }
.lookbook-side__caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: rgba(0,0,0,.6);
  backdrop-filter: blur(4px);
  padding: .75rem 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .75rem;
  color: rgba(255,255,255,.85);
  letter-spacing: .06em;
}
.lookbook-side__caption span:last-child { color: var(--color-secondary); font-weight: 500; }

/* =============================================
   STATS COUNTER
   ============================================= */
.stats-section {
  background: var(--color-primary);
  padding: 5.5rem 0;
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: 'SPLENDOR';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-serif);
  font-size: clamp(6rem, 15vw, 14rem);
  color: rgba(255,255,255,.025);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: .1em;
}
.stats-section__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.stat-counter {
  flex: 1;
  text-align: center;
  padding: 0 3rem;
  position: relative;
  z-index: 1;
}
.stat-counter__num-wrap {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  line-height: 1;
  margin-bottom: 1rem;
}
.stat-counter__num {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 5vw, 4.5rem);
  color: var(--color-secondary);
  line-height: 1;
}
.stat-counter__sup {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: var(--color-secondary);
  margin-top: .25em;
}
.stat-counter__label {
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  line-height: 1.7;
}
.stat-counter__sep {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,.12);
  flex-shrink: 0;
}

/* =============================================
   MATERIALS SHOWCASE
   ============================================= */
.materials-section { background: var(--color-bg); }
.materials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.material-card {
  position: relative;
  overflow: hidden;
  cursor: default;
}
.material-card__img {
  padding-top: 130%;
  position: relative;
  overflow: hidden;
}
.material-card__img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-expo, cubic-bezier(0.16, 1, 0.3, 1));
}
.material-card:hover .material-card__img img { transform: scale(1.08); }
.material-card__body {
  padding: 1.25rem 0 .25rem;
}
.material-card__name {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: .4rem;
  color: var(--color-text);
}
.material-card__desc {
  font-size: .8rem;
  color: var(--color-text-light);
  line-height: 1.6;
}

/* =============================================
   NEWSLETTER
   ============================================= */
.newsletter-section {
  position: relative;
  overflow: hidden;
  padding: 7rem 0;
}
.newsletter-section__bg {
  position: absolute;
  inset: 0;
}
.newsletter-section__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.newsletter-section__overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 12, 8, 0.82);
}
.newsletter-section__content {
  position: relative;
  z-index: 2;
}

/* Hero bg: sin zoom, sin transform. La imagen es lo que es.
   object-position: center para comportamiento estándar. */
.hero__bg {
  object-position: center center;
  transform: none;
}
.hero__bg.is-active {
  transform: none;
}

/* Hero: single-column. El aside queda oculto por simplicidad visual.
   Si quieres reintroducirlo como teaser, quita el display:none del aside
   y restaura el grid 2-columnas. */
.hero__shell {
  display: block;
  width: 100%;
}

.hero__copy {
  max-width: 36rem;
}

.hero__aside {
  display: none;
}

.hero__eyebrow-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 0.35rem;
}

.hero__availability {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.58);
}

.hero__facts {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 0 0 1.75rem;
}

.hero__fact {
  min-width: 10rem;
  padding: 0.95rem 1rem;
  border-radius: 1rem;
  background: rgba(14, 14, 14, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.hero__fact-value {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2.15rem);
  line-height: 1;
  color: #fff;
}

.hero__fact-label {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.6;
}

.hero__support {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero__note {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  max-width: 34rem;
}

.hero__contact-link {
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-secondary);
  border-bottom: 1px solid currentColor;
  padding-bottom: 0.2rem;
  transition: color 0.25s ease, border-color 0.25s ease;
}

.hero__contact-link:hover {
  color: #fff;
  border-color: #fff;
}

/* Aside oculto mientras el hero sea single-column. Para reactivar:
   quitar display:none y restaurar grid 2-columnas en .hero__shell. */
.hero__aside {
  display: none;
  justify-content: flex-end;
}

.hero__aside-card {
  width: min(100%, 18rem);
  padding: 1rem 1.1rem;
  border-radius: 1rem;
  background: rgba(15, 15, 15, 0.48);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
}

.hero__aside-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.hero__aside-label {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.56);
}

.hero__aside-index {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--color-secondary);
}

.hero__aside-copy {
  margin-top: 1rem;
  font-size: 0.84rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.62);
}

.hero__dots {
  gap: 1rem;
}

.hero__dot {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  width: auto;
  height: auto;
  border-radius: 0;
  background: none;
  border: none;
  padding: 0;
  color: rgba(255, 255, 255, 0.44);
  transition: color 0.3s ease;
}

.hero__dot-line {
  display: inline-block;
  width: 24px;
  height: 1px;
  background: currentColor;
  transition: width 0.35s ease, background 0.35s ease;
}

.hero__dot-label {
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
}

.hero__dot.active {
  color: #fff;
}

.hero__dot.active .hero__dot-line {
  width: 52px;
  background: var(--color-secondary);
}

.hero__dot.active .hero__dot-label {
  color: var(--color-secondary);
}

@media (max-width: 1024px) {
  .hero__shell {
    grid-template-columns: 1fr;
  }

  .hero__aside {
    justify-content: flex-start;
  }
}

@media (max-width: 768px) {
  .hero__facts {
    gap: 0.75rem;
  }

  .hero__fact {
    min-width: calc(50% - 0.5rem);
  }

  .hero__aside {
    display: none;
  }

  .hero__support {
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .hero__fact {
    min-width: 100%;
  }
}
.newsletter-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  color: #fff;
}
.newsletter-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 1rem;
}
.newsletter-sub {
  color: rgba(255,255,255,.65);
  font-size: .95rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}
.newsletter-form {
  display: flex;
  gap: 0;
  max-width: 480px;
  margin: 0 auto 1rem;
}
.newsletter-input {
  flex: 1;
  padding: .9rem 1.25rem;
  border: 1px solid rgba(255,255,255,.2);
  border-right: none;
  background: rgba(255,255,255,.08);
  color: #fff;
  font-family: inherit;
  font-size: .88rem;
  outline: none;
  transition: border-color .2s;
}
.newsletter-input::placeholder { color: rgba(255,255,255,.4); }
.newsletter-input:focus { border-color: var(--color-secondary); }
.newsletter-btn {
  padding: .9rem 1.6rem;
  background: var(--color-secondary);
  color: #fff;
  border: 1px solid var(--color-secondary);
  font-family: var(--font-sans);
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .4s var(--ease-expo, cubic-bezier(0.16, 1, 0.3, 1));
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  z-index: 1;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.newsletter-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #fff;
  z-index: -1;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.55s var(--ease-expo, cubic-bezier(0.16, 1, 0.3, 1));
}
.newsletter-btn:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}
.newsletter-btn:hover { color: var(--color-primary); border-color: #fff; }
.newsletter-ok {
  color: var(--color-secondary);
  font-size: .85rem;
  letter-spacing: .05em;
  margin-top: .5rem;
}
.newsletter-disclaimer {
  font-size: .72rem;
  color: rgba(255,255,255,.35);
  letter-spacing: .05em;
  margin-top: 1rem;
}

/* =============================================
   RESPONSIVE — NUEVAS SECCIONES
   ============================================= */
@media (max-width: 1024px) {
  .trust-bar__grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .lookbook-wrap { grid-template-columns: 1fr; }
  .lookbook-main__inner img { min-height: 500px; }
  .lookbook-side { flex-direction: row; }
  .lookbook-side__text { padding: 3rem 2.5rem; }
  .lookbook-side__img { flex: 0 0 45%; }
  .stats-section__inner { flex-wrap: wrap; gap: 2rem; }
  .stat-counter__sep { display: none; }
  .stat-counter { flex: 0 0 calc(50% - 1rem); }
}
@media (max-width: 768px) {
  .trust-bar__grid { grid-template-columns: 1fr 1fr; }
  .lookbook-side { flex-direction: column; }
  .lookbook-side__img { flex: 0 0 280px; }
  .materials-grid { grid-template-columns: 1fr; gap: 1rem; }
  .material-card__img { padding-top: 70%; }
  .newsletter-form { flex-direction: column; }
  .newsletter-input { border-right: 1px solid rgba(255,255,255,.2); border-bottom: none; }
  .hero__teaser { display: none; }
  .stats-section__inner { flex-direction: column; align-items: center; }
  .stat-counter { flex: none; width: 100%; max-width: 240px; }
}
@media (max-width: 480px) {
  .trust-bar__grid { grid-template-columns: 1fr; }
  .trust-item { gap: .75rem; }
}

/* =============================================
   LOOKBOOK CURTAIN — Efecto Zara Home
   Una sola imagen "front" se ve completa al inicio. En realidad está
   compuesta por dos capas superpuestas (mismas dimensiones), cada una
   con un clip-path que solo deja visible la mitad correspondiente.
   Al animar, cada mitad se desplaza hacia su lado → la foto "se parte"
   por el centro, revelando la imagen "back".
   ============================================= */
.lookbook-curtain {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

/* Anular el hover-scale del estilo antiguo dentro de la cortina */
.lookbook-section:hover .lookbook-curtain .lookbook-curtain__front img {
  transform: none;
}

/* Imagen de fondo (la que se revela al abrirse las cortinas) */
.lookbook-curtain__back {
  position: absolute !important;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  min-height: 600px;
  z-index: 1;
  transform: scale(1.03);
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}
.lookbook-curtain.is-open .lookbook-curtain__back {
  transform: scale(1);
}

/* Contenedor de las 2 mitades — ambas ocupan el 100% del área */
.lookbook-curtain__front {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

/* Cada "mitad" ocupa el 100% del área pero tiene un clip-path que
   solo muestra su lado. Al superponerse forman UNA foto completa. */
.lookbook-curtain__half {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  will-change: transform;
  transition: transform 1.1s cubic-bezier(0.76, 0, 0.24, 1);
}
.lookbook-curtain__half--left  { clip-path: inset(0 50% 0 0); }  /* solo lado izquierdo visible */
.lookbook-curtain__half--right { clip-path: inset(0 0 0 50%); }  /* solo lado derecho visible */

/* La imagen cubre el 100% de cada mitad — es LA MISMA imagen en ambas,
   posicionada idénticamente, así que visualmente se lee como una sola. */
.lookbook-curtain__half img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 600px;
  transition: none !important;
}

/* Al abrirse: cada mitad se desliza hacia su lado */
.lookbook-curtain.is-open .lookbook-curtain__half--left  { transform: translateX(-102%); }
.lookbook-curtain.is-open .lookbook-curtain__half--right { transform: translateX( 102%); }

/* Línea central dorada que marca la juntura (se desvanece al abrir) */
.lookbook-curtain__seam {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: linear-gradient(180deg,
    rgba(201,169,110,0) 0%,
    rgba(201,169,110,0.6) 20%,
    rgba(201,169,110,0.9) 50%,
    rgba(201,169,110,0.6) 80%,
    rgba(201,169,110,0) 100%);
  z-index: 3;
  pointer-events: none;
  opacity: 1;
  transition: opacity .5s ease;
}
.lookbook-curtain.is-open .lookbook-curtain__seam { opacity: 0; }

/* Chip siempre encima */
.lookbook-curtain .lookbook-chip {
  z-index: 4;
}

/* En mobile (menos altura), bajar el min-height */
@media (max-width: 900px) {
  .lookbook-curtain__back,
  .lookbook-curtain__half img { min-height: 480px; }
}

/* =============================================
   HOME MOBILE TUNE-UPS
   Scoped a body.home-page para que ganen frente a mobile.css
   sin tocar estilos shared.
   ============================================= */
.newsletter-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.newsletter-points {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.6rem 0.9rem;
  margin-top: 1.35rem;
  color: rgba(255,255,255,.62);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.newsletter-points__dot {
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: var(--color-secondary);
  flex-shrink: 0;
}

@media (max-width: 768px) {
  body.home-page .sv-header.is-compact-loader .sv-loader__h1,
  body.home-page .sv-header .sv-loader__h1 {
    font-size: clamp(2.1rem, 12vw, 3.8rem);
    line-height: 0.88;
  }

  body.home-page .sv-header .sv-loader__box-inner {
    min-width: 0.88em;
    height: 82%;
  }

  body.home-page .hero {
    min-height: clamp(31rem, calc(100dvh - 4rem), 36rem);
    padding: calc(var(--nav-height, 70px) + 1rem) 0 2.5rem;
  }

  body.home-page .hero__content,
  body.home-page .hero__copy {
    max-width: 100%;
  }

  body.home-page .hero__copy {
    max-width: min(29rem, 100%);
  }

  body.home-page .hero__eyebrow {
    margin-bottom: 0.85rem;
  }

  body.home-page .hero__title {
    max-width: 10ch;
    margin-bottom: 0.85rem;
    font-size: clamp(1.95rem, 9vw, 3rem);
  }

  body.home-page .hero__sub {
    max-width: 30ch;
    margin-bottom: 1.25rem;
    font-size: 0.96rem;
    line-height: 1.5;
    color: rgba(255,255,255,.82);
  }

  body.home-page .hero__actions {
    width: min(100%, 24rem);
    gap: 0.65rem;
  }

  body.home-page .hero__actions .btn,
  body.home-page .hero__actions .btn-light,
  body.home-page .hero__actions .btn-ghost-light {
    min-height: 48px;
    padding: 0.95rem 1.2rem;
    letter-spacing: 0.08em;
  }

  body.home-page .section {
    padding: 3rem 0;
  }

  body.home-page .section-header {
    margin-bottom: 1.25rem;
    gap: 0.35rem;
  }

  body.home-page .section-link {
    min-height: 44px;
    padding: .25rem 0;
  }

  body.home-page .carousel-outer {
    padding: 0 1rem 4rem;
    margin-top: 1.75rem;
  }

  body.home-page .featured-swiper,
  body.home-page .novedades-swiper {
    padding-bottom: 0.35rem;
    clip-path: inset(0);
  }

  body.home-page .swiper-button-prev,
  body.home-page .swiper-button-next {
    width: 46px !important;
    height: 46px !important;
    top: auto;
    bottom: -0.2rem;
    margin-top: 0;
    box-shadow: 0 10px 24px rgba(20,18,15,.16);
  }

  body.home-page .featured-swiper .swiper-button-prev,
  body.home-page .novedades-swiper .swiper-button-prev,
  body.home-page .related-swiper .swiper-button-prev {
    left: 0 !important;
  }

  body.home-page .featured-swiper .swiper-button-next,
  body.home-page .novedades-swiper .swiper-button-next,
  body.home-page .related-swiper .swiper-button-next {
    right: 0 !important;
  }

  body.home-page .swiper-button-prev::after,
  body.home-page .swiper-button-next::after {
    width: 16px;
    height: 16px;
  }

  body.home-page .swiper-pagination.featured-pagination,
  body.home-page .swiper-pagination.novedades-pagination {
    margin-top: 1.1rem;
  }

  body.home-page .product-card__img-wrap {
    margin-bottom: 0.8rem;
  }

  body.home-page .product-card__actions {
    bottom: 0.75rem;
    right: 0.75rem;
  }

  body.home-page .btn-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    border-radius: 999px;
  }

  body.home-page .category-card__img-wrap {
    padding-top: 82%;
  }

  body.home-page .category-card__overlay {
    padding: 1rem;
  }

  body.home-page .category-card__name {
    font-size: 1.25rem !important;
  }

  body.home-page .category-card__count {
    max-width: 24ch;
    opacity: 1;
    transform: none;
    font-size: 0.72rem !important;
    line-height: 1.5;
  }

  body.home-page .lookbook-wrap {
    gap: 1.25rem !important;
  }

  body.home-page .lookbook-curtain,
  body.home-page .lookbook-curtain__back,
  body.home-page .lookbook-curtain__half img {
    min-height: 320px !important;
  }

  body.home-page .lookbook-chip {
    left: 1rem;
    bottom: 1rem;
    padding: 0.75rem 1rem;
  }

  body.home-page .lookbook-side__text {
    padding: 2rem 1.25rem;
  }

  body.home-page .lookbook-line {
    margin: 1rem 0;
  }

  body.home-page .lookbook-body {
    font-size: 0.88rem;
    line-height: 1.7;
  }

  body.home-page .lookbook-side__caption {
    gap: 0.5rem;
    flex-wrap: wrap;
    padding: 0.7rem 0.85rem;
    font-size: 0.68rem;
  }

  body.home-page .stats-section {
    padding: 3.5rem 0;
  }

  body.home-page .stats-section__inner {
    gap: 0.75rem;
  }

  body.home-page .stat-counter {
    max-width: none;
    padding: 0.85rem 0;
  }

  body.home-page .stat-counter__label {
    letter-spacing: 0.14em;
    line-height: 1.55;
  }

  body.home-page .materials-grid {
    gap: 0.875rem;
  }

  body.home-page .material-card__img {
    padding-top: 62%;
  }

  body.home-page .material-card__body {
    padding-top: 0.85rem;
  }

  body.home-page .material-card__desc {
    font-size: 0.77rem;
    line-height: 1.55;
  }

  body.home-page .about-grid {
    gap: 1.5rem;
  }

  body.home-page .about__img-wrap img {
    height: 320px;
  }

  body.home-page .about__body {
    font-size: 0.95rem;
    line-height: 1.7;
  }

  body.home-page .testimonial-card {
    padding: 1.5rem 1.2rem;
  }

  body.home-page .testimonial-card__quote {
    margin-bottom: 1.15rem;
    font-size: 0.95rem;
    line-height: 1.65;
  }

  body.home-page .newsletter-section {
    padding: 4.5rem 0;
  }

  body.home-page .newsletter-title {
    line-height: 1.12;
  }

  body.home-page .newsletter-sub {
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    line-height: 1.65;
  }

  body.home-page .newsletter-actions {
    flex-direction: column;
    gap: 0.75rem;
  }

  body.home-page .newsletter-actions .btn {
    width: 100%;
    justify-content: center;
  }

  body.home-page .newsletter-points {
    justify-content: center;
    gap: 0.55rem 0.75rem;
    font-size: 0.72rem;
    line-height: 1.4;
  }

  body.home-page .newsletter-points__dot {
    display: none;
  }

  body.home-page .blog-grid {
    gap: 1rem !important;
  }

  body.home-page .blog-card__img-wrap {
    padding-top: 60%;
    margin-bottom: 0.9rem;
  }

  body.home-page .blog-card__body {
    padding: 0;
  }

  body.home-page .blog-card__title {
    font-size: 1.05rem;
    line-height: 1.35;
  }

  body.home-page .blog-card__date {
    line-height: 1.5;
  }

  body.home-page .cta-section {
    padding: 4rem 0 4.5rem;
  }

  body.home-page .cta-title {
    margin-bottom: 1.75rem;
  }
}

@media (max-width: 480px) {
  body.home-page .container {
    padding: 0 1rem;
  }

  body.home-page .sv-header.is-compact-loader .sv-loader__h1,
  body.home-page .sv-header .sv-loader__h1 {
    font-size: clamp(1.9rem, 11vw, 3rem);
  }

  body.home-page .hero {
    min-height: 29rem;
    padding: calc(var(--nav-height, 70px) + 0.75rem) 0 2rem;
  }

  body.home-page .hero__title {
    max-width: 9ch;
    font-size: clamp(1.85rem, 9.4vw, 2.6rem);
  }

  body.home-page .hero__sub {
    max-width: 27ch;
    margin-bottom: 1rem;
    font-size: 0.92rem;
  }

  body.home-page .section {
    padding: 2.6rem 0;
  }

  body.home-page .section-header {
    margin-bottom: 1rem;
  }

  body.home-page .carousel-outer {
    padding: 0 1rem 3.9rem;
  }

  body.home-page .category-card__img-wrap {
    padding-top: 72%;
  }

  body.home-page .trust-bar {
    padding: 1.1rem 0;
  }

  body.home-page .trust-bar__grid {
    gap: 0.7rem !important;
  }

  body.home-page .trust-item {
    gap: 0.75rem;
    align-items: flex-start;
    padding: 0.3rem 0;
  }

  body.home-page .trust-item__icon {
    width: 42px;
    height: 42px;
  }

  body.home-page .lookbook-curtain,
  body.home-page .lookbook-curtain__back,
  body.home-page .lookbook-curtain__half img {
    min-height: 290px !important;
  }

  body.home-page .lookbook-side__text {
    padding: 1.5rem 1rem;
  }

  body.home-page .stats-section {
    padding: 2.75rem 0;
  }

  body.home-page .stats-section::before {
    display: none;
  }

  body.home-page .stats-section__inner {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
  }

  body.home-page .stat-counter {
    width: 100%;
    padding: 0.9rem 0.45rem;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
  }

  body.home-page .stat-counter__num {
    font-size: clamp(2rem, 9vw, 2.4rem);
  }

  body.home-page .stat-counter__label {
    font-size: 0.62rem;
  }

  body.home-page .material-card {
    display: grid;
    grid-template-columns: minmax(0, 108px) minmax(0, 1fr);
    gap: 0.9rem;
    align-items: stretch;
    border-top: 1px solid var(--color-border);
    padding-top: 0.9rem;
  }

  body.home-page .material-card:first-child {
    padding-top: 0;
    border-top: 0;
  }

  body.home-page .material-card__img {
    min-height: 118px;
    padding-top: 0;
  }

  body.home-page .material-card__body {
    padding: 0.2rem 0 0;
  }

  body.home-page .material-card__name {
    margin-bottom: 0.25rem;
    font-size: 1rem;
  }

  body.home-page .material-card__desc {
    font-size: 0.75rem;
    line-height: 1.45;
  }

  body.home-page .about__img-wrap img {
    height: 260px;
  }

  body.home-page .about__body {
    font-size: 0.9rem;
  }

  body.home-page .testimonial-card {
    padding: 1.2rem 1rem;
  }

  body.home-page .testimonial-card__stars {
    margin-bottom: 0.75rem;
  }

  body.home-page .testimonial-card__quote {
    font-size: 0.9rem;
    line-height: 1.55;
  }

  body.home-page .testimonial-card__author {
    gap: 0.75rem;
  }

  body.home-page .testimonial-card__avatar {
    width: 40px;
    height: 40px;
  }

  body.home-page .newsletter-section {
    padding: 3.75rem 0;
  }

  body.home-page .newsletter-title {
    font-size: clamp(1.55rem, 8vw, 2rem);
  }

  body.home-page .newsletter-points {
    justify-content: flex-start;
  }

  body.home-page .blog-card {
    display: grid;
    grid-template-columns: minmax(0, 112px) minmax(0, 1fr);
    gap: 0.9rem;
    align-items: stretch;
    padding-bottom: 0.9rem;
    border-bottom: 1px solid var(--color-border);
  }

  body.home-page .blog-card:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }

  body.home-page .blog-card__img-wrap {
    min-height: 112px;
    margin: 0;
    padding-top: 0;
  }

  body.home-page .blog-card__body {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  body.home-page .blog-card__cat {
    margin-bottom: 0.35rem;
  }

  body.home-page .blog-card__title {
    margin-bottom: 0.35rem;
    font-size: 0.98rem;
  }

  body.home-page .blog-card__date {
    font-size: 0.72rem;
  }
}

@media (max-width: 390px) {
  body.home-page .hero {
    min-height: 27.5rem;
    padding-bottom: 1.75rem;
  }

  body.home-page .hero__title {
    font-size: clamp(1.72rem, 9vw, 2.35rem);
  }

  body.home-page .hero__sub {
    max-width: 25ch;
    font-size: 0.9rem;
  }

  body.home-page .hero__actions .btn,
  body.home-page .hero__actions .btn-light,
  body.home-page .hero__actions .btn-ghost-light {
    min-height: 46px;
    font-size: 0.78rem;
  }

  body.home-page .carousel-outer {
    padding: 0 0.9rem 3.7rem;
  }

  body.home-page .swiper-button-prev,
  body.home-page .swiper-button-next {
    width: 44px !important;
    height: 44px !important;
  }

  body.home-page .category-card__overlay {
    padding: 0.85rem;
  }

  body.home-page .category-card__name {
    font-size: 1.12rem !important;
  }

  body.home-page .lookbook-curtain,
  body.home-page .lookbook-curtain__back,
  body.home-page .lookbook-curtain__half img {
    min-height: 260px !important;
  }

  body.home-page .stats-section__inner {
    gap: 0.7rem;
  }

  body.home-page .stat-counter {
    padding: 0.8rem 0.4rem;
  }

  body.home-page .material-card,
  body.home-page .blog-card {
    grid-template-columns: 96px 1fr;
    gap: 0.75rem;
  }

  body.home-page .material-card__img,
  body.home-page .blog-card__img-wrap {
    min-height: 102px;
  }
}
