/* PAYMENT MODAL */
.payment-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.payment-box {
  background: #111;
  padding: 25px;
  border-radius: 12px;
  width: 90%;
  max-width: 400px;
  text-align: center;
}

.payment-box h2 {
  margin-bottom: 15px;
}

.payment-box button {
  width: 100%;
  padding: 12px;
  margin: 8px 0;
  background: gold;
  border: none;
  font-weight: bold;
  cursor: pointer;
}

.payment-box .close-btn {
  background: #444;
  margin-top: 10px;
}

#payment-info {
  margin-top: 15px;
  font-size: 14px;
  word-break: break-all;
  background: #000;
  padding: 10px;
  border-radius: 6px;
}
.cart-item {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  font-size: 14px;
}

.cart-item button {
  background: none;
  color: red;
  border: none;
  cursor: pointer;
}