/* ══════════════════════════════════════════════════════════
   PRODUCT CARD COMPONENT
   ══════════════════════════════════════════════════════════ */

.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* ── IMAGE SECTION ────────────────────────────── */
.product-card__image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--color-bg-card);
  margin-bottom: 1rem;
}

.product-card__image-wrapper picture,
.product-card__image-wrapper img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card__hover {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}

@media (hover: hover) {
  .product-card:hover .product-card__hover {
    opacity: 1;
  }
}

/* ── BADGES ───────────────────────────────────── */

/* Sale Badge (Top Left) */
.product-card__badge {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
  background-color: #E1A679;
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Pre-sale Badge (Diagonal Top Right) */
.product-card__presale {
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  overflow: hidden;
  z-index: 5;
  pointer-events: none;
}

.product-card__presale-label {
  position: absolute;
  top: 20px;
  right: -30px;
  display: block;
  width: 160px;
  padding: 8px 0;
  background-color: #fff;
  color: #444;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  transform: rotate(45deg);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border: 1px solid #efefef;
}

/* ── INFO SECTION ────────────────────────────── */
.product-card__info {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-card__sku {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  color: #B98A5D;
  text-transform: none;
  letter-spacing: 0;
  margin: 0;
}

.product-card__sku a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

.product-card__title {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  color: var(--color-dark-gray);
  line-height: 1.4;
  margin: 0;
}

.product-card__title a {
  font-size: 13px;
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

.product-card__collection {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--color-brown);
  opacity: 0.7;
  margin-top: 2px;
}

.product-card__price {
  margin-top: auto;
  padding-top: 12px;
  font-family: var(--font-label);
  font-size: 16px;
  font-weight: 600;
  color: var(--color-text);
}

.product-card__price .sale-price.price-highlight {
  font-family: var(--font-label);
  color: var(--color-text);
  font-weight: 400;
  font-size: 13px;
  margin-right: 8px;
}

.product-card__price .regular-price.price-strikethrough {
  font-size: 0.85em;
  color: var(--color-dark-gray);
  opacity: 0.5;
  font-weight: 400;
  text-decoration: line-through;
}

.product-card__price .regular-price.price-normal {
  font-weight: 600;
}

/* Removed hover color changes */