/* =========================
   BADGE (BEST / NEW)
========================= */

.badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.4px;
  border-radius: 999px;
  color: #fff;
  z-index: 2;
  text-transform: uppercase;
}

/* Best Seller */
.badge.best {
  background: linear-gradient(135deg, #c2a27c, #a9845a);
  box-shadow: 0 6px 14px rgba(169,132,90,0.45);
}

/* New */
.badge.new {
  background: linear-gradient(135deg, #6fb1fc, #4364f7);
  box-shadow: 0 6px 14px rgba(67,100,247,0.35);
}

/* =========================
   DISCOUNT BADGE
========================= */

.discount-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #e74c3c;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 10px;
  border-radius: 8px;
  z-index: 2;
  box-shadow: 0 6px 16px rgba(231,76,60,0.4);
}
