/** Shopify CDN: Minification failed

Line 424:0 Unexpected "}"

**/
.cl-landing__title { margin: 0 0 1rem; }

.cl-tabs { margin: 0 0 1rem; }

/* Móvil: scroll horizontal */
.cl-tabs__scroller {
  display: flex;
  gap: .6rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding: 3rem;
}

/* Desktop: centrado y sin scroll */
@media (min-width: 750px) {
  .cl-tabs__scroller {
    justify-content: center;
    overflow-x: visible;
    flex-wrap: wrap;
    padding: 5rem;
  }
}

.cl-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .6rem .95rem;
  border: 1px solid #570327;
  background: #fff;
  color: #570327;
  margin: 0 2px;

  border-radius: 999px;
  text-decoration: none;
  white-space: nowrap;
  font-style: normal;
  font-weight: 600 !important;
  line-height: normal;
  text-transform: uppercase;
  text-decoration: none;
  padding: 9px 30px;
  opacity: 1;

  transition: background-color .15s ease, border-color .15s ease, color .15s ease, transform .05s ease;
}

.cl-tab:hover {
  background: rgba(87, 3, 39, 0.06);
  border-color: #570327;
}

.cl-tab:active {
  transform: translateY(1px);
}

.cl-tab:focus-visible { outline: 2px solid currentColor; outline-offset: 2px; }

/* Activo */
.cl-tab[aria-current="true"] {
  background: #570327;
  border-color: #570327;
  color: #fff;
  font-weight: 700;
}

.cl-panel__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin: 0 0 1rem;
}
.cl-panel__title { margin: 0; }
.cl-panel__viewall { text-decoration: underline; }

.cl-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  margin: 0;
  padding-bottom: 5rem;
  list-style: none;
}
@media (min-width: 750px) {
  .cl-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

.cl-panel__footer { margin-top: 1rem; }

.cl-loading {
  margin: .5rem 0 1rem;
  opacity: .75;
  font-size: .95rem;
}

/* evita saltos raros con header sticky */
.cl-landing { scroll-margin-top: 120px; }

/* =========================================
   AJUSTES SOLO MÓVIL (añadidos nuevos)
   - mantener desktop igual
========================================= */
@media screen and (max-width: 749px){
  /* Scroller de tabs (como pediste) */
  .cl-tabs__scroller{
    padding: 2rem 1.4rem 2rem !important;
  }

  /* Tabs móvil */
  .cl-tab{
    font-size: 14px !important;
  }

  /* Grid móvil un poco más compacto */
  .cl-grid{
    gap: .9rem !important;
    padding-bottom: 1.4rem !important;
  }
}


/* =========================================
   CARD (Landing) — Ajuste visual sin marco gris
   + Control de títulos 1-2 líneas (desktop/móvil)
========================================= */

.clp-card{
  background: #ffffff;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 18px;
  overflow: hidden;
  transition:
    transform .18s ease,
    box-shadow .18s ease,
    border-color .18s ease;
  will-change: transform;

  /* ayuda a que todas las cards se comporten parecido */
  display: flex;
  flex-direction: column;
  height: 100%;
}

.clp-card:hover{
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(17, 17, 17, 0.08);
  border-color: rgba(87, 3, 39, 0.14);
}

/* ZONA IMAGEN SIN MARCO GRIS */
.clp-card__media{
  display: block;
  position: relative;
  aspect-ratio: 1 / 1;
  padding: 18px;
  background: #ffffff;
  flex-shrink: 0;
}

/* Eliminamos cualquier pseudo-elemento previo del marco */
.clp-card__media::before{
  content: none !important;
}

.clp-img{
  position: absolute;
  inset: 18px;
  width: calc(100% - 36px);
  height: calc(100% - 36px);
  object-fit: contain;
  object-position: center center;
  display: block;
  z-index: 1;

  padding: 10px;
  background: transparent;
  border-radius: 0;

  transition:
    opacity .2s ease,
    transform .2s ease;
  will-change: opacity, transform;
}

/* Hover imagen */
.clp-card:hover .clp-img{
  transform: scale(1.015);
}

/* Crossfade primary/secondary */
.clp-img--primary{ opacity: 1; }
.clp-img--secondary{ opacity: 0; }

@media (hover: hover) and (pointer: fine){
  .clp-card:hover .clp-img--primary{ opacity: 0; }
  .clp-card:hover .clp-img--secondary{ opacity: 1; }
}

@media (hover: none){
  .clp-img--secondary{ display: none; }

  .clp-card:hover{
    transform: none;
    box-shadow: none;
    border-color: rgba(17, 17, 17, 0.08);
  }

  .clp-card:hover .clp-img{
    transform: none;
  }
}

/* BODY / TEXTO */
.clp-card__body{
  padding: 16px 14px 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  text-align: left;
  background: #fff;
  flex: 1 1 auto;
}

/* TÍTULO */
.clp-card__title{
  width: 100%;
  margin: 0;
  color: #570327;
  font-size: 15px !important;
  font-weight: 600 !important;
  line-height: 1.28;
  letter-spacing: .005em;

  /* CLAVE: reserva altura para 2 líneas (desktop) */
  min-height: calc(15px * 1.28 * 2);
}

.clp-card__title a{
  color: inherit;
  text-decoration: none;
}

.clp-card__title a:hover{
  color: #570327;
}

/* Clamp 2 líneas sin romper layout */
.clp-card__title,
.clp-card__title a{
  display: -webkit-box;
  font-size:15px !important;
  font-weight: 600 !important;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* PRECIO */
.clp-card__price{
  width: 100%;
  margin-top: 0;
  font-weight: 500;
  font-size: 13px !important;
  line-height: 1.2;
  color: #570327;
}

/* El snippet de price suele meter wrappers con estilos */
.clp-card__price *{
  text-align: left !important;
  justify-content: flex-start !important;
  opacity: 1 !important;
}

/* Quitar opacidades del compare/tachado y forzar tamaño */
.clp-card__price s,
.clp-card__price .price-item--regular,
.clp-card__price .price-item--sale,
.clp-card__price .price__compare{
  opacity: 1 !important;
  font-size: 13px !important;
}

/* BADGES */
.clp-badge{
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 3;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 28px;
  padding: 6px 10px;
  border-radius: 999px;

  font-size: 10px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;

  border: 1px solid rgba(255,255,255,0.18);
}

.clp-badge--soldout{
  background: rgba(35,35,35,.88);
  color: #fff;
}

.clp-badge--sale{
  background: #570327;
  color: #fff;
}

/* =========================================
   MOBILE (≤ 749px)
   - centrado
   - card compacta
   - título -2px, precio -1px
   - control de altura para 2 líneas
========================================= */
@media screen and (max-width: 749px){

  /* Grid: quita padding gris excesivo y compacta */
  .cl-grid{
    padding: 15px 10px 14px !important;
    gap: 20px !important;
    margin: 0 !important;
  }

  /* Card más compacta */
  .clp-card{
    border-radius: 14px;
  }

  /* Imagen más compacta y centrada */
  .clp-card__media{
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .clp-img{
    inset: 10px;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    padding: 6px;
    left: 10px;
    right: 10px;
    margin: 0 auto;
    object-position: center center;
  }

  /* Body compacto y centrado */
  .clp-card__body{
    padding: 10px 10px 12px;
    gap: 5px;
    align-items: center !important;
    text-align: center !important;
  }

  /* Título móvil (15 - 2 = 13px) */
  .clp-card__title{
    font-size: 13px !important;
    font-weight: 600 !important;
    line-height: 1.2;
    text-align: center !important;

    /* CLAVE: reserva altura para 2 líneas en móvil */
    min-height: calc(13px * 1.2 * 2);
  }

  .clp-card__title,
  .clp-card__title a{
    text-align: center !important;
    font-weight: 600 !important;
     font-size: 13px !important;
    -webkit-line-clamp: 2;
  }

  /* Precio móvil (13 -> 12px) */
  .clp-card__price{
    font-size: 12px !important;
    line-height: 1.15;
    text-align: center !important;
  }

  .clp-card__price,
  .clp-card__price *{
    text-align: center !important;
    justify-content: center !important;
    opacity: 1 !important;
  }

  .clp-card__price s,
  .clp-card__price .price-item--regular,
  .clp-card__price .price-item--sale,
  .clp-card__price .price__compare{
    font-size: 12px !important;
    opacity: 1 !important;
  }

  /* Badge más pequeño */
  .clp-badge{
    top: 10px;
    left: 10px;
    min-height: 22px;
    padding: 4px 8px;
    font-size: 9px;
  }
}

}