.option-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 10px 0 20px;
}

.option-tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 2px solid transparent;
    padding: 10px;
    cursor: pointer;
    transition: border-color 0.2s;
    max-width: 150px;
}

.option-tile img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 6px;
}

.option-tile input[type="radio"] {
    display: none;
}

.option-tile input[type="radio"]:checked + img,
.option-tile input[type="radio"]:checked ~ img {
    border: 2px solid #222;
}

.option-tile span {
    margin-top: 8px;
    text-align: center;
    font-weight: 500;
}

.trufle-kalkulator-text {
  width: 100%;
  display: block;
  margin-bottom: 8px !important;
  font-size: 12px;
  color: var(--wd-title-color);
  font-weight: var(--wd-title-font-weight);
  font-style: var(--wd-title-font-style);
  font-family: var(--wd-title-font);
  text-transform: uppercase;
}

.trufle-kalkulator-spacer {
  height: 40px;         /* wysokość odstępu */
  width: 100%;          /* pełna szerokość */
}

.modal-hidden {
  display: none;
}

#kalkulator-modal .modal-content {
  position: fixed;
  z-index: 1001;
  background: #fff;
  padding: 30px;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  border-radius: 10px;
  box-shadow: 0 0 30px rgba(0,0,0,.2);
  max-width: 720px;
  width: calc(100% - 32px);
}

.wpcf7-form .skip-br + br {
  display: none;
}