/** Shopify CDN: Minification failed

Line 11:0 Unexpected "{"
Line 11:1 Expected identifier but found "%"
Line 15:45 Unexpected "<"
Line 16:1 Expected identifier but found "%"
Line 17:0 Unexpected "<"
Line 402:0 Unexpected "<"

**/
{% comment %}
  ─────────────────────────────────────────────
  CSS — Estilos del grid de colección Byorum
  ─────────────────────────────────────────────
  Pega esto en tu archivo CSS o en un bloque <style> dentro de la plantilla
{% endcomment %}
<style>
  /* ─── Variables de marca Byorum ─── */
  :root {
    --byorum-black:      #0a0a0a;
    --byorum-gold:       #c9a96e;
    --byorum-gold-light: #e8d5b0;
    --byorum-white:      #f5f4f0;
    --byorum-grey:       #2a2a2a;
    --byorum-mid-grey:   #555;
    --byorum-card-bg:    #111111;
    --byorum-border:     rgba(201, 169, 110, 0.15);
    --byorum-radius:     0px;
    --byorum-transition: 300ms ease;
    --byorum-font-body:  'Cormorant Garamond', Georgia, serif;
    --byorum-font-ui:    'Montserrat', 'Helvetica Neue', sans-serif;
  }

  /* ─── Sección raíz ─── */
  .byorum-collection {
    background-color: var(--byorum-black);
    color: var(--byorum-white);
    min-height: 100vh;
    padding: 0 0 80px;
    font-family: var(--byorum-font-body);
  }

  /* ─── Cabecera ─── */
  .byorum-collection__header {
    padding: 60px 24px 40px;
    text-align: center;
    border-bottom: 1px solid var(--byorum-border);
    margin-bottom: 0;
  }

  .byorum-collection__title {
    font-family: var(--byorum-font-body);
    font-size: clamp(28px, 5vw, 52px);
    font-weight: 300;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--byorum-white);
    margin: 0 0 12px;
  }

  .byorum-collection__description {
    font-family: var(--byorum-font-ui);
    font-size: 11px;
    letter-spacing: 0.08em;
    color: var(--byorum-gold);
    text-transform: uppercase;
    max-width: 480px;
    margin: 0 auto;
    line-height: 1.7;
  }

  .byorum-collection__empty {
    list-style: none;
    padding: 60px 24px;
    text-align: center;
    color: var(--byorum-mid-grey);
    font-family: var(--byorum-font-ui);
    font-size: 13px;
    grid-column: 1 / -1;
  }

  /* ─── Grid ─── */
  .byorum-product-grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: auto;
    border-top: 1px solid var(--byorum-border);
  }

  @media (min-width: 768px) {
    .byorum-product-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }

  @media (min-width: 1024px) {
    .byorum-product-grid {
      grid-template-columns: repeat(4, 1fr);
    }
  }

  /* ─── Tarjeta de producto ─── */
  .byorum-product-card {
    border-right: 1px solid var(--byorum-border);
    border-bottom: 1px solid var(--byorum-border);
    background: var(--byorum-black);
    position: relative;
  }

  /* quitar borde derecho en última columna */
  @media (max-width: 767px) {
    .byorum-product-card:nth-child(2n) { border-right: none; }
  }
  @media (min-width: 768px) and (max-width: 1023px) {
    .byorum-product-card:nth-child(3n) { border-right: none; }
  }
  @media (min-width: 1024px) {
    .byorum-product-card:nth-child(4n) { border-right: none; }
  }

  .byorum-product-card__inner {
    display: flex;
    flex-direction: column;
    height: 100%;
  }

  /* ─── Wrapper de imagen ─── */
  .byorum-product-card__image-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 118.9%; /* ratio 1:1.189 igual que Mejuri */
    overflow: hidden;
    background: var(--byorum-grey);
  }

  /* ─── Imágenes ─── */
  .byorum-product-card__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

  .byorum-product-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
  }

  .byorum-product-card__image-link:hover .byorum-product-card__img {
    transform: scale(1.03);
  }

  /* Imagen secundaria (hover) — fade in */
  .byorum-product-card__image--secondary {
    z-index: 1;
    opacity: 0;
    transition: opacity var(--byorum-transition), filter var(--byorum-transition);
    filter: blur(2px);
  }

  .byorum-product-card:hover .byorum-product-card__image--secondary {
    opacity: 1;
    filter: blur(0);
  }

  .byorum-product-card__image-link {
    display: block;
    position: absolute;
    inset: 0;
    z-index: 0;
  }

  /* ─── Badge ─── */
  .byorum-product-card__badge {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 10;
    font-family: var(--byorum-font-ui);
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--byorum-gold);
    background: rgba(10, 10, 10, 0.7);
    backdrop-filter: blur(4px);
    padding: 4px 8px;
    pointer-events: none;
  }

  /* ─── Quick Add ─── */
  .byorum-product-card__quick-add-wrapper {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    opacity: 0;
    transition: opacity var(--byorum-transition);
    white-space: nowrap;
  }

  .byorum-product-card:hover .byorum-product-card__quick-add-wrapper {
    opacity: 1;
  }

  .byorum-product-card__quick-add-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(6px);
    border: 1px solid var(--byorum-gold);
    color: var(--byorum-gold);
    font-family: var(--byorum-font-ui);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 6px 14px;
    cursor: pointer;
    transition: background var(--byorum-transition), color var(--byorum-transition);
  }

  .byorum-product-card__quick-add-btn:hover {
    background: var(--byorum-gold);
    color: var(--byorum-black);
  }

  .byorum-product-card__sold-out {
    display: block;
    background: rgba(10, 10, 10, 0.7);
    border: 1px solid var(--byorum-border);
    color: var(--byorum-mid-grey);
    font-family: var(--byorum-font-ui);
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 6px 14px;
  }

  /* ─── Info del producto ─── */
  .byorum-product-card__info {
    padding: 14px 12px 16px;
    background: var(--byorum-black);
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
  }

  .byorum-product-card__name-row {
    display: flex;
    align-items: flex-start;
  }

  .byorum-product-card__name {
    font-family: var(--byorum-font-ui);
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--byorum-white);
    text-decoration: none;
    line-height: 1.4;
    transition: color var(--byorum-transition);
    flex: 1;
    min-width: 0;
  }

  .byorum-product-card__name:hover {
    color: var(--byorum-gold);
  }

  /* ─── Precio ─── */
  .byorum-product-card__price-row {
    display: flex;
    align-items: baseline;
    gap: 8px;
  }

  .byorum-product-card__price {
    font-family: var(--byorum-font-body);
    font-size: 15px;
    font-weight: 400;
    color: var(--byorum-gold-light);
  }

  .byorum-product-card__price--compare {
    font-size: 12px;
    color: var(--byorum-mid-grey);
    text-decoration: line-through;
  }

  .byorum-product-card__price--sale {
    color: var(--byorum-gold);
  }

  /* ─── Variantes / Swatches ─── */
  .byorum-product-card__variants {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
  }

  .byorum-product-card__swatches {
    display: flex;
    align-items: center;
    gap: 5px;
    flex-shrink: 0;
  }

  .byorum-swatch {
    position: relative;
    width: 12px;
    height: 12px;
    border: 1px solid transparent;
    background: none;
    padding: 0;
    cursor: pointer;
    border-radius: 0;
    transition: border-color var(--byorum-transition);
    overflow: visible;
  }

  .byorum-swatch--selected {
    border-color: var(--byorum-gold);
  }

  .byorum-swatch--selected::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--byorum-gold);
  }

  .byorum-swatch--unavailable {
    opacity: 0.35;
  }

  .byorum-swatch__dot {
    display: block;
    width: 100%;
    height: 100%;
    background: var(--swatch-color, var(--byorum-mid-grey));
  }

  .byorum-product-card__variant-label {
    font-family: var(--byorum-font-ui);
    font-size: 9px;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--byorum-mid-grey);
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  /* ─── Paginación ─── */
  .byorum-pagination {
    display: flex;
    justify-content: center;
    padding: 48px 24px 0;
    gap: 4px;
  }

  .byorum-pagination a,
  .byorum-pagination span {
    font-family: var(--byorum-font-ui);
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--byorum-mid-grey);
    text-decoration: none;
    padding: 8px 14px;
    border: 1px solid var(--byorum-border);
    transition: color var(--byorum-transition), border-color var(--byorum-transition);
  }

  .byorum-pagination a:hover {
    color: var(--byorum-gold);
    border-color: var(--byorum-gold);
  }

  .byorum-pagination .current {
    color: var(--byorum-gold);
    border-color: var(--byorum-gold);
  }
</style>