/* Cart popup styling */
.cart-popup {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #28a745; /* Green for success */
  color: white;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-width: 250px;
  max-width: 300px;
  opacity: 0;
  visibility: hidden;
  z-index: 9999;
  transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
}

/* Show popup */
.show-popup {
  opacity: 1 !important;
  visibility: visible !important;
}

/* Close button */
.close-btn {
  margin-left: 15px;
  font-size: 18px;
  cursor: pointer;
  color: white;
  font-weight: bold;
}

/* Different color for "Already added" message */
.already-added {
  background-color: #ff7300 !important; /* Orange for warning */
}