/* Kontener formularza */
.piglowe-form {
  max-width: 800px;
  margin: 0 auto;
  padding: 30px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.07);
  font-family: system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

/* Nagłówki pytań */
.piglowe-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
}

/* Inputy, textarea, select */
.piglowe-form input[type="text"],
.piglowe-form textarea,
.piglowe-form select,
.piglowe-form input[type="email"] {
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 20px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 16px;
  font-family: inherit;
}

/* Gwiazdki – SVG łagodne i większe */
.star {
  display: inline-block;
  margin-right: 5px;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.star:hover {
  transform: scale(1.1);
}

.icon-star {
  width: 40px;
  height: 40px;
  fill: #ccc;
  transition: fill 0.3s ease;
  clip-path: inset(2% round 15%);
}

.star.selected .icon-star,
.star.hovered .icon-star {
  fill: #FFD700;
}

/* Checkboxy */
.piglowe-form .checkbox-group {
  margin-bottom: 20px;
}

.piglowe-form .checkbox-group label {
  display: inline-block;
  margin-right: 15px;
  font-weight: normal;
}

/* Przycisk wysyłania */
.piglowe-form button[type="submit"] {
  background-color: #ef4823;
  color: white;
  padding: 14px 26px;
  border: none;
  font-size: 16px;
  border-radius: 15px 0 15px 15px;
  cursor: pointer;
  transition: background-color 0.2s ease;
  display: block !important;
  width: 100% !important;
  box-sizing: border-box;
}

.piglowe-form button[type="submit"]:hover {
  background-color: #d43e1d;
}

/* Komunikat po wysłaniu */
.piglowe-form .success-message {
  padding: 20px;
  background-color: #eafbea;
  border: 1px solid #b6e3b6;
  color: #2f7032;
  margin-top: 20px;
  border-radius: 10px;
  font-weight: 500;
}
