/** Shopify CDN: Minification failed

Line 38:0 Unexpected "}"

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from snippet stylesheet tags */
/* START_SNIPPET:collection-color-variants (INDEX:79) */
.cv-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(260px, 1fr));
  gap: 24px;
  padding: 24px 0;
  width: 100%;
  box-sizing: border-box;
}

@media screen and (max-width: 699px) {
  .cv-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 12px 16px;
    margin-inline: 0;
    width: 100%;
  }

  .collection__main {
    width: 100%;
  }

  product-list:has(.cv-grid) {
    width: 100%;
    display: block;
  }
}
}
}

.cv-card {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease;
}

.cv-card:hover {
  transform: translateY(-2px);
}

.cv-card__image-wrapper {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #f5f5f5;
}

.cv-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.cv-card:hover .cv-card__image {
  transform: scale(1.04);
}

.cv-card__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f0f0f0;
}

.cv-card__badge {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 3px 8px;
  border-radius: 4px;
  text-transform: uppercase;
}

.cv-card__badge--soldout {
  background: #1a1a1a;
  color: #fff;
}

.cv-card__badge--sale {
  background: #c0392b;
  color: #fff;
}

.cv-card__info {
  padding: 10px 0 14px;
}

.cv-card__title {
  font-size: 14px;
  font-weight: 500;
  margin: 0 0 3px;
}

.cv-card__color {
  font-size: 12px;
  color: #777;
  margin: 0 0 6px;
}

.cv-card__price {
  font-size: 14px;
  margin: 0;
  display: flex;
  gap: 6px;
  align-items: baseline;
}

.cv-card__compare-price {
  color: #999;
  font-size: 12px;
}

.cv-card__price--sale {
  color: #c0392b;
}

@media screen and (max-width: 699px) {
  .cv-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    padding: 12px 0;
  }

  .cv-card__title {
    font-size: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .cv-card__color {
    font-size: 11px;
  }

  .cv-card__price {
    font-size: 12px;
  }
}
/* END_SNIPPET:collection-color-variants */