/* =========================================================
   ANKETA – NAŠA BYTČA
   ========================================================= */

.nby-poll {
  --nby-poll-orange: #fb6000;
  --nby-poll-orange-dark: #d94f00;
  --nby-poll-ink: #1f2937;
  --nby-poll-muted: #667085;
  --nby-poll-soft: #fff6f0;
  --nby-poll-border: rgba(31, 41, 55, 0.12);
  --nby-poll-shadow: 0 18px 55px rgba(31, 41, 55, 0.1);

  padding: 42px 0;
}


.nby-poll__card {
  position: relative;
  overflow: hidden;
  max-width: 920px;
  margin: 0 auto;
  padding: 34px;
  background: #ffffff;
  border: 1px solid var(--nby-poll-border);
  border-radius: 24px;
  box-shadow: var(--nby-poll-shadow);
}


.nby-poll__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--nby-poll-orange);
}


/* =========================================================
   NADPIS
   ========================================================= */

.nby-poll__heading {
  max-width: 760px;
  margin-bottom: 24px;
}


.nby-poll__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 12px;
  padding: 7px 12px;
  color: var(--nby-poll-orange-dark);
  background: var(--nby-poll-soft);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}


.nby-poll__eyebrow i {
  font-size: 0.9rem;
  line-height: 1;
}


.nby-poll__heading h2 {
  margin: 0 0 12px;
  color: var(--nby-poll-ink);
  font-size: clamp(1.55rem, 3vw, 2.2rem);
  font-weight: 800;
  line-height: 1.2;
}


.nby-poll__heading p {
  margin: 0;
  color: var(--nby-poll-muted);
  font-size: 1rem;
  line-height: 1.65;
}


/* =========================================================
   MOŽNOSTI HLASOVANIA
   ========================================================= */

.nby-poll__options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}


.nby-poll__option {
  display: flex;
  align-items: center;
  width: 100%;
   grid-column: auto;
  min-height: 68px;
  padding: 13px 16px;
  color: var(--nby-poll-ink);
  background: #ffffff;
  border: 1px solid var(--nby-poll-border);
  border-radius: 15px;
  font: inherit;
  font-weight: 700;
  text-align: left;
  cursor: pointer;

  transition:
    transform 0.18s ease,
    border-color 0.18s ease,
    background-color 0.18s ease,
    box-shadow 0.18s ease,
    color 0.18s ease;
}





.nby-poll__option:hover:not(:disabled) {
  transform: translateY(-2px);
  background: var(--nby-poll-soft);
  border-color: rgba(251, 96, 0, 0.55);
  box-shadow: 0 10px 25px rgba(31, 41, 55, 0.08);
}


.nby-poll__option:focus-visible {
  outline: 3px solid rgba(251, 96, 0, 0.25);
  outline-offset: 3px;
}


.nby-poll__option:disabled {
  cursor: default;
  opacity: 0.62;
}


.nby-poll__option.is-selected {
  color: #ffffff;
  background: var(--nby-poll-orange);
  border-color: var(--nby-poll-orange);
  box-shadow: 0 10px 28px rgba(251, 96, 0, 0.22);
  opacity: 1;
}


/* =========================================================
   BOOTSTRAP IKONY
   ========================================================= */

.nby-poll__option-icon {
  display: grid;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  margin-right: 12px;
  place-items: center;
  background: var(--nby-poll-soft);
  border-radius: 12px;

  transition:
    background-color 0.18s ease,
    color 0.18s ease;
}


.nby-poll__option-icon i {
  display: block;
  color: var(--nby-poll-orange);
  font-size: 1.35rem;
  line-height: 1;
}


.nby-poll__option:hover:not(:disabled) .nby-poll__option-icon {
  background: #ffffff;
}


.nby-poll__option.is-selected .nby-poll__option-icon {
  background: rgba(255, 255, 255, 0.18);
}


.nby-poll__option.is-selected .nby-poll__option-icon i {
  color: #ffffff;
}


.nby-poll__option-text {
  line-height: 1.35;
}


/* =========================================================
   STAVOVÁ HLÁŠKA
   ========================================================= */

.nby-poll__status {
  min-height: 24px;
  margin: 18px 0 0;
  color: var(--nby-poll-muted);
  font-size: 0.94rem;
  font-weight: 600;
}


.nby-poll__status.is-success {
  color: #157347;
}


.nby-poll__status.is-error {
  color: #b42318;
}


/* =========================================================
   VÝSLEDKY
   ========================================================= */

.nby-poll__results {
  margin-top: 23px;
  padding-top: 22px;
  border-top: 1px solid var(--nby-poll-border);
}


.nby-poll__result {
  margin-bottom: 18px;
}


.nby-poll__result:last-child {
  margin-bottom: 0;
}


.nby-poll__result-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 7px;
}


.nby-poll__result-label {
  color: var(--nby-poll-ink);
  font-size: 0.94rem;
  font-weight: 700;
}


.nby-poll__result-percentage {
  flex: 0 0 auto;
  color: var(--nby-poll-ink);
  font-size: 0.94rem;
  font-weight: 800;
}


.nby-poll__result-bar {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 10px;
  background: #edf0f3;
  border-radius: 999px;
}


.nby-poll__result-fill {
  display: block;
  width: 0;
  height: 100%;
  background: var(--nby-poll-orange);
  border-radius: inherit;
  transition: width 0.55s ease;
}


.nby-poll__result.is-selected .nby-poll__result-label::after {
  content: " – váš hlas";
  color: var(--nby-poll-orange-dark);
  font-weight: 700;
}


.nby-poll__result-votes {
  display: block;
  margin-top: 5px;
  color: var(--nby-poll-muted);
  font-size: 0.8rem;
}


/* =========================================================
   SPODNÉ INFORMÁCIE
   ========================================================= */

.nby-poll__total {
  margin: 18px 0 0;
  color: var(--nby-poll-ink);
  font-size: 0.9rem;
  font-weight: 800;
}


.nby-poll__notice {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  margin: 8px 0 0;
  color: var(--nby-poll-muted);
  font-size: 0.78rem;
  line-height: 1.5;
}


.nby-poll__notice i {
  flex: 0 0 auto;
  margin-top: 2px;
  color: var(--nby-poll-orange);
  font-size: 0.9rem;
}


/* =========================================================
   MOBIL
   ========================================================= */

@media (max-width: 767px) {
  .nby-poll {
    padding: 28px 0;
  }


  .nby-poll__card {
    padding: 27px 20px;
    border-radius: 20px;
  }


  .nby-poll__options {
    grid-template-columns: 1fr;
  }


  .nby-poll__option:last-child {
    grid-column: auto;
  }


  .nby-poll__option {
    min-height: 64px;
  }
}


/* =========================================================
   OBMEDZENIE ANIMÁCIÍ
   ========================================================= */

@media (prefers-reduced-motion: reduce) {
  .nby-poll__option,
  .nby-poll__option-icon,
  .nby-poll__result-fill {
    transition: none;
  }
}