/* ===== DISCOUNT.CSS — MoonLight ===== */

/* image-container inside product-grid cards */
.image-container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 22px;
  background: #1a1a1a;
}
[data-theme="light"] .image-container {
  background: #e8e4de;
}

/* Diagonal discount ribbon — positioned inside .image-container */
.discount-ribbon {
  position: absolute;
  top: 22px;
  right: -32px;
  width: 140px;
  padding: 5px 0;
  background: linear-gradient(135deg, #e03030, #a00000);
  color: #fff;
  text-align: center;
  font-size: 11px;
  font-weight: 800;
  transform: rotate(45deg);
  box-shadow: 0 2px 6px rgba(0,0,0,0.4);
  z-index: 3;
  text-shadow: 0 1px 2px rgba(0,0,0,0.4);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  pointer-events: none;
}
.discount-ribbon::before,
.discount-ribbon::after { display: none; }

@media (max-width: 768px) {
  .discount-ribbon {
    width: 100px;
    font-size: 10px;
    right: -22px;
    top: 14px;
  }
}

/* Out-of-stock */
.out-of-stock { opacity: 0.7; }
.out-of-stock .card-image { filter: grayscale(100%); }
.out-of-stock .card-label { color: #888 !important; }
.out-of-stock .card-label h5,
.out-of-stock .price-new,
.out-of-stock .price-old,
.out-of-stock .price-regular { color: #888; }
.out-of-stock .discount-badge,
.out-of-stock .discount-ribbon { background: #aaa !important; color: #555; }
