#popupBackground {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(10, 10, 10, 0.85);
  justify-content: center;
  align-items: center;
  z-index: 999;
  animation: fadeIn 0.4s ease-in-out;
}

.popup-content {
  background: white;
  padding: 30px;
  max-width: 500px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0,0,0,0.3);
  animation: slideUp 0.3s ease;
  position: relative;
}

.popup-img {
  width: 150px;
  border-radius: 10px;
  margin-bottom: 15px;
}

.popup-title {
  font-size: 24px;
  margin-bottom: 10px;
  color: #333;
}

.popup-description {
  font-size: 16px;
  color: #555;
  margin-bottom: 20px;
}

.product-details-lasting {
  font-size: 16px;
  margin: 10px 0;
  font-weight: bold;
  color: #444;
  animation: fadeIn 0.5s ease-in-out;
}

.product-details-lasting span {
  background-color: #f0f0f0;
  padding: 4px 10px;
  border-radius: 20px;
  color: #2b2b2b;
  font-size: 15px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}


.popup-dropdown {
  padding: 10px;
  font-size: 16px;
  margin-bottom: 20px;
}

.popup-order-btn {
  background-color: #222;
  color: white;
  padding: 10px 20px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
}
.popup-order-btn:hover {
  background-color: #444;
}

.close-btn {
  position: absolute;
  top: 8px;
  right: 12px;
  font-size: 24px;
  cursor: pointer;
  color: #666;
}

@keyframes slideUp {
  from { transform: translateY(30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@keyframes fadeIn {
  from { background-color: rgba(0, 0, 0, 0); }
  to { background-color: rgba(10, 10, 10, 0.85); }
}
