.kalkulator-wody,
.kalkulator-wody-straz {
  width: 800px;
  margin: 20px 0 60px 0;
  background-color: rgba(42, 58, 136, 0.1);
  border-radius: 32px;
  padding: 32px;
  color: #2A3A88;
  font-family: Arial, sans-serif;
  box-sizing: border-box;
}

.kalkulator-wody label,
.kalkulator-wody-straz label {
  display: block;
  font-weight: 500;
  margin-bottom: 4px;
  color: #2A3A88;
}

.kalkulator-wody input[type="number"],
.kalkulator-wody select,
.kalkulator-wody input[type="email"],
.kalkulator-wody input[type="text"],
.kalkulator-wody-straz input[type="number"],
.kalkulator-wody-straz select,
.kalkulator-wody-straz input[type="email"],
.kalkulator-wody-straz input[type="text"] {
  width: 100%;
  margin-top: 4px;
  margin-bottom: 15px;
  padding: 12px 16px;
  font-size: 16px;
  border: 1px solid #dde6ee;
  border-radius: 16px;
  box-sizing: border-box;
  background-color: white;
  color: #2A3A88;
}

.kalkulator-wody button,
.kalkulator-wody-straz button {
  background-color: #2A3A88;
  color: white;
  border: none;
  padding: 16px;
  width: 100%;
  text-align: center;
  font-size: 18px;
  border-radius: 16px;
  cursor: pointer;
  transition: background-color 0.3s;
  box-sizing: border-box;
  font-weight: bold;
}

.kalkulator-wody button:hover,
.kalkulator-wody-straz button:hover {
  background-color: #3C50AA;
}

.kalkulator-wody .zgoda,
.kalkulator-wody-straz .zgoda {
  font-size: 13px;
  margin-bottom: 12px;
  font-weight: 400;
  color: #2A3A88;
}

.kalkulator-wody .zgoda input,
.kalkulator-wody-straz .zgoda input {
  display: inline-block;
  width: auto;
  margin-right: 6px;
}

.kalkulator-wody .zgoda a,
.kalkulator-wody-straz .zgoda a {
  color: #2A3A88;
  text-decoration: underline;
}

#calcResult {
  margin-top: 26px;
  padding: 18px;
  background: white;
  border-radius: 16px;
  font-size: 1.1em;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
  color: #2A3A88;
}

#calcResult button {
  background-color: #2A3A88;
  color: white;
  margin-top: 14px;
  border-radius: 16px;
  border: none;
  padding: 12px 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s;
  width: 100%;
  box-sizing: border-box;
  font-size: 18px;
}

#calcResult button:hover {
  background-color: #3C50AA;
}

/* Checkboxes województw */
.kalkulator-wody .wojewodztwa-group {
  margin-bottom: 15px;
}

.kalkulator-wody .label-wojewodztwa {
  display: block;
  font-weight: 500;
  margin-bottom: 8px;
  color: #2A3A88;
}

.kalkulator-wody .lista-wojewodztw {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  background: white;
  padding: 10px;
  border: 1px solid #dde6ee;
  border-radius: 16px;
}

.kalkulator-wody .lista-wojewodztw label {
  display: flex;
  align-items: center;
  font-weight: 400;
  font-size: 15px;
  margin-bottom: 0;
  color: #2A3A88;
}

.kalkulator-wody .lista-wojewodztw input[type="checkbox"] {
  margin-right: 6px;
  width: auto;
}

/* Sekcja PDF */
#pdfSection label {
  display: block;
  font-weight: 500;
  margin-bottom: 4px;
  color: #2A3A88;
}

#pdfSection input[type="email"] {
  width: 100%;
  margin-top: 4px;
  margin-bottom: 15px;
  padding: 12px 16px;
  font-size: 16px;
  border: 1px solid #dde6ee;
  border-radius: 16px;
  box-sizing: border-box;
  background-color: white;
  color: #2A3A88;
}

#pdfSection .zgoda {
  font-size: 13px;
  margin-bottom: 12px;
  font-weight: 400;
  color: #2A3A88;
}

#pdfSection .zgoda input {
  display: inline-block;
  width: auto;
  margin-right: 6px;
}

#pdfSection .zgoda a {
  color: #2A3A88;
  text-decoration: underline;
}

#pdfSection button {
  background-color: #2A3A88;
  color: white;
  margin-top: 14px;
  border-radius: 16px;
  border: none;
  padding: 12px 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s;
  width: 100%;
  box-sizing: border-box;
  font-size: 18px;
}

#pdfSection button:hover {
  background-color: #3C50AA;
}

/* Kontener na wszystkie kafelki */
.lista-kafelkow {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  /* odstęp między kafelkami */
  max-width: 1200px;
  /* maksymalna szerokość całej sekcji */
  margin: 0 auto;
  padding: 24px;
  box-sizing: border-box;
}

@media (min-width: 720px) {
  .lista-kafelkow {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Pojedynczy kafelek produktu */
.produkt-kafelek {
  background-color: #f5f5f5;
  border-radius: 25px;
  padding: 24px 24px 22px 24px;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.3s;
}

/* Hover efekt dla kafelka */
.produkt-kafelek:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Zdjęcie produktu */
.produkt-kafelek img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  margin-bottom: 16px;
  object-fit: cover;
}

/* Nagłówek produktu */
.produkt-kafelek h5 {
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  color: #2A3A88;
  margin: 0 0 16px 0;
}

/* Przycisk zobacz */
.produkt-kafelek .przycisk-zobacz {
  display: inline-block;
  text-decoration: none;
  background-color: #2A3A88;
  color: white;
  padding: 12px 24px;
  border-radius: 25px;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  transition: background-color 0.3s;
}

.produkt-kafelek .przycisk-zobacz:hover {
  background-color: #3C50AA;
}

.wdf-report {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
  font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
  padding: 0;
  box-sizing: border-box;
}

.wdf-report__section {
  /* Style przeniesione do .wdf-data-grid aby tytuł był na zewnątrz */
  background: transparent;
  padding: 0;
  border: none;
  box-shadow: none;
}

.wdf-total-card,
.wdf-season-card,
.wdf-assumptions {
  background: #f5f5f5;
  border: none;
  border-radius: 12px;
  padding: 24px;
  box-shadow: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.wdf-report__section:hover,
.wdf-total-card:hover,
.wdf-season-card:hover,
.wdf-assumptions:hover,
.wdf-tips:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(42, 58, 136, 0.12);
}

.wdf-section-title {
  font-size: 24px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.4);
  text-transform: none;
  letter-spacing: -0.02em;
}

.wdf-data-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f5f5f5;
  border-radius: 12px;
  padding: 24px;
  gap: 8px;
}

.wdf-data-pill {
  background: transparent;
  border: none;
  padding: 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  min-width: 0;
}

.wdf-data-pill__value {
  font-size: 20px;
  font-weight: 900;
  color: #000000;
  line-height: 1.2;
}

.wdf-data-pill__label {
  font-size: 14px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.6);
  line-height: 1.2;
  word-wrap: break-word;
  hyphens: auto;
}

.wdf-total-card {
  background: #f5f5f5;
  color: inherit;
  text-align: right;
  padding: 29px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 24px;
  height: 150px;
  justify-content: space-between;
  border-radius: 12px;
  width: 100%;
}

.wdf-total-card__title {
  font-size: 24px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.4);
  margin-bottom: 16px;
}

.wdf-total-card__value {
  font-size: 32px;
  /* Zmniejszono z 52px aby zmieścić w jednej linii */
  font-weight: 900;
  margin: 0 0 8px 0;
  color: #2A3A88;
  line-height: 1.2;
  white-space: nowrap;
  /* Wymuś jedną linię */
  word-wrap: normal;
}

.wdf-total-card__caption {
  font-size: 20px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.4);
  margin: 0;
}

.wdf-seasons {
  display: flex;
  flex-direction: row;
  gap: 20px;
  overflow: hidden;
}

.wdf-season-card {
  position: relative;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  border-radius: 12px;
  background: #f5f5f5;
  flex: 1;
  min-width: 0;
  width: 50%;
  box-sizing: border-box;
}

.wdf-season-card__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 8px;
}

.wdf-season-card__info {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.wdf-season-card__icon {
  font-size: 41px;
  color: #2A3A88;
  font-weight: 800;
  line-height: 1;
}

.wdf-season-card__title {
  font-size: 20px;
  font-weight: 600;
  color: #000000;
  line-height: 1.4;
  margin-bottom: 2px;
}

.wdf-season-card__subtitle {
  font-size: 16px;
  color: rgba(0, 0, 0, 0.6);
  font-weight: 400;
  line-height: 1.2;
}

.wdf-season-card__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 4px;
}

.wdf-season-card__value {
  font-size: 28px;
  font-weight: 900;
  color: #2A3A88;
  line-height: 1.5;
  margin-bottom: 2px;
}

.wdf-season-card__note {
  font-size: 24px;
  color: rgba(0, 0, 0, 0.6);
  font-weight: 400;
  line-height: 1.2;
}

.wdf-season-card--warm,
.wdf-season-card--cold {
  background: #f5f5f5;
  border: none;
}

.wdf-assumptions ul {
  margin: 0;
  padding-left: 20px;
  font-size: 16px;
  color: #121b3a;
  line-height: 1.6;
}

.wdf-tips {
  border: 3px dashed #2A3A88;
  background: white;
  border-radius: 12px;
  padding: 24px 20px;
}

.wdf-tips__title {
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 24px;
  color: #2A3A88;
}

.wdf-tips__grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
}

.wdf-tip {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  text-align: left;
}

.wdf-tip__icon {
  width: 48px;
  height: 33px;
  margin: 0 0 8px 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.wdf-tip__icon img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* Złożona ikona słoneczko + butelki */
.wdf-tip__icon--composite {
  position: relative;
  width: 48px;
  height: 33px;
}

.wdf-tip__icon--composite .wdf-sun-icon {
  position: absolute;
  left: 0;
  top: 0;
  width: 10px;
  height: 10px;
}

.wdf-tip__icon--composite .wdf-bottle-icon {
  position: absolute;
  bottom: 0;
  width: 10px;
  height: 32px;
}

.wdf-tip__icon--composite .wdf-bottle-1 {
  left: 12px;
}

.wdf-tip__icon--composite .wdf-bottle-2 {
  left: 25px;
}

.wdf-tip__icon--composite .wdf-bottle-3 {
  left: 38px;
}

.wdf-tip__icon svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.wdf-tip__text {
  font-size: 20px;
  font-weight: 500;
  color: #2A3A88;
  text-align: left;
  line-height: 1.25;
  width: 180px;
}

.wdf-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  background: #2A3A88;
  color: #ffffff;
  border-radius: 12px;
  padding: 24px;
}

.wdf-contact__icon img {
  width: 39px;
  height: 58px;
  object-fit: contain;
}

.wdf-contact__icon {
  width: 40px;
  height: 56px;
}

.wdf-contact__icon2 {
  width: 28px;
  height: 36px;
  background: white;
}

.wdf-contact__content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.wdf-contact__title {
  font-size: 24px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
}

.wdf-contact__subtitle {
  font-size: 24px;
  font-weight: 700;
  color: white;
  line-height: 1.5;
}

@media (min-width: 720px) {
  .wdf-seasons {
    flex-direction: row;
  }

  .wdf-season-card {
    flex: 1 1 0;
  }
}

@media (max-width: 480px) {
  .wdf-data-grid {
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
    padding: 16px;
  }

  .wdf-data-pill {
    min-width: 100%;
    flex: none;
  }
}

@media (max-width: 719px) {
  .wdf-report {
    padding: 0 12px;
    gap: 20px;
  }

  .wdf-report__section,
  .wdf-total-card,
  .wdf-season-card,
  .wdf-assumptions,
  .wdf-tips {
    padding: 18px;
  }

  .wdf-seasons {
    flex-direction: column;
    gap: 16px;
  }

  .wdf-season-card {
    min-width: 100%;
    max-width: 100%;
    gap: 20px;
  }

  .wdf-season-card__title,
  .wdf-season-card__subtitle {
    max-width: 100%;
  }

  .wdf-total-card {
    text-align: center;
    align-items: center;
    padding: 20px;
    height: auto;
  }

  .wdf-total-card__value {
    font-size: 32px;
  }

  .wdf-total-card__caption {
    font-size: 20px;
  }

  .wdf-season-card__icon {
    font-size: 32px;
  }

  .wdf-season-card__value {
    font-size: 22px;
  }

  .wdf-season-card__note {
    font-size: 16px;
  }

  .wdf-tips__grid {
    flex-direction: column;
    gap: 16px;
  }

  .wdf-tip__text {
    font-size: 16px;
    width: 100%;
  }

  .wdf-contact {
    padding: 20px;
    gap: 16px;
  }
}

/* Style dla formularza straży */
.kalkulator-wody-straz h3 {
  font-size: 20px;
  font-weight: 600;
  color: #2A3A88;
  margin: 20px 0 12px 0;
  border-bottom: 2px solid #2A3A88;
  padding-bottom: 8px;
}

.kalkulator-wody-straz h3:first-of-type {
  margin-top: 0;
}

#strazResult {
  margin-top: 26px;
  padding: 18px;
  background: white;
  border-radius: 16px;
  font-size: 1.1em;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
  color: #2A3A88;
}

#strazPdfSection label {
  display: block;
  font-weight: 500;
  margin-bottom: 4px;
  color: #2A3A88;
}

#strazPdfSection input[type="email"],
#strazPdfSection input[type="text"] {
  width: 100%;
  margin-top: 4px;
  margin-bottom: 15px;
  padding: 12px 16px;
  font-size: 16px;
  border: 1px solid #dde6ee;
  border-radius: 16px;
  box-sizing: border-box;
  background-color: white;
  color: #2A3A88;
}

#strazPdfSection .zgoda {
  font-size: 13px;
  margin-bottom: 12px;
  font-weight: 400;
  color: #2A3A88;
}

#strazPdfSection .zgoda input {
  display: inline-block;
  width: auto;
  margin-right: 6px;
}

#strazPdfSection .zgoda a {
  color: #2A3A88;
  text-decoration: underline;
}