/** Shopify CDN: Minification failed

Line 22:13 Unexpected "{"
Line 22:22 Expected ":"
Line 22:29 Unexpected "{"
Line 34:13 Unexpected "{"
Line 34:22 Expected ":"
Line 40:13 Unexpected "{"
Line 40:22 Expected ":"
Line 45:13 Unexpected "{"
Line 45:22 Expected ":"
Line 57:13 Unexpected "{"
... and 128 more hidden warnings

**/


/* CSS from section stylesheet tags */
/* -----------------------------
       VARIABLES ESTÉTICAS
  ------------------------------ */
  #corex-ct-{{ section.id }} {
    --corex-bg: #050505;
    --corex-fg: #ffffff;
    --corex-muted: #b8b8b8;
    --corex-accent: #ff1a1a;
    --corex-radius: 18px;
    --corex-gap: 18px;
  }

  /* -----------------------------
       CONTENEDOR GENERAL
  ------------------------------ */
  #corex-ct-{{ section.id }} .corex-ct-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1.5rem 3.5rem;
  }

  #corex-ct-{{ section.id }} .corex-ct-header {
    text-align: center;
    margin-bottom: 2.5rem;
  }

  #corex-ct-{{ section.id }} .corex-ct-tagline {
    display: inline-flex;
    padding: 0.15rem 0.7rem;
    border-radius: 999px;
    border: 1px solid rgba(0,0,0,0.12);
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #666;
    margin-bottom: 0.9rem;
  }

  #corex-ct-{{ section.id }} .corex-ct-title {
    font-size: clamp(1.9rem, 2.6vw, 2.4rem);
    letter-spacing: 0.03em;
    margin-bottom: 0.4rem;
    color: #111;
  }

  #corex-ct-{{ section.id }} .corex-ct-subtitle {
    color: #666;
    font-size: 1rem;
    max-width: 640px;
    margin: 0 auto;
  }

  /* -----------------------------
       GRID DE BLOQUES
  ------------------------------ */
  #corex-ct-{{ section.id }} .corex-ct-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--corex-gap);
  }

  #corex-ct-{{ section.id }} .corex-ct-card {
    position: relative;
    border-radius: var(--corex-radius);
    overflow: hidden;
    aspect-ratio: 16 / 4.5;
    background: #111;
    transition: transform .25s ease, box-shadow .25s ease;
  }

  /* EFECTO PREMIUM COMPLETO */
  #corex-ct-{{ section.id }} .corex-ct-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 30px rgba(0,0,0,0.25);
  }

  /* Fondo */
  #corex-ct-{{ section.id }} .corex-ct-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
    transition: transform .25s ease, filter .25s ease;
  }

  #corex-ct-{{ section.id }} .corex-ct-card:hover .corex-ct-image {
    transform: scale(1.10);
    filter: brightness(1.15);
  }

  /* Overlay */
  #corex-ct-{{ section.id }} .corex-ct-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      115deg,
      rgba(0,0,0,0.96) 0%,
      rgba(0,0,0,0.86) 40%,
      rgba(0,0,0,0.45) 100%
    );
    pointer-events: none;
  }

  /* -----------------------------
       TEXTO SOBRE EL BLOQUE
  ------------------------------ */
  #corex-ct-{{ section.id }} .corex-ct-label {
    position: absolute;
    left: 1.6rem;
    bottom: 1.6rem;
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    max-width: 70%;
    transition: transform .25s ease;
  }

  /* Texto animado */
  #corex-ct-{{ section.id }} .corex-ct-card:hover .corex-ct-label {
    transform: translateY(-6px);
  }

  #corex-ct-{{ section.id }} .corex-ct-kicker {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--corex-accent);
  }

  #corex-ct-{{ section.id }} .corex-ct-card-title {
    font-size: 1.9rem;
    line-height: 1.15;
    color: #fff;
    margin: 0;
    text-shadow: 0 2px 6px rgba(0,0,0,0.45);
  }

  #corex-ct-{{ section.id }} .corex-ct-card-subtitle {
    font-size: 0.98rem;
    line-height: 1.45;
    color: #e1e1e1;
    margin: 0;
    text-shadow: 0 1px 2px rgba(0,0,0,0.75);
  }

  /* Botón uniforme */
  #corex-ct-{{ section.id }} .corex-ct-cta {
    margin-top: 0.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 11rem !important;
    padding: .45rem 0;
    border: 1.5px solid rgba(255,255,255,0.85);
    background: rgba(0,0,0,0.55);
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: #fff;
    font-size: .8rem;
    font-weight: 600;
  }

  #corex-ct-{{ section.id }} .corex-ct-card:hover .corex-ct-cta {
    border-color: var(--corex-accent);
    background: rgba(0,0,0,0.95);
  }

  /* -----------------------------
       RESPONSIVE
  ------------------------------ */
  @media(max-width: 899px) {
    #corex-ct-{{ section.id }} .corex-ct-grid {
      grid-template-columns: 1fr;
    }

    #corex-ct-{{ section.id }} .corex-ct-card {
      aspect-ratio: 16 / 7;
    }

    #corex-ct-{{ section.id }} .corex-ct-label {
      max-width: 80%;
      left: 1.4rem;
      bottom: 1.4rem;
    }

    #corex-ct-{{ section.id }} .corex-ct-card-title {
      font-size: 1.6rem;
    }
  }
#corex-b2b-{{ section.id }} {
    --corex-bg: #050505;
    --corex-fg: #ffffff;
    --corex-accent: #ff1a1a;
    --corex-muted: #b8b8b8;
    --corex-radius: 18px;
    --corex-gap: 18px;
  }

  #corex-b2b-{{ section.id }} .corex-b2b-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1.5rem 3.5rem;
  }

  #corex-b2b-{{ section.id }} .corex-b2b-header {
    text-align: center;
    margin-bottom: 2.5rem;
  }

  #corex-b2b-{{ section.id }} .corex-b2b-tagline {
    display: inline-flex;
    padding: 0.15rem 0.7rem;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.18);
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--corex-muted);
    margin-bottom: 0.9rem;
  }

  #corex-b2b-{{ section.id }} .corex-b2b-title {
    font-size: clamp(1.9rem, 2.6vw, 2.4rem);
    letter-spacing: 0.03em;
    color: var(--corex-fg);
    margin: 0 0 0.4rem;
  }

  #corex-b2b-{{ section.id }} .corex-b2b-subtitle {
    font-size: 1rem;
    color: var(--corex-muted);
    max-width: 640px;
    margin: 0 auto;
  }

  #corex-b2b-{{ section.id }} .corex-b2b-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--corex-gap);
  }

  /* 5º bloque: ocupa las 2 columnas pero con mitad de altura en escritorio */
  #corex-b2b-{{ section.id }} .corex-b2b-card:nth-child(5) {
    grid-column: 1 / -1;
    aspect-ratio: 32 / 9; /* mitad de altura respecto a 16/9 */
  }

  #corex-b2b-{{ section.id }} .corex-b2b-card {
    position: relative;
    border-radius: var(--corex-radius);
    overflow: hidden;
    background: radial-gradient(circle at top left, #2b2b2b 0, #050505 55%, #000000 100%);
    aspect-ratio: 16 / 9;
  }

  #corex-b2b-{{ section.id }} .corex-b2b-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: inherit;
  }

  #corex-b2b-{{ section.id }} .corex-b2b-media {
    position: relative;
    height: 100%;
  }

  #corex-b2b-{{ section.id }} .corex-b2b-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.02);
    transition: transform 260ms ease-out, filter 260ms ease-out;
  }

  #corex-b2b-{{ section.id }} .corex-b2b-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: var(--corex-muted);
    font-size: 0.9rem;
    background: repeating-linear-gradient(
      135deg,
      #222,
      #222 10px,
      #1a1a1a 10px,
      #1a1a1a 20px
    );
  }

  #corex-b2b-{{ section.id }} .corex-b2b-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      120deg,
      rgba(0,0,0,0.85) 0%,
      rgba(0,0,0,0.6) 40%,
      rgba(0,0,0,0.3) 100%
    );
    pointer-events: none; /* no bloquea clics */
    transition: opacity 220ms ease-out;
  }

  #corex-b2b-{{ section.id }} .corex-b2b-label {
    position: absolute;
    left: 1.8rem;
    right: 1.8rem;
    bottom: 1.8rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    z-index: 2;
    max-width: 60%;
    text-shadow: 0 1px 3px rgba(0,0,0,0.8);
  }

  #corex-b2b-{{ section.id }} .corex-b2b-kicker {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--corex-accent);
  }

  #corex-b2b-{{ section.id }} .corex-b2b-card-title {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #ffffff;
  }

  #corex-b2b-{{ section.id }} .corex-b2b-card-subtitle {
    margin: 0;
    font-size: 1rem;
    color: rgba(255,255,255,0.9);
    max-width: 24rem;
    line-height: 1.4;
  }

  #corex-b2b-{{ section.id }} .corex-b2b-cta {
    margin-top: 0.7rem;
    align-self: flex-start;
    padding: 0.45rem 1.1rem;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    border: 1px solid rgba(255,255,255,0.4);
    background: rgba(0,0,0,0.55);
    color: #ffffff;
  }

  #corex-b2b-{{ section.id }} .corex-b2b-card:hover .corex-b2b-image {
    transform: scale(1.06);
    filter: brightness(1.08);
  }

  #corex-b2b-{{ section.id }} .corex-b2b-card:hover .corex-b2b-overlay {
    opacity: 0.7;
  }

  #corex-b2b-{{ section.id }} .corex-b2b-card:hover .corex-b2b-cta {
    border-color: var(--corex-accent);
    background: rgba(0,0,0,0.8);
  }

  @media (max-width: 899px) {
    #corex-b2b-{{ section.id }} .corex-b2b-inner {
      padding-inline: 1.1rem;
      padding-top: 2.5rem;
      padding-bottom: 3rem;
    }

    #corex-b2b-{{ section.id }} .corex-b2b-grid {
      grid-template-columns: minmax(0, 1fr);
    }

    /* En móvil el 5º bloque vuelve a altura normal */
    #corex-b2b-{{ section.id }} .corex-b2b-card:nth-child(5) {
      grid-column: auto;
      aspect-ratio: 16 / 9;
    }

    #corex-b2b-{{ section.id }} .corex-b2b-label {
      left: 1.4rem;
      right: 1.4rem;
      bottom: 1.4rem;
      max-width: 80%;
    }

    #corex-b2b-{{ section.id }} .corex-b2b-card-title {
      font-size: 1.3rem;
    }

    #corex-b2b-{{ section.id }} .corex-b2b-card-subtitle {
      font-size: 0.95rem;
    }
  }
/* Contenedor general */
#corex-b2b-tipos-{{ section.id }} .corex-b2b-tipos-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 3rem;
}

/* Cabecera */
#corex-b2b-tipos-{{ section.id }} .corex-b2b-tipos-title {
  font-size: 1.9rem;
  margin: 0 0 0.4rem;
  font-weight: 700;
}
#corex-b2b-tipos-{{ section.id }} .corex-b2b-tipos-sub {
  color: #777;
  max-width: 650px;
  margin: 0 0 1.6rem;
}

/* GRID de tipos de prenda (debajo del título) */
#corex-b2b-tipos-{{ section.id }} .corex-b2b-tipos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-bottom: 2rem;
}

/* Tarjeta de tipo (article solo estructura) */
#corex-b2b-tipos-{{ section.id }} .corex-b2b-tipo-card {
  height: 100%;
}

/* Enlace que ocupa TODO el marco (todo clicable) */
#corex-b2b-tipos-{{ section.id }} .corex-b2b-tipo-link {
  display: block;
  height: 100%;
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid #d9d9d9 !important;
  background: #ffffff;
  text-decoration: none;
  color: inherit;
  transition: border-color .2s ease, box-shadow .2s ease, transform .15s ease;
}

#corex-b2b-tipos-{{ section.id }} .corex-b2b-tipo-link:hover {
  border-color: #000000 !important;
  box-shadow: 0 4px 14px rgba(0,0,0,0.06);
  transform: translateY(-1px);
}

/* Versión sin enlace (por si algún bloque no tiene link) */
#corex-b2b-tipos-{{ section.id }} .corex-b2b-tipo-link--disabled {
  cursor: default;
}

/* Título y descripción del tipo de prenda */
#corex-b2b-tipos-{{ section.id }} .corex-b2b-tipo-title {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
}
#corex-b2b-tipos-{{ section.id }} .corex-b2b-tipo-desc {
  margin: 0;
  color: #666;
  font-size: 0.9rem;
}

/* Botón VOLVER */
#corex-b2b-tipos-{{ section.id }} .corex-b2b-tipos-back {
  margin-bottom: 0.9rem;
}
#corex-b2b-tipos-{{ section.id }} .corex-b2b-tipos-back-btn {
  display: inline-block;
  background: #fff;
  border: 1px solid #111 !important;
  border-radius: 999px;
  padding: 0.45rem 1.1rem;
  font-size: 0.85rem;
  color: #111;
  text-decoration: none;
  transition: all .2s ease;
}
#corex-b2b-tipos-{{ section.id }} .corex-b2b-tipos-back-btn:hover {
  background: #111;
  color: #fff;
}

/* Botones cambio rápido de género */
#corex-b2b-tipos-{{ section.id }} .corex-b2b-tipos-switch {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  flex-wrap: wrap;
}
#corex-b2b-tipos-{{ section.id }} .corex-b2b-switch-btn {
  padding: 0.35rem 0.9rem;
  background: #000;
  color: #fff;
  border-radius: 999px;
  font-size: 0.78rem;
  text-decoration: none;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: all .2s ease;
}
#corex-b2b-tipos-{{ section.id }} .corex-b2b-switch-btn:hover {
  background: #ff1a1a;
}

/* Responsive */
@media (max-width: 900px) {
  #corex-b2b-tipos-{{ section.id }} .corex-b2b-tipos-grid {
    grid-template-columns: 1fr;
  }
}