/** Shopify CDN: Minification failed

Line 169:2 Expected "*/" to terminate multi-line comment

**/
/* Premium Product Item Card Overrides (recreating product-highlight-card styles) */
.product-item {
  background: var(--jdx-white, #ffffff);
  border: 1px solid var(--jdx-black, #1a1410);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--jdx-shadow, 0 6px 24px rgba(26,20,16,.08));
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
  container-type: inline-size;
}

.product-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(26,20,16,.15);
  border-color: var(--jdx-gold, #a9802f);
}

.product-item .phc-media {
  position: relative;
  aspect-ratio: 1 / 1;
  background: var(--jdx-white, #ffffff);
  border-bottom: 1px solid var(--jdx-black, #1a1410);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.product-item:hover .phc-media {
  border-bottom-color: var(--jdx-gold, #a9802f);
}

.product-item .phc-aspect-ratio {
  padding-bottom: 0;
  height: 100%;
  width: 100%;
  background: transparent;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.product-item .phc-image {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: contain;
  margin: auto;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.product-item .phc-image--secondary {
  position: absolute;
  opacity: 0;
  transform: scale(0.95);
}

.product-item .phc-media:hover .phc-image--primary {
  opacity: 0;
  transform: scale(0.95);
}

.product-item .phc-media:hover .phc-image--secondary {
  opacity: 1;
  transform: scale(1);
}

.product-item .phc-content {
  padding: clamp(12px, 6cqw, 20px) clamp(10px, 5cqw, 16px);
  background: var(--jdx-white, #ffffff);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
  gap: clamp(8px, 4cqw, 12px);
}

.product-item .phc-badge {
  position: absolute;
  top: clamp(8px, 4cqw, 12px);
  left: clamp(8px, 4cqw, 12px);
  z-index: 3;
  background: var(--jdx-white, #ffffff);
  color: var(--jdx-gold-deep, #7d5c1f);
  border: 1px solid var(--jdx-gold-soft, #e7d3a1);
  border-radius: 30px;
  padding: clamp(2px, 1.5cqw, 4px) clamp(6px, 4cqw, 10px);
  font-family: var(--jdx-font-body, 'Inter', sans-serif);
  font-size: clamp(8px, 4.5cqw, 9.5px);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.product-item .phc-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.5rem;
}

.product-item .phc-title {
  font-family: var(--jdx-font-body, 'Inter', sans-serif);
  font-size: clamp(11px, 6.2cqw, 15px);
  font-weight: 500;
  color: var(--jdx-black, #1a1410);
  line-height: 1.35;
  margin: 0;
  text-decoration: none;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex-grow: 1;
  text-align: left;
}

.product-item .phc-title:hover {
  color: var(--jdx-gold, #a9802f);
}

.product-item .phc-price {
  font-family: var(--jdx-font-body, 'Inter', sans-serif);
  font-size: clamp(12px, 6.5cqw, 16px);
  font-weight: 700;
  color: var(--jdx-black, #1a1410);
  white-space: nowrap;
  flex-shrink: 0;
}

.product-item .phc-rating {
  display: flex;
  align-items: center;
  gap: clamp(4px, 2cqw, 8px);
  color: var(--jdx-gold, #a9802f);
  font-size: clamp(9.5px, 5cqw, 12px);
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.product-item .phc-stars {
  display: flex;
  gap: 0.05rem;
}

.product-item .phc-stars svg {
  width: clamp(9px, 5cqw, 12px);
  height: clamp(9px, 5cqw, 12px);
}

.product-item .phc-review-count {
  color: var(--jdx-muted, #7a7068);
}

/*