/** Shopify CDN: Minification failed

Line 376:0 Unexpected "}"

**/
/* =========================================================
   CUSTOM THEME STYLES — "Smart products for everyday life"
   Paleta: blanco, off-white, gris suave, negro, charcoal
   Un solo color de acento para CTAs
   ========================================================= */

:root {
  --color-white: #ffffff;
  --color-off-white: #f7f6f4;
  --color-soft-gray: #e7e5e1;
  --color-charcoal: #2b2b2b;
  --color-black: #111111;
  --color-accent: #c76b3f; /* terracota cálido — cámbialo desde el editor si prefieres otro */
  --color-accent-hover: #a8562f;
  --radius-md: 10px;
  --radius-lg: 18px;
  --shadow-soft: 0 6px 24px rgba(0,0,0,0.06);
  --transition-fast: 200ms ease;
  --transition-med: 350ms cubic-bezier(.22,.61,.36,1);
  --container-max: 1280px;
}

.cs-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.cs-section {
  padding: 72px 0;
  background: var(--color-white);
}

.cs-section--offwhite { background: var(--color-off-white); }

.cs-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12px;
  font-weight: 600;
  color: var(--color-accent);
  margin-bottom: 10px;
  display: block;
}

.cs-heading {
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.15;
  font-weight: 600;
  color: var(--color-black);
  margin: 0 0 14px;
  letter-spacing: -0.01em;
}

.cs-subheading {
  font-size: 17px;
  line-height: 1.6;
  color: var(--color-charcoal);
  max-width: 620px;
  margin: 0 0 32px;
  opacity: 0.85;
}

.cs-section-head {
  text-align: center;
  margin: 0 auto 48px;
  max-width: 720px;
}

/* ---------- Buttons ---------- */
.cs-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 32px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 999px;
  text-decoration: none;
  transition: all var(--transition-fast);
  cursor: pointer;
  border: 1px solid transparent;
  white-space: nowrap;
}

.cs-btn--primary {
  background: var(--color-black);
  color: var(--color-white);
}
.cs-btn--primary:hover { background: var(--color-accent); }

.cs-btn--secondary {
  background: transparent;
  color: var(--color-black);
  border-color: var(--color-black);
}
.cs-btn--secondary:hover {
  background: var(--color-black);
  color: var(--color-white);
}

.cs-btn--ghost-light {
  background: rgba(255,255,255,0.12);
  color: var(--color-white);
  border-color: rgba(255,255,255,0.7);
  backdrop-filter: blur(4px);
}
.cs-btn--ghost-light:hover { background: var(--color-white); color: var(--color-black); }

/* ---------- Hero ---------- */
.cs-hero {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--color-charcoal);
}
.cs-hero__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cs-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.55) 100%);
}
.cs-hero__content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  padding: 0 24px;
  color: var(--color-white);
}
.cs-hero__content .cs-heading { color: var(--color-white); font-size: clamp(34px, 4.5vw, 58px); }
.cs-hero__content .cs-subheading { color: rgba(255,255,255,0.9); }
.cs-hero__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 8px; }

/* ---------- Category row (las 6 en una sola fila) ---------- */
.cs-cat-carousel-wrap {
  position: relative;
}
.cs-cat-carousel {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 8px;
  margin: 0 -4px;
  scrollbar-width: none; /* Firefox */
}
.cs-cat-carousel::-webkit-scrollbar { display: none; } /* Chrome/Safari */

.cs-cat-card {
  position: relative;
  /* En desktop, las 6 tarjetas caben en una sola fila sin necesidad de scroll */
  flex: 1 1 calc((100% - 5 * 16px) / 6);
  min-width: 150px;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  scroll-snap-align: start;
  margin: 0 4px;
}
.cs-cat-card__media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  box-shadow: var(--shadow-soft);
}
.cs-cat-card__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform var(--transition-med);
}
.cs-cat-card:hover .cs-cat-card__media img { transform: scale(1.06); }

/* Texto DEBAJO de la imagen, centrado, para no tapar la foto */
.cs-cat-card__text {
  color: var(--color-black);
  text-align: center;
  padding: 12px 6px 0;
}
.cs-cat-card__text h3 {
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin: 0 0 3px;
}
.cs-cat-card__text p {
  font-size: 11px;
  line-height: 1.4;
  color: var(--color-charcoal);
  opacity: 0.75;
  margin: 0 0 6px;
}
.cs-cat-card__cta {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-accent);
}

.cs-cat-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--color-soft-gray);
  background: var(--color-white);
  color: var(--color-black);
  font-size: 20px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
  transition: background var(--transition-fast), color var(--transition-fast);
  z-index: 3;
}
.cs-cat-arrow:hover { background: var(--color-black); color: var(--color-white); }
.cs-cat-arrow--prev { left: -8px; }
.cs-cat-arrow--next { right: -8px; }

/* Por debajo de 990px ya no caben 6 en fila con buen tamaño: pasan a scroll con ancho fijo */
@media (max-width: 989px) {
  .cs-cat-card { flex: 0 0 auto; width: 200px; min-width: 200px; }
}

@media (max-width: 599px) {
  .cs-cat-arrow { display: none; } /* en móvil se desliza con el dedo */
  .cs-cat-card { width: 150px; min-width: 150px; }
  .cs-cat-card__text h3 { font-size: 11.5px; }
  .cs-cat-card__text p { font-size: 10.5px; margin-bottom: 4px; }
  .cs-cat-card__cta { font-size: 9.5px; }
}

/* ---------- Need cards (Shop by Need) ---------- */
.cs-need-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.cs-need-card {
  background: var(--color-white);
  border: 1px solid var(--color-soft-gray);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-decoration: none;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  display: flex; flex-direction: column; height: 100%;
}
.cs-need-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.cs-need-card h3 { font-size: 17px; font-weight: 600; color: var(--color-black); margin: 0 0 8px; text-transform: uppercase; letter-spacing: 0.02em; }
.cs-need-card p { font-size: 14px; color: var(--color-charcoal); opacity: 0.8; margin: 0 0 16px; flex-grow: 1; }
.cs-need-card__link { font-size: 12px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--color-accent); }

/* ---------- Value props ---------- */
.cs-value-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  text-align: center;
}
.cs-value-item svg, .cs-value-item img { width: 34px; height: 34px; margin: 0 auto 14px; display: block; }
.cs-value-item h4 { font-size: 14px; font-weight: 600; margin: 0 0 6px; text-transform: uppercase; letter-spacing: 0.04em; }
.cs-value-item p { font-size: 13px; color: var(--color-charcoal); opacity: 0.75; margin: 0; }

/* ---------- Viral finds ---------- */
.cs-viral-header {
  display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 32px; flex-wrap: wrap; gap: 12px;
}
.cs-viral-header h2 { margin: 0; }
.cs-badge-fire {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--color-black); color: #fff;
  font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 999px;
}
.cs-product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.cs-product-card { position: relative; }
.cs-product-card__media {
  position: relative; border-radius: var(--radius-md); overflow: hidden; aspect-ratio: 1/1; background: var(--color-off-white); margin-bottom: 14px;
}
.cs-product-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--transition-med); }
.cs-product-card:hover .cs-product-card__media img { transform: scale(1.05); }
.cs-product-card__badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--color-accent); color: #fff; font-size: 11px; font-weight: 700;
  padding: 5px 10px; border-radius: 999px; text-transform: uppercase; letter-spacing: 0.04em;
}
.cs-product-card__title { font-size: 14.5px; font-weight: 500; color: var(--color-black); margin: 0 0 4px; }
.cs-product-card__price { font-size: 14px; font-weight: 600; }
.cs-product-card__compare { font-size: 13px; color: #999; text-decoration: line-through; margin-left: 6px; }

/* ---------- Testimonials ---------- */
.cs-testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.cs-testi-card {
  background: var(--color-off-white);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.cs-testi-stars { color: var(--color-accent); font-size: 14px; margin-bottom: 12px; letter-spacing: 2px; }
.cs-testi-card p.cs-testi-text { font-size: 14.5px; line-height: 1.6; color: var(--color-charcoal); margin: 0 0 16px; }
.cs-testi-name { font-size: 13px; font-weight: 600; color: var(--color-black); }
.cs-testi-product { font-size: 12px; color: #888; }

/* ---------- Email signup ---------- */
.cs-newsletter {
  background: var(--color-black);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 56px 24px;
  text-align: center;
}
.cs-newsletter .cs-heading { color: #fff; }
.cs-newsletter .cs-subheading { color: rgba(255,255,255,0.75); margin-left: auto; margin-right: auto; }
.cs-newsletter-form { display: flex; max-width: 440px; margin: 0 auto; gap: 10px; }
.cs-newsletter-form input[type="email"] {
  flex: 1; padding: 15px 18px; border-radius: 999px; border: 1px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.06); color: #fff; font-size: 14px;
}
.cs-newsletter-form input::placeholder { color: rgba(255,255,255,0.5); }
.cs-newsletter-form .cs-btn--primary { background: var(--color-accent); }
.cs-newsletter-form .cs-btn--primary:hover { background: var(--color-accent-hover); }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 989px) {
  .cs-need-grid { grid-template-columns: repeat(2, 1fr); }
  .cs-product-grid { grid-template-columns: repeat(2, 1fr); }
  .cs-value-row { grid-template-columns: repeat(2, 1fr); }
  .cs-testi-grid { grid-template-columns: 1fr; }
  .cs-section { padding: 48px 0; }
}
@media (max-width: 599px) {
  .cs-need-grid, .cs-product-grid { grid-template-columns: 1fr; }
  .cs-value-row { grid-template-columns: 1fr 1fr; }
  .cs-newsletter-form { flex-direction: column; }
  .cs-hero { min-height: 520px; }
  .announcement-bar__text {
  font-size: 0.75rem !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}

}

}
/* ---------- Fix announcement bar — Horizon theme ---------- */
.shopify-section-group-header-group .announcement-bar__slides,
.shopify-section-group-header-group .announcement-bar__slide,
.shopify-section-group-header-group .announcement-bar__text,
.shopify-section-group-header-group .announcement-bar__text p {
  text-align: center !important;
  width: 100% !important;
  display: block !important;
  margin-inline: auto !important;
}
/* ---------- Fix announcement bar en páginas de colección ---------- */
.template-collection .announcement-bar__slide,
.template-collection .announcement-bar__text {
  text-align: center !important;
}
/* ---------- Fix announcement bar — Horizon colecciones ---------- */
.page-width-wide .announcement-bar__slide,
.page-width-wide .announcement-bar__text,
.page-width-wide ~ * .announcement-bar__text {
  text-align: center !important;
}
slideshow-slide.announcement-bar__slide p {
  text-align: center !important;
}

slideshow-slide.announcement-bar__slide {
  text-align: center !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
}
slideshow-slide, .announcement-bar__text {
  text-align: center !important;
}

/* =========================================================
   AGREGADO — CS Product Main (galería + compra + descripción + reseñas)
   Nada de lo anterior fue modificado; esto solo se agrega al final.
   ========================================================= */
.cs-product-section { padding: 48px 0 72px; }

.cs-product {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: start;
}

/* ---- Gallery ---- */
.cs-product__gallery { position: sticky; top: 24px; }
.cs-product__main-wrap { position: relative; }
.cs-product__main {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-off-white);
  aspect-ratio: 1/1;
}
.cs-product__slide {
  position: absolute; inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-med);
}
.cs-product__slide.is-active { opacity: 1; visibility: visible; }
.cs-product__img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cs-product__placeholder { width: 100%; height: 100%; }

.cs-product__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.9);
  color: var(--color-black);
  font-size: 22px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
  z-index: 3;
  transition: background var(--transition-fast);
}
.cs-product__arrow:hover { background: var(--color-white); }
.cs-product__arrow--prev { left: 16px; }
.cs-product__arrow--next { right: 16px; }

.cs-product__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
}
.cs-product__dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--color-soft-gray);
  cursor: pointer;
  transition: background var(--transition-fast), transform var(--transition-fast);
}
.cs-product__dot.is-active { background: var(--color-black); transform: scale(1.2); }

/* ---- Info column ---- */
.cs-product__info { padding-top: 4px; }
.cs-product__title {
  font-size: clamp(24px, 2.4vw, 32px);
  font-weight: 600;
  color: var(--color-black);
  margin: 4px 0 10px;
  letter-spacing: -0.01em;
}
.cs-product__price-row { display: flex; align-items: baseline; gap: 10px; margin-bottom: 18px; }
.cs-product__price { font-size: 24px; font-weight: 700; color: var(--color-black); }
.cs-product__compare { font-size: 16px; color: #999; text-decoration: line-through; }
.cs-product__save { font-size: 12px; font-weight: 600; color: var(--color-accent); background: rgba(199,107,63,0.1); padding: 4px 9px; border-radius: 999px; }

.cs-product__short-desc { font-size: 14.5px; line-height: 1.6; color: var(--color-charcoal); opacity: 0.85; margin-bottom: 24px; }

.cs-product__form { display: flex; flex-direction: column; gap: 18px; margin-bottom: 20px; }
.cs-product__option-label { display: block; font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 8px; color: var(--color-charcoal); }
.cs-product__select {
  width: 100%; padding: 13px 14px; border-radius: var(--radius-md);
  border: 1px solid var(--color-soft-gray); background: var(--color-white);
  font-size: 14px; color: var(--color-black);
}

.cs-product__qty-row { display: flex; flex-direction: column; }
.cs-qty-stepper {
  display: inline-flex; align-items: center; border: 1px solid var(--color-soft-gray);
  border-radius: var(--radius-md); width: fit-content;
}
.cs-qty-btn {
  width: 40px; height: 44px; background: none; border: none; font-size: 16px; cursor: pointer; color: var(--color-black);
}
.cs-qty-input {
  width: 48px; height: 44px; border: none; border-left: 1px solid var(--color-soft-gray); border-right: 1px solid var(--color-soft-gray);
  text-align: center; font-size: 14px; -moz-appearance: textfield;
}
.cs-qty-input::-webkit-outer-spin-button, .cs-qty-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.cs-product__add { width: 100%; padding: 17px 24px; font-size: 13.5px; }
.cs-product__add:disabled { background: var(--color-soft-gray); color: #999; cursor: not-allowed; }

.cs-product__payment-icons { display: flex; flex-wrap: wrap; gap: 8px; margin: 16px 0 4px; }
.cs-payment-icon { height: 24px; width: auto; border-radius: 4px; }

.cs-product__trust-row {
  display: flex; flex-wrap: wrap; gap: 14px; margin-top: 24px; padding-top: 20px;
  border-top: 1px solid var(--color-soft-gray);
}
.cs-product__trust-item { font-size: 12.5px; color: var(--color-charcoal); opacity: 0.8; }

/* ---- Description ---- */
.cs-product__description-section {
  max-width: var(--container-max);
  margin: 0 auto;
  padding-top: 56px;
  border-top: 1px solid var(--color-soft-gray);
  margin-top: 56px;
}
.cs-product__description-content { font-size: 15px; line-height: 1.75; color: var(--color-charcoal); max-width: 760px; }
.cs-product__description-content img { border-radius: var(--radius-md); margin: 16px 0; }

@media (max-width: 989px) {
  .cs-product { grid-template-columns: 1fr; gap: 32px; }
  .cs-product__gallery { position: static; }
}

/* =========================================================
   AGREGADO — Forzar 5 productos por fila en colecciones (Horizon)
   ========================================================= */
.product-grid {
  --product-grid-columns-desktop: repeat(5, 1fr) !important;
}

@media (max-width: 989px) {
  .product-grid {
    --product-grid-columns-desktop: repeat(3, 1fr) !important;
  }
}

@media (max-width: 599px) {
  .product-grid {
    --product-grid-columns-desktop: repeat(2, 1fr) !important;
  }
}

/* =========================================================
   AGREGADO — Lightbox de imagen de producto (CS Product Main)
   ========================================================= */
.cs-product__main { cursor: zoom-in; }

.cs-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(17,17,17,0.97);
}
.cs-lightbox.is-open { display: flex; }

.cs-lightbox__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.12);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-fast);
}
.cs-lightbox__close:hover { background: rgba(255,255,255,0.25); }

.cs-lightbox__track {
  display: flex;
  width: 100%;
  height: 100%;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.cs-lightbox__track::-webkit-scrollbar { display: none; }

.cs-lightbox__slide {
  flex: 0 0 100%;
  scroll-snap-align: start;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 64px 24px;
  box-sizing: border-box;
}

.cs-lightbox__img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

@media (max-width: 599px) {
  .cs-lightbox__slide { padding: 48px 16px; }
  .cs-lightbox__close { top: 12px; right: 12px; width: 40px; height: 40px; font-size: 24px; }
}

/* ---- Flechas de navegación dentro del lightbox ---- */
.cs-lightbox__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.12);
  color: #fff;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-fast);
}
.cs-lightbox__arrow:hover { background: rgba(255,255,255,0.25); }
.cs-lightbox__arrow--prev { left: 20px; }
.cs-lightbox__arrow--next { right: 20px; }

@media (max-width: 599px) {
  .cs-lightbox__arrow { width: 40px; height: 40px; font-size: 20px; }
  .cs-lightbox__arrow--prev { left: 8px; }
  .cs-lightbox__arrow--next { right: 8px; }
}

/* =========================================================
   AGREGADO — CS Subcategory Nav (pastillas de subcategoría por colección)
   ========================================================= */
.cs-subcat-nav-wrap {
  border-bottom: 1px solid var(--color-soft-gray);
  padding: 18px 0;
  background: var(--color-white);
}
.cs-subcat-nav {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.cs-subcat-nav::-webkit-scrollbar { display: none; }

.cs-subcat-pill {
  flex: 0 0 auto;
  padding: 9px 18px;
  border: 1px solid var(--color-soft-gray);
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--color-charcoal);
  text-decoration: none;
  white-space: nowrap;
  transition: background var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast);
}
.cs-subcat-pill:hover {
  border-color: var(--color-black);
}
.cs-subcat-pill.is-active {
  background: var(--color-black);
  color: #fff;
  border-color: var(--color-black);
}
