/*
 * 33&Co catalog card.
 * One stable matrix: the cover, artist, title, format, year, condition and price vary.
 */
.woocommerce ul.products {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(220px, 260px));
  justify-content: start;
  gap: 16px;
  margin: 0 !important;
}
.woocommerce ul.products::before,
.woocommerce ul.products::after { display: none !important; }
.woocommerce ul.products li.product {
  float: none !important;
  width: auto !important;
  margin: 0 !important;
  overflow: visible !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.enco-product-card {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid rgba(200, 149, 67, .28);
  border-radius: 6px;
  color: #fff;
  background: linear-gradient(155deg, #17232a 0%, #0d151a 76%);
  box-shadow: 0 12px 25px rgba(8, 13, 16, .14);
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.enco-product-card:hover {
  border-color: rgba(220, 174, 94, .75);
  box-shadow: 0 18px 36px rgba(8, 13, 16, .24);
  transform: translateY(-3px);
}

.enco-product-card__media {
  position: relative;
  aspect-ratio: 1.12 / 1;
  min-height: 0;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 74% 46%, rgba(200, 149, 67, .10), transparent 38%),
    linear-gradient(150deg, #17242c, #0c1318);
}
.enco-product-card__media::after {
  position: absolute;
  z-index: 4;
  inset: auto 0 0;
  height: 35%;
  content: "";
  pointer-events: none;
  background: linear-gradient(transparent, rgba(8, 13, 16, .62));
}
.enco-product-card__visual { position: absolute; inset: 0; display: block; }

.enco-product-card__vinyl {
  position: absolute;
  z-index: 1;
  top: 15%;
  right: -4%;
  display: grid;
  width: 66%;
  aspect-ratio: 1;
  place-items: center;
  border-radius: 50%;
  background:
    repeating-radial-gradient(circle at center, #0a0b0c 0 3px, #181a1b 4px 6px, #090a0b 7px 10px),
    #0a0b0c;
  box-shadow: 0 16px 28px rgba(0, 0, 0, .48);
  transition: transform .32s ease;
}
.enco-product-card:hover .enco-product-card__vinyl { transform: rotate(8deg) translateX(3px); }
.enco-product-card__vinyl::before {
  position: absolute;
  inset: 5%;
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: inherit;
  content: "";
}
.enco-product-card__vinyl i {
  width: 28%;
  aspect-ratio: 1;
  border: 2px solid #e1b35e;
  border-radius: 50%;
  background: #c89543;
  box-shadow: inset 0 0 0 32% #d9a84d;
}
.enco-product-card__vinyl i::after {
  display: block;
  width: 12%;
  aspect-ratio: 1;
  margin: 44% auto 0;
  border-radius: 50%;
  content: "";
  background: #10171b;
}

.enco-product-card__cover {
  position: absolute;
  z-index: 2;
  top: 8%;
  left: 5%;
  display: block;
  width: 64%;
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid rgba(214, 169, 91, .72);
  background: #0b1013;
  box-shadow: 13px 15px 27px rgba(0, 0, 0, .42);
}
.enco-product-card__image,
.woocommerce ul.products li.product .enco-product-card__image {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  margin: 0 !important;
  aspect-ratio: 1 !important;
  object-fit: cover !important;
  object-position: center !important;
  transform: scale(1.002);
}

.enco-product-card__favorite,
.enco-product-card__zoom {
  position: absolute;
  z-index: 7;
  display: grid;
  width: 31px;
  height: 31px;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(222, 178, 99, .62);
  border-radius: 50%;
  color: #e2b568;
  background: rgba(9, 15, 18, .82);
  backdrop-filter: blur(5px);
  transition: color .2s ease, background .2s ease, border-color .2s ease;
}
.enco-product-card__favorite { top: 9px; right: 9px; }
.enco-product-card__zoom { right: 9px; bottom: 9px; color: #fff; }
.enco-product-card__favorite:hover,
.enco-product-card__zoom:hover { border-color: #e2b568; color: #10171b; background: #e2b568; }
.enco-product-card__favorite .icon,
.enco-product-card__zoom .icon { width: 15px; height: 15px; }
.enco-product-card__favorite[aria-pressed="true"] { color: #111; background: #e2b568; }
.enco-product-card__favorite[aria-pressed="true"] .icon { fill: currentColor; }

.enco-product-card__body {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 116px;
  padding: 14px 14px 10px;
}
.enco-product-card__identity { color: #fff; }
.enco-product-card__artist {
  display: block;
  margin-bottom: 5px;
  color: #e2b568;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.enco-product-card__identity h2 {
  display: -webkit-box;
  min-height: 2.55em;
  margin: 0;
  overflow: hidden;
  color: #fff;
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.28;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.enco-product-card__facts {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: #c8ced2;
  font-size: 9px;
  text-transform: uppercase;
}
.enco-product-card__format { display: flex; flex-wrap: wrap; gap: 0; }
.enco-product-card__format span + span::before { margin: 0 6px; color: #68757c; content: "•"; }
.enco-product-card__conditions { display: flex; flex: 0 0 auto; gap: 5px; }
.enco-product-card__conditions strong {
  display: grid;
  width: 29px;
  height: 29px;
  place-items: center;
  border: 1px solid rgba(217, 168, 81, .62);
  border-radius: 50%;
  color: #e2b568;
  font-size: 8px;
  font-weight: 650;
}

.enco-product-card__footer {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 13px 13px;
  border-top: 1px solid rgba(255, 255, 255, .065);
}
.enco-product-card__footer > div { display: grid; gap: 5px; }
.enco-product-card__stock {
  color: #62b47b;
  font-size: 8px;
  font-weight: 750;
  letter-spacing: .045em;
  text-transform: uppercase;
}
.enco-product-card__stock::before {
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-right: 5px;
  border-radius: 50%;
  content: "";
  background: currentColor;
  box-shadow: 0 0 0 3px rgba(98, 180, 123, .12);
}
.enco-product-card__stock.is-out { color: #d46b5e; }
.enco-product-card__price {
  color: #e2b568;
  font-family: var(--font-editorial);
  font-size: 22px;
  font-weight: 650;
  line-height: 1;
}
.enco-product-card__price del { color: #899198; font-size: 12px; }
.enco-product-card__price ins { text-decoration: none; }
.enco-product-card__cart,
.woocommerce ul.products li.product .enco-product-card__cart.button {
  display: grid;
  width: 36px !important;
  height: 36px;
  min-height: 36px;
  margin: 0 !important;
  padding: 0 !important;
  place-items: center;
  border: 1px solid #d4a052 !important;
  border-radius: 4px;
  color: #10171c !important;
  background: #d4a052 !important;
  box-shadow: none !important;
}
.enco-product-card__cart:hover { background: #e2b568 !important; }
.enco-product-card__cart .icon { width: 17px; height: 17px; }
.enco-product-card.is-sold { opacity: .64; }
