/** Shopify CDN: Minification failed

Line 35:12 Expected identifier but found whitespace
Line 35:13 Unexpected "translateY("

**/
/* =============================
   CURATORS CAROUSEL
   ============================= */

.curators-carousel-section {
  padding: 20px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
}

.section-title__text {
  position: relative;
  font-size: 1.8rem;
  font-weight: 600;
  color: #1a1a1a;
  display: inline-block;
}
/* .section-title__text::before,
.section-title__text::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 60px;
  height: 1px;
  background: #0a2e5a; /* deep blue */
  transform: translateY(-50%);
} */
.section-title__text::before {
  left: -70px;
}
.section-title__text::after {
  right: -70px;
}

/* === Modo CARRUSEL (carousel activado) === */
.curators-carousel--enabled .section-title {
  margin-bottom: 24px;
}

.curators-carousel-wrapper {
  position: relative;
  max-width: 1447px;
  margin: 0 auto;
  padding: 0 8px;
}

.curators-carousel {
  display: flex;
  gap: 16px; /* ← clave: este gap se respeta automáticamente */
  padding: 20px 0;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  overscroll-behavior-x: contain;
  scrollbar-width: none;
  touch-action: pan-x;
}

/* Oculta scrollbar */
.curators-carousel::-webkit-scrollbar {
  display: none;
}

/* Cada slide ocupa 1/5 del ancho del contenedor menos los gaps */
.curators-carousel__slide {
  flex: 0 0 calc((100% - 64px) / 5); /* 4 gaps × 16px = 64px */
  scroll-snap-align: start;
  min-width: 0; /* previene overflow en contenidos internos */
}

/* Botones de navegación */
.curators-carousel-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

.carousel-btn {
  background-color: #b8a77d; /* deep blue */
  color: white;
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 20px;
  transition: all 0.3s ease;
}

.carousel-btn:hover:not(:disabled) {
  background-color: #b8a77d;
  transform: scale(1.05);
}

.carousel-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  transform: none;
}

/* === Tarjeta (curators-card) — estilo coherente con tus preferencias === */
.curators-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.curators-card__image {
  position: relative;
  height: 0;
  padding-bottom: 100%; /* cuadrado */
  overflow: hidden;
}
.curators-card__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.curators-card:hover .curators-card__image img {
  transform: scale(1.03);
}

/* Degradado negro-transparente bajo texto (tu preferencia) */
.curators-card__image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
}

.curators-card__info {
  padding: 16px;
  text-align: center;
  position: relative;
}

.curators-card__name,
.curators-card__role {
  color: white;
  margin: 0;
  padding: 0 8px;
  position: absolute;
  left: 0;
  right: 0;
  text-shadow: 0 1px 2px rgba(0,0,0,0.6);
  z-index: 1;
}
.curators-card__name {
  bottom: 32px;
  font-weight: 600;
  font-size: 1.1rem;
}
.curators-card__role {
  bottom: 14px;
  font-size: 0.9rem;
  opacity: 0.9;
}

/* Enlace cubridor opcional */
.curators-card a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  text-decoration: none;
}

/* ✅ Responsive: ajusta cantidad visible según pantalla */
@media (max-width: 1023px) {
  /* En tablets: 4 elementos */
  .curators-carousel__slide {
    flex: 0 0 calc((100% - 48px) / 4); /* 3 gaps × 16px */
  }
}

@media (max-width: 749px) {
  /* En móviles grandes: 3 elementos */
  .curators-carousel__slide {
    flex: 0 0 calc((100% - 32px) / 3); /* 2 gaps × 16px */
  }
}

@media (max-width: 480px) {
  /* En móviles pequeños: 2 elementos */
  .curators-carousel__slide {
    flex: 0 0 calc((100% - 16px) / 2); /* 1 gap × 16px */
  }
}