/** Shopify CDN: Minification failed

Line 152:0 Unexpected "@media"

**/
/* ============================================================
   Product Card — fully themable via CSS variables
   Variables are injected from snippet (Theme Settings)
   ============================================================ */

.pc-card {
  position: relative;
  display: flex;
  flex-direction: column;
  font-family: inherit;
}

/* ---------- Media ---------- */
.pc-card__media {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: var(--pc-image-ratio, 4/5);
  overflow: hidden;
  background: var(--pc-image-bg, #f6f4f0);
  border-radius: var(--pc-image-radius, 0);
  text-decoration: none;
  color: inherit;
}

.pc-card__img,
.pc-card__placeholder {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 600ms ease, transform 900ms ease;
}

.pc-card__img.is-secondary { opacity: 0; }

@media (hover: hover) {
  .pc-card:hover .pc-card__img.is-primary { opacity: 0; }
  .pc-card:hover .pc-card__img.is-secondary { opacity: 1; }
  .pc-card--zoom:hover .pc-card__img { transform: scale(1.02); }
}

/* ---------- Badges ---------- */
.pc-card__badges {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 2;
  pointer-events: none;
}

.pc-badge {
  display: inline-block;
  padding: 4px 8px;
  font-size: 11px;
  letter-spacing: 0.04em;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 1.2;
  border-radius: 2px;
  background: var(--pc-badge-bg, #fff);
  color: var(--pc-badge-text, #1a1a1a);
  text-decoration: none;
}

.pc-badge--sale {
  background: var(--pc-badge-sale-bg, #b12704);
  color: var(--pc-badge-sale-text, #fff);
}
.pc-badge--new {
  background: var(--pc-badge-new-bg, #1a1a1a);
  color: var(--pc-badge-new-text, #fff);
}
.pc-badge--soldout {
  background: var(--pc-badge-soldout-bg, #888);
  color: var(--pc-badge-soldout-text, #fff);
}

/* ---------- Wishlist ---------- */
.pc-card__wishlist {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 3;
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--pc-wl-bg, #fff);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 1px 3px rgba(0,0,0,.08);
  transition: transform .2s ease;
  padding: 0;
}
.pc-card__wishlist:hover { transform: scale(1.08); }
.pc-card__wishlist svg {
  width: 16px;
  height: 16px;
  stroke: var(--pc-wl-icon, #1a1a1a);
  fill: none;
  stroke-width: 1.6;
}
.pc-card__wishlist.is-active svg {
  fill: var(--pc-wl-active, #b12704);
  stroke: var(--pc-wl-active, #b12704);
}

/* ---------- Quick add ---------- */
.pc-card__quickadd {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 2;
  padding: 12px 16px;
  background: var(--pc-qa-bg, #fff);
  color: var(--pc-qa-text, #1a1a1a);
  border: none;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 2px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .25s ease, transform .25s ease, background .2s ease, color .2s ease;
  font-family: inherit;
}
.pc-card__quickadd:hover {
  background: var(--pc-qa-hover-bg, #1a1a1a);
  color: var(--pc-qa-hover-text, #fff);
}

@media (hover: hover) {
  .pc-card:hover .pc-card__quickadd { opacity: 1; transform: translateY(0); }
}

.pc-card--qa-always .pc-card__quickadd,
@media (hover: none) {
  .pc-card__quickadd { opacity: 1; transform: none; }
}
.pc-card--qa-always .pc-card__quickadd { opacity: 1; transform: none; }

/* ---------- Info block ---------- */
.pc-card__info {
  padding: var(--pc-info-py, 16px) var(--pc-info-px, 16px);
  background: var(--pc-info-bg, #ffffff);
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: left;
  min-width: 0;
}

.pc-card__title {
  margin: 0;
  font-size: var(--pc-title-size, 14px);
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.01em;
  color: inherit;
  /* Una sola línea con ellipsis */
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}
.pc-card__title a {
  color: inherit;
  text-decoration: none;
  display: inline-block;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: bottom;
}
.pc-card__title a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.pc-card__material {
  font-size: 12px;
  color: var(--pc-muted, #767676);
  line-height: 1.3;
  letter-spacing: 0.02em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pc-card__price {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 8px;
  font-size: var(--pc-price-size, 13px);
  line-height: 1.3;
  margin-top: 2px;
  letter-spacing: 0.01em;
  white-space: nowrap;
  overflow: hidden;
  /* color heredado del título/theme — no se fuerza */
}
.pc-card__price-current {
  font-weight: inherit;
  color: var(--pc-price-current, inherit);
}
.pc-card__price-compare {
  text-decoration: line-through;
  color: var(--pc-price-compare, #767676);
  font-weight: inherit;
  font-size: calc(var(--pc-price-size, 13px) - 1px);
}
.pc-card__price-discount {
  color: var(--pc-price-discount, #b12704);
  font-weight: inherit;
  font-size: 11px;
  letter-spacing: 0.04em;
  padding-left: 2px;
}

/* ---------- Swatches ---------- */
.pc-card__swatches {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
  flex-wrap: wrap;
}
.pc-swatch {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1px solid #e5e5e5;
  cursor: pointer;
  background-size: cover;
  background-position: center;
  transition: transform .15s ease, box-shadow .15s ease;
}
.pc-swatch:hover,
.pc-swatch.is-active {
  transform: scale(1.15);
  box-shadow: 0 0 0 1px var(--pc-text, #1a1a1a);
}
.pc-swatch--more {
  border: none;
  background: transparent;
  font-size: 11px;
  color: var(--pc-muted, #767676);
  width: auto;
  height: auto;
  padding: 0 2px;
  cursor: pointer;
  text-decoration: none;
}

/* ---------- Grid helper ---------- */
.pc-grid {
  display: grid;
  grid-template-columns: repeat(var(--pc-grid-cols-mobile, 2), 1fr);
  gap: var(--pc-grid-gap, 24px);
}
@media (min-width: 990px) {
  .pc-grid {
    grid-template-columns: repeat(var(--pc-grid-cols-desktop, 4), 1fr);
  }
}