.cart-items {
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cart-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 12px;
  box-shadow: var(--shadow);
}
.cart-item img {
  width: 70px; height: 70px;
  border-radius: 12px;
  object-fit: cover;
}
.cart-item-info { flex: 1; }
.cart-item-name { font-size: 14px; font-weight: 600; margin-bottom: 2px; }
.cart-item-price { font-size: 13px; color: var(--accent); font-weight: 700; }
.cart-qty {
  display: flex;
  align-items: center;
  gap: 10px;
}
.qty-btn {
  width: 30px; height: 30px;
  border-radius: 8px;
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--text);
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.qty-btn:hover { background: var(--primary); color: var(--white); border-color: var(--primary); }
.qty-val { font-size: 14px; font-weight: 600; min-width: 20px; text-align: center; }
.cart-remove {
  width: 32px; height: 32px;
  border-radius: 8px;
  border: none;
  background: #ffebee;
  color: #c62828;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.cart-remove:hover { background: #c62828; color: var(--white); }
.cart-summary {
  margin: 20px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
}
.cart-summary h3 { font-size: 16px; margin-bottom: 16px; }
.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  font-size: 14px;
  color: var(--text-light);
  border-bottom: 1px dashed var(--border);
}
.summary-row.total {
  border-bottom: none;
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-top: 4px;
}
.checkout-btn {
  width: 100%;
  margin-top: 16px;
  padding: 14px;
  border-radius: 12px;
  border: none;
  background: var(--accent);
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: var(--transition);
}
.checkout-btn:hover { background: var(--accent-hover); transform: translateY(-2px); }
.empty-cart {
  text-align: center;
  padding: 60px 20px;
}
.empty-cart i { font-size: 64px; color: var(--border); margin-bottom: 16px; }
.empty-cart h2 { font-size: 20px; margin-bottom: 8px; }
.empty-cart p { color: var(--text-light); font-size: 14px; margin-bottom: 24px; }
.browse-btn {
  display: inline-block;
  padding: 12px 32px;
  background: var(--accent);
  color: var(--white);
  border-radius: 30px;
  font-weight: 600;
  font-size: 14px;
  transition: var(--transition);
}
.browse-btn:hover { background: var(--accent-hover); }

/* ========== PAYMENT MODAL ========== */
.payment-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.payment-modal.active {
  display: flex;
}
.payment-modal-content {
  background: #fff;
  border-radius: 16px;
  max-width: 400px;
  width: 100%;
  padding: 24px;
  position: relative;
  text-align: center;
  animation: modalPop 0.3s ease;
}
@keyframes modalPop {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #f5f5f5;
  border: none;
  font-size: 16px;
  cursor: pointer;
  color: #999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 24px;
  color: #fff;
}
.modal-icon.primary { background: var(--primary); }
.modal-icon.success { background: #e8f5e9; color: #2d5a2d; }
.modal-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}
.modal-subtitle {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.5;
}
.modal-confirm {
  font-size: 14px;
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1.6;
}
.account-card {
  background: var(--bg);
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 20px;
  text-align: left;
}
.account-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  font-size: 13px;
}
.account-row:last-child { margin-bottom: 0; }
.account-row span { color: var(--text-light); }
.account-row strong { color: var(--text); font-weight: 600; }
.copyable {
  cursor: pointer;
  color: var(--primary) !important;
  transition: var(--transition);
}
.copyable:hover { color: var(--accent) !important; }
.copyable i { font-size: 12px; margin-left: 4px; }
.modal-total {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 20px;
}
.btn-pay {
  width: 100%;
  padding: 14px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: var(--transition);
  font-family: 'Poppins', sans-serif;
}
.btn-pay:hover { background: var(--accent-hover); transform: translateY(-2px); }
.screenshot-alert {
  background: #fff3e0;
  border: 1px solid #ffe0b2;
  border-radius: 12px;
  padding: 14px;
  margin-bottom: 20px;
  text-align: left;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.screenshot-alert i {
  color: var(--accent);
  font-size: 18px;
  margin-top: 2px;
}
.screenshot-alert p {
  font-size: 13px;
  color: #5d4037;
  margin: 0;
  line-height: 1.5;
}
.btn-whatsapp {
  width: 100%;
  padding: 14px;
  background: #25D366;
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: var(--transition);
  font-family: 'Poppins', sans-serif;
}
.btn-whatsapp:hover { background: #128C7E; transform: translateY(-2px); }
