/* NejenHra — volba odměny nad 2 499 Kč */

.reward-picker {
  border: 1px solid #e3e3e3;
  border-radius: 10px;
  padding: 16px;
  margin: 0 0 20px;
  background: #fff;
}

.reward-picker__head {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 12px;
}

.reward-picker__head strong {
  font-size: 16px;
  line-height: 1.3;
}

.reward-picker__head span {
  font-size: 13px;
  color: #6b6b6b;
}

.reward-picker__note {
  margin: 0 0 12px;
  padding: 10px 12px;
  border-radius: 6px;
  background: #fff4e5;
  color: #7a4b00;
  font-size: 13px;
  line-height: 1.4;
}

.reward-picker__tiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

@media (max-width: 480px) {
  .reward-picker__tiles { grid-template-columns: 1fr; }
}

.reward-tile {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px;
  text-align: left;
  border: 2px solid #e3e3e3;
  border-radius: 8px;
  background: #fafafa;
  cursor: pointer;
  transition: border-color .15s, background-color .15s;
  font: inherit;
  color: inherit;
}

.reward-tile:hover { border-color: #bdbdbd; }

.reward-tile:focus-visible {
  outline: 2px solid #37724D;
  outline-offset: 2px;
}

/* zvolená odměna — zelená sedí k .flag-gift, které už na e-shopu je */
.reward-tile[aria-pressed="true"] {
  border-color: #37724D;
  background: #f1f7f3;
}

.reward-tile[aria-pressed="true"] .reward-tile__title::after {
  content: " ✓";
  color: #37724D;
}

.reward-tile__title {
  font-weight: 700;
  font-size: 14px;
}

.reward-tile__desc {
  font-size: 12px;
  color: #6b6b6b;
  line-height: 1.35;
}

/* v konfliktním stavu je doprava zdarma nedostupná */
.reward-picker[data-choice="conflict"] .reward-tile[data-reward="shipping"] {
  opacity: .5;
  pointer-events: none;
}

/* poznámka o slevovém kódu — jen u zvolené dopravy zdarma */
.reward-picker__hint {
  margin: 12px 0 0;
  font-size: 12px;
  line-height: 1.4;
  color: #6b6b6b;
}

.reward-link {
  padding: 0;
  border: 0;
  background: none;
  font: inherit;
  color: #37724D;
  text-decoration: underline;
  cursor: pointer;
}

.reward-link:hover { text-decoration: none; }
