/** Shopify CDN: Minification failed

Line 139:14 Expected identifier but found whitespace
Line 139:16 Unexpected "{"
Line 139:25 Expected ":"
Line 139:51 Expected ":"
Line 140:17 Expected identifier but found whitespace
Line 140:19 Unexpected "{"
Line 140:28 Expected ":"
Line 140:57 Expected ":"

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:collection-tab (INDEX:11) */
.collection-tabs {
  padding-top: 6rem;
  padding-bottom: 6rem;
}
.collection-tabs__head {
  text-align: center;
  margin-bottom: 1.8rem;
}
.collection-tabs__title {
  font-size: clamp(2.6rem, 3vw, 3.2rem);
  font-weight: 800;
  margin: 0 0 0.4rem;
}
.collection-tabs__sub {
  color: #5b6a51;
  max-width: 38rem;
  margin: 0 auto;
}

/* Píldoras (pestañas) */
.collection-tabs__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
  margin-bottom: 2rem;
}
.collection-tabs__pill {
  background: #ffffff;
  color: #22371A;
  border: 1.5px solid rgba(79, 139, 58, 0.3);
  padding: 0.55rem 1.2rem;
  border-radius: 999px;
  font-family: inherit;
  font-weight: 700;
  font-size: 1.3rem;
  cursor: pointer;
  transition: 0.2s;
  white-space: nowrap;
}
.collection-tabs__pill:hover { border-color: #4F8B3A; }
.collection-tabs__pill.is-active {
  background: #4F8B3A;
  color: #ffffff;
  border-color: #4F8B3A;
}

/* Estado de carga */
.collection-tabs__body.is-loading {
  opacity: 0.45;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

/* Cuadrícula (como estaba antes) */
.collection-tabs__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}
@media (min-width: 750px) {
  .collection-tabs__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (min-width: 990px) {
  .collection-tabs__grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
.collection-tabs__empty {
  grid-column: 1 / -1;
  text-align: center;
  color: #6a7a60;
  padding: 2rem 0;
}

/* Paginación «← 1 2 3 →» */
.collection-tabs__pager {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 2.2rem;
  flex-wrap: wrap;
}
.collection-tabs__pager-btn {
  min-width: 42px;
  height: 42px;
  padding: 0 0.7rem;
  border-radius: 999px;
  border: 1.5px solid rgba(79, 139, 58, 0.3);
  background: #ffffff;
  color: #22371A;
  font-family: inherit;
  font-weight: 700;
  font-size: 0.98rem;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: 0.2s;
}
.collection-tabs__pager-btn:hover:not([disabled]):not(.is-current) {
  border-color: #4F8B3A;
}
.collection-tabs__pager-btn.is-current {
  background: #4F8B3A;
  color: #ffffff;
  border-color: #4F8B3A;
  cursor: default;
}
.collection-tabs__pager-btn[disabled] {
  opacity: 0.4;
  cursor: default;
}
.collection-tabs__pager-gap {
  padding: 0 0.4rem;
  color: #6a7a60;
  font-weight: 700;
}
/* END_SECTION:collection-tab */

/* START_SECTION:rutina-kit (INDEX:79) */
/* ── Espaciado exterior — efecto flotante ── */
.rutina-kit-outer {
  padding-top: {{ section.settings.padding_top }}px;
  padding-bottom: {{ section.settings.padding_bottom }}px;
}

/* ── Recuadro morado ── */
.rutina-kit-card {
  border-radius: 20px;
  padding: 3.6rem 3rem 3rem;
  box-shadow: 0 12px 48px rgba(40,20,80,0.22);
}

/* ── Título y subtítulo ── */
.rutina-kit__title {
  color: #ffffff;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  margin: 0 0 0.7rem;
}
.rutina-kit__sub {
  color: rgba(255,255,255,0.75);
  font-size: 1.5rem;
  margin: 0 0 2.4rem;
  max-width: 52rem;
  line-height: 1.5;
}

/* ── Contenedor del slider con flechas ── */
.rutina-kit__slider-wrap {
  position: relative;
  margin-bottom: 2.4rem;
}

/* ── Flechas ── */
.rutina-kit__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: #ffffff;
  color: #3d2a6e;
  border: none;
  border-radius: 50%;
  width: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0,0,0,0.30);
  transition: background 0.2s, transform 0.2s;
}
.rutina-kit__arrow:hover {
  background: #f0e8ff;
  transform: translateY(-50%) scale(1.12);
}
.rutina-kit__arrow--prev { left: -2rem; }
.rutina-kit__arrow--next { right: -2rem; }

@media screen and (max-width: 749px) {
  .rutina-kit__arrow--prev { left: -1.2rem; }
  .rutina-kit__arrow--next { right: -1.2rem; }
}

/* ── Grid con scroll horizontal ── */
.rutina-kit__grid {
  display: flex;
  gap: 1.2rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 0.4rem;
  /* Espacio para que las flechas no tapen las tarjetas en móvil */
  padding-left: 0.2rem;
  padding-right: 0.2rem;
}
.rutina-kit__grid::-webkit-scrollbar { display: none; }

/* ── Tarjeta ── */
.rutina-kit__item {
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 14px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  flex-shrink: 0;
  scroll-snap-align: start;
  transition: background 0.2s, transform 0.2s, border-color 0.2s;
  /* Móvil: ~1 tarjeta visible */
  width: calc(80vw - 3rem);
  max-width: 22rem;
}
.rutina-kit__item:hover {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.35);
  transform: translateY(-3px);
}

/* Desktop: 4 tarjetas visibles, resto con scroll */
@media screen and (min-width: 750px) {
  .rutina-kit__item {
    width: calc((100% - 3.6rem) / 4);
    max-width: none;
  }
}

/* ── Imagen ── */
.rutina-kit__img-wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: rgba(255,255,255,0.06);
}
.rutina-kit__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}
.rutina-kit__item:hover .rutina-kit__img {
  transform: scale(1.05);
}

/* ── Info ── */
.rutina-kit__info {
  padding: 1rem 1.2rem 1.3rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.rutina-kit__step {
  font-size: 1.05rem;
  font-weight: 700;
  color: #c9a8ff;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.rutina-kit__name {
  color: #ffffff;
  font-weight: 700;
  font-size: 1.35rem;
  margin: 0;
  line-height: 1.3;
}
.rutina-kit__price {
  color: rgba(255,255,255,0.7);
  font-size: 1.25rem;
  margin: 0;
}

/* ── Botón agregar kit ── */
.rutina-kit__btn {
  background: #ffffff;
  color: #3d2a6e;
  border: none;
  border-radius: 999px;
  padding: 1rem 2.2rem;
  font-size: 1.5rem;
  font-weight: 700;
  cursor: pointer;
  transition: 0.2s;
  font-family: inherit;
}
.rutina-kit__btn:hover { background: #f0e8ff; }
.rutina-kit__btn:disabled { opacity: 0.6; cursor: not-allowed; }
/* END_SECTION:rutina-kit */

/* CSS from snippet stylesheet tags */
/* START_SNIPPET:card-product (INDEX:95) */
/* Oculta el quick-add nativo — usamos nuestro propio botón */
.card .quick-add {
  display: none !important;
}

/* Imagen siempre cuadrada */
.card-wrapper .card__inner {
  --ratio-percent: 100% !important;
}
.card-wrapper .card__media img {
  object-fit: cover;
}

/* Contenido debajo de la imagen — fondo blanco forzado */
.card > .card__content {
  display: flex;
  flex-direction: column;
  padding: 1rem 1.2rem 1.2rem;
  row-gap: 0.35rem;
  box-sizing: border-box;
  background: #ffffff;
  border-radius: 0 0 1.2rem 1.2rem;
}
.card > .card__content .card-information {
  display: flex;
  flex-direction: column;
  row-gap: 0.3rem;
  flex: 1 1 auto;
  min-width: 0;
}

/* Título en color oscuro */
.card > .card__content .card__heading {
  margin: 0;
  font-size: 1.8rem;
  line-height: 1.1;
  /* Evita que las palabras se corten a la mitad */
  overflow-wrap: break-word;
  word-break: normal;
  hyphens: none;
}
.card > .card__content .card__heading a {
  color: #1a1a1a;
}

/* Bloque precio + botón */
.card > .card__content .card__buy {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-top: 0.7rem;
  width: 100%;
  box-sizing: border-box;
}

/* Precio en verde */
.card__price-wrap {
  min-width: 0;
}
.card__price-wrap .price {
  margin: 0;
}
.card__price-wrap .price .price-item,
.card__price-wrap .price__regular .price-item,
.card__price-wrap .price__sale .price-item {
  font-size: 1.5rem;
  font-weight: 800;
  color: #4F8B3A;
  line-height: 1.1;
}

/* Botón verde con texto blanco */
.card__atc-btn {
  display: block;
  width: 100%;
  box-sizing: border-box;
  background: #4F8B3A;
  color: #ffffff;
  border: none;
  border-radius: 999px;
  padding: 0.65rem 0.5rem;
  font-family: inherit;
  font-size: 1.15rem;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  white-space: normal;
  line-height: 1.2;
  word-break: keep-all;
}
.card__atc-btn:hover {
  background: #22371A;
  transform: translateY(-1px);
}
.card__atc-btn[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

/* ============================================================
   VISTA MÓVIL (≤ 749px): tarjetas más uniformes y legibles.
   El escritorio se mantiene igual.
   ============================================================ */
@media (max-width: 749px) {
  /* Menos relleno para aprovechar el ancho */
  .card > .card__content {
    padding: 0.7rem 0.75rem 0.85rem;
    row-gap: 0.25rem;
  }

  /* Título más pequeño y a máx. 2 líneas → todas las tarjetas iguales */
  .card > .card__content .card__heading {
    font-size: 1.2rem;
    line-height: 1.25;
    min-height: 2.5em;              /* reserva 2 líneas: alturas parejas */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  /* Precio proporcional */
  .card__price-wrap .price .price-item,
  .card__price-wrap .price__regular .price-item,
  .card__price-wrap .price__sale .price-item {
    font-size: 1.1rem;
  }

  /* Botón compacto y sin partir palabras */
  .card__atc-btn {
    font-size: 0.82rem;
    padding: 0.55rem 0.4rem;
    line-height: 1.15;
  }

  .card > .card__content .card__buy {
    gap: 0.4rem;
    padding-top: 0.5rem;
  }
}
/* END_SNIPPET:card-product */