/* Cart Page Specific Styles */

/* Payment Popup */
#paymentPopup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

#paymentPopup .popup-content {
  background-color: #0f0f0f;
  padding: 30px;
  border-radius: 8px;
  max-width: 500px;
  width: 90%;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

#paymentPopup .close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #a1a1aa;
}

#paymentPopup .close-btn:hover {
  color: #ffffff;
}

#paymentPopup h2 {
  margin-top: 0;
  text-align: center;
  color: #ffffff;
}

#paymentPopup .order-details {
  background-color: #171717;
  padding: 15px;
  border-radius: 4px;
  margin: 20px 0;
}

#paymentPopup .order-details div {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

#paymentPopup .buttons {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 20px;
}

#paymentPopup .btn {
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

#paymentPopup .btn-primary {
  background-color: #3b82f6;
  color: white;
}

#paymentPopup .btn-secondary {
  background-color: #28a745;
  color: white;
}

#paymentPopup .btn-outline {
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

/* Form Validation */
.border-danger {
  border-color: #ef4444 !important;
}

.border-danger:focus {
  box-shadow: 0 0 0 2px rgba(239, 68, 68, 0.2) !important;
}