@charset "UTF-8";
/* CSS Document */

/* Pop-up Overlay-Hintergrund (optional) */
#formPopup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1000;

  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0,0,0,0.3);
  max-width: 400px;
  width: 90%;
  display: none; /* Nur anzeigen, wenn JS es aktiviert */
}

/* Schließen-Button */
#formPopup .close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 1.5rem !important;
  cursor: pointer;
	outline: inherit;
	background: none;
	color: inherit;
   border: none;
   padding: 0;
   font: inherit;
}

/* Optional: Abgedunkelter Hintergrund */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 999;
  display: none;
}

.popup-content {
  background: #fff;
  width: 400px;
  margin: 100px auto;
  padding: 30px;
  border-radius: 10px;
  position: relative;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 1.5rem !important;
  cursor: pointer!important;
	outline: inherit;
	background: none;
	color: inherit;
   border: none;
   padding: 0;
   font: inherit;
}

#formPopup form input, form textarea {
  width: 100%;
  max-width: 100%;
  margin-bottom: 15px;
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

#formPopup form button[type="submit"] {
  background: #000;
  color: #fff;
  border: none;
  padding: 10px 15px;
	margin-bottom: 1rem;
  border-radius: 5px;
  cursor: pointer;
  font-size: 0.9rem;
}

#formPopup form button[type="submit"]:hover {
  background: #000;
	font-size: 0.9rem;
}
#formPopup form h2{
padding:1rem 0;	
	
}
#formPopup label{
font-size:0.9rem;
}
#formPopup p{
font-size:0.75rem;
}

#formResponse {
  text-align: center;
 	color: inherit;
	font-weight: normal;
	font-size: inherit;
	padding:5rem 0;

}
#formResponse.fade-out {
  opacity: 0;
}

#formPopup,
#popupOverlay {
  opacity: 1;
  transition: opacity 0.8s ease;
}

.fade-out-popup {
  opacity: 0;
}

#formResponse p{font-size:1rem!important;}

#productPreview img{
	max-height: 90px;
	width: inherit;
	min-width: inherit;
	margin-top: 1rem
}

#productPreview .product {
	margin-bottom:1.5rem;
	font-size:0.85rem;
	flex-direction: row;
	gap: 2rem;
}




#productPreview .work-info{ width: 100%;}
#productPreview .work-info p{
	padding-left:0;
	
}
