/* ============================================
   CART.CSS — badge jumlah item & dropdown mini
   keranjang. Dipakai bersama semua halaman lewat
   cart.js. Dropdown cuma jalan di desktop; di mobile
   ikon keranjang langsung pindah ke cart.html.
   ============================================ */

.cart-badge {
  display: none;
  align-items: center;
  justify-content: center;
  position: absolute;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  background: #e85d04;
  color: white;
  font-family: 'Inter', sans-serif;
  font-size: 9px;
  font-weight: 700;
  border-radius: 999px;
  border: 1.5px solid white;
  pointer-events: none;
  line-height: 1;
  z-index: 5;
}

/* Posisi tetap karena .header-cart posisinya identik (top:24px;left:1210px;
   width:32px;height:30px) di semua halaman - ditaruh di pojok kanan-atas ikon. */
.cart-badge-desktop { top: 15px; left: 1233px; }

.mh-cart-wrap { position: relative; display: inline-flex; }
.cart-badge-mobile { top: -5px; right: -5px; left: auto; }

.cart-dropdown {
  display: none;
  position: fixed;
  width: 320px;
  max-height: 420px;
  overflow-y: auto;
  background: white;
  border: 2px solid #1a1a1a;
  box-shadow: 6px 6px 0 #1a1a1a;
  border-radius: 8px;
  z-index: 1000;
  font-family: 'Inter', sans-serif;
  padding: 14px;
}
.cart-dropdown.open { display: block; }

.cart-dd-empty {
  padding: 26px 4px;
  text-align: center;
  font-size: 13px;
  color: #888;
  line-height: 2;
}

.cart-dd-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 10px; }

.cart-dd-item { display: flex; align-items: center; gap: 10px; }

.cart-dd-img {
  width: 44px; height: 44px;
  flex-shrink: 0;
  background: #f5f0e6;
  border: 1.5px solid #1a1a1a;
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
}

.cart-dd-info { flex: 1; min-width: 0; }
.cart-dd-name {
  font-size: 12px; font-weight: 700; color: #1a1a1a; margin-bottom: 2px;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.cart-dd-variant { font-size: 10px; color: #888; margin-bottom: 2px; }
.cart-dd-qty-price { font-size: 11px; color: #e85d04; font-weight: 700; }

.cart-dd-remove {
  background: none; border: none; cursor: pointer;
  font-size: 16px; color: #999; line-height: 1; padding: 4px;
  flex-shrink: 0;
}
.cart-dd-remove:hover { color: #c0392b; }

.cart-dd-more { font-size: 10px; color: #888; text-align: center; margin-bottom: 10px; }

.cart-dd-total {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 10px; border-top: 1.5px solid #eee;
  margin-bottom: 12px;
  font-size: 12px;
}
.cart-dd-total strong { font-size: 15px; color: #1a1a1a; }

.cart-dd-viewall {
  display: block;
  text-align: center;
  background: #1a1a1a;
  color: white;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  padding: 10px;
  border-radius: 6px;
  letter-spacing: 0.5px;
}
.cart-dd-viewall:hover { background: #e85d04; }

@media (max-width: 768px) {
  .cart-dropdown { display: none !important; }
}
