/* ============================================================
   Cesta objednávky — časová os pre zákazníka
   Načítava sa globálne, lebo os je v účte, na stránke sledovania
   aj na poďakovaní po objednávke.
   ============================================================ */

.sp-cesta {
  margin: 24px 0 32px;
  padding: 22px 24px;
  background: var(--surface);
  border: 1px solid var(--grey-200);
  border-radius: 14px;
}

.sp-cesta-nadpis {
  margin: 0 0 18px;
  font-size: 19px;
  font-weight: 800;
  color: var(--blue-ink);
}

.sp-cesta-os {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sp-cesta-krok {
  position: relative;
  display: flex;
  gap: 14px;
  padding-bottom: 22px;
}
.sp-cesta-krok:last-child { padding-bottom: 0; }

/* spojnica medzi bodmi — nie pod posledným, inak by visela do prázdna */
.sp-cesta-krok::before {
  content: "";
  position: absolute;
  left: 13px;
  top: 28px;
  bottom: 0;
  width: 2px;
  background: var(--grey-200);
}
.sp-cesta-krok:last-child::before { display: none; }
.sp-cesta-krok.je-hotovy::before { background: var(--green-ink); }

.sp-cesta-bod {
  position: relative;
  z-index: 1;
  flex: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid var(--grey-200);
  background: var(--surface);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
}
.sp-cesta-krok.je-hotovy .sp-cesta-bod {
  background: var(--green-ink);
  border-color: var(--green-ink);
}
/* v tmavom režime je --green-ink svetlá zelená, biela fajka by na nej zanikla */
[data-theme="dark"] .sp-cesta-krok.je-hotovy .sp-cesta-bod { color: #10151b; }

.sp-cesta-text { display: flex; flex-direction: column; gap: 2px; padding-top: 3px; }
.sp-cesta-text b { font-size: 15.5px; color: var(--grey-300); }
.sp-cesta-krok.je-hotovy .sp-cesta-text b { color: var(--grey-900); }
.sp-cesta-text small { font-size: 13.5px; color: var(--grey-700); }
.sp-cesta-text time {
  font-size: 13px;
  color: var(--green-ink);
  font-variant-numeric: tabular-nums;
}

.sp-cesta-zasielka {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 20px;
  margin: 18px 0 0;
  padding: 12px 14px;
  background: var(--grey-50);
  border-radius: 10px;
  font-size: 14.5px;
}

.sp-cesta-zrusena {
  margin: 0;
  padding: 12px 14px;
  border-radius: 10px;
  background: rgba(211, 47, 47, .1);
  color: var(--red-ink);
  font-weight: 600;
}

.sp-cesta-pomoc {
  margin: 18px 0 0;
  padding-top: 14px;
  border-top: 1px solid var(--grey-100);
  font-size: 14px;
  color: var(--grey-700);
}
.sp-cesta-pomoc a { color: var(--blue-ink); font-weight: 600; text-decoration: underline; }

@media (max-width: 600px) {
  .sp-cesta { padding: 18px 16px; }
  .sp-cesta-text b { font-size: 15px; }
}
