/* =========================================================
   OBRAL.CSS - Al Manar Herbafit
   ========================================================= */

/* ---------- Badge stok, nempel di pojok foto ---------- */
.obral-card-image,
.artikel-image {
  position: relative;
}

.obral-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #fff;
  z-index: 2;
}
.obral-badge-terbatas { background: #e0a832; }
.obral-badge-habis    { background: #a4a4a4; }

/* Kartu produk yang stoknya habis, dibuat sedikit pudar */
.obral-habis .obral-card-image img {
  filter: grayscale(60%);
  opacity: 0.75;
}

/* ---------- Harga ---------- */
.obral-price {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.obral-price-coret {
  color: var(--muted);
  text-decoration: line-through;
  font-size: 0.9rem;
}
.obral-price-now {
  color: var(--primary-dark);
  font-weight: 800;
  font-size: 1.25rem;
}

/* Harga di halaman detail, sedikit lebih besar + badge sejajar */
.obral-detail-price {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.obral-detail-price .obral-price-now { font-size: 1.6rem; }
.obral-detail-price .obral-badge {
  position: static; /* di halaman detail, badge sejajar teks, bukan nempel di foto */
}

/* ---------- Tombol pesan WA di halaman detail ---------- */
.btn-wa-obral {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px 28px;
  margin: 20px 0 8px;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  font-size: var(--font-size);
  border-radius: var(--radius-sm);
  box-shadow: 0 12px 24px rgba(47, 125, 91, 0.25);
  transition: 0.2s ease;
}

.btn-wa-obral:hover {
  color: #fff !important;
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(47, 125, 91, 0.32);
}

.btn-wa-obral i {
  font-size: 1.3rem;
}