/* ================================================
   BURGOS SHOP — VOZILA (S3 tema)
   Ide uz shop-s3.css; koristi njegove --s3-* varijable.
   ================================================ */

/* ── dve opcije donacije ── */
.vz-opts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 20px;
  margin-bottom: 56px;
}
.vz-opt {
  position: relative;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 16px;
  background: rgba(255,255,255,.022);
  padding: 30px 28px 26px;
  overflow: hidden;
  transition: border-color .25s, background .25s, transform .25s;
}
.vz-opt::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--s3-grad-h);
  opacity: 0;
  transition: opacity .3s;
}
.vz-opt:hover {
  border-color: rgba(93,156,172,.3);
  background: rgba(93,156,172,.03);
  transform: translateY(-3px);
}
.vz-opt:hover::before { opacity: 1; }

/* premium varijanta (S/X) */
.vz-opt-top {
  border-color: rgba(139,123,200,.28);
  background:
    radial-gradient(ellipse at top right, rgba(139,123,200,.07), transparent 60%),
    rgba(255,255,255,.025);
}
.vz-opt-top::before { opacity: .55; }
.vz-opt-top:hover { border-color: rgba(139,123,200,.5); }

.vz-opt-num {
  align-self: flex-start;
  font-family: var(--fu);
  font-size: .62rem; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase;
  color: rgba(93,156,172,.75);
  border: 1px solid rgba(93,156,172,.22);
  border-radius: 99px;
  padding: 4px 12px;
  margin-bottom: 16px;
}
.vz-opt-top .vz-opt-num {
  color: rgba(139,123,200,.9);
  border-color: rgba(139,123,200,.3);
  background: rgba(139,123,200,.07);
}
.vz-opt-name {
  font-family: var(--fu);
  font-size: 1.32rem; font-weight: 700;
  letter-spacing: .07em; text-transform: uppercase;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 8px;
}
.vz-opt-desc {
  font-family: var(--fb);
  font-size: .84rem;
  line-height: 1.65;
  color: rgba(255,255,255,.36);
  margin-bottom: 20px;
}
.vz-opt-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,.06);
  margin-bottom: 18px;
}
.vz-opt-price b {
  font-family: var(--fd);
  font-size: 2.1rem;
  font-weight: 400;
  letter-spacing: .03em;
  background: var(--s3-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.vz-opt-price span {
  font-family: var(--fu);
  font-size: .66rem; font-weight: 600;
  letter-spacing: .15em; text-transform: uppercase;
  color: rgba(255,255,255,.28);
}

/* ── lestvica klasa ── */
.vz-ladder-wrap {
  overflow-x: auto;
  padding: 4px 0 10px;
  margin-bottom: 26px;
}
.vz-ladder {
  display: flex;
  align-items: flex-start;
  gap: 0;
  min-width: max-content;
  padding: 8px 2px;
}
.vz-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  flex: 0 0 auto;
}
.vz-cls {
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 13px;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.035);
  font-family: var(--fd);
  font-size: 1.5rem;
  color: rgba(255,255,255,.55);
  letter-spacing: .04em;
}
.vz-node-lbl {
  font-family: var(--fu);
  font-size: .6rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.25);
  white-space: nowrap;
}
/* stepenovanje: sto visa klasa, to jaca boja */
.vz-cls-a { border-color: rgba(93,156,172,.35); color: #7FB3C0; background: rgba(93,156,172,.07); }
.vz-cls-m { border-color: rgba(93,156,172,.28); color: rgba(255,255,255,.7); }
.vz-cls-h { border-color: rgba(139,123,200,.4);  color: #b3a6e0; background: rgba(139,123,200,.08); }
.vz-cls-s {
  border-color: transparent;
  background: var(--s3-grad);
  color: #fff;
  box-shadow: 0 0 20px rgba(93,156,172,.25);
}
.vz-cls-x {
  border-color: rgba(139,123,200,.55);
  background: rgba(139,123,200,.14);
  color: #cbbff0;
  box-shadow: 0 0 18px rgba(139,123,200,.18);
}

.vz-link {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 0 6px;
  margin-top: 12px;
}
.vz-link-price {
  font-family: var(--fb);
  font-size: .76rem;
  font-weight: 700;
  color: var(--s3-teal);
  white-space: nowrap;
}
.vz-link-line {
  width: 46px; height: 1px;
  background: linear-gradient(90deg, rgba(93,156,172,.15), rgba(93,156,172,.6), rgba(93,156,172,.15));
  position: relative;
}
.vz-link-line::after {
  content: '';
  position: absolute;
  right: -1px; top: -2.5px;
  border-left: 5px solid rgba(93,156,172,.6);
  border-top: 3px solid transparent;
  border-bottom: 3px solid transparent;
}
.vz-link-dogovor .vz-link-price { color: rgba(139,123,200,.75); font-size: .68rem; }

/* ── tabela nadogradnje ── */
/* Celije su nowrap pa tabela ima svoju minimalnu sirinu — na uskim
   ekranima skroluje unutar sebe umesto da gura celu stranicu. */
.vz-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.vz-table {
  width: 100%;
  min-width: 420px;
  border-collapse: collapse;
  font-family: var(--fb);
  font-size: .86rem;
}
.vz-table thead th {
  padding: 11px 14px;
  text-align: left;
  font-family: var(--fu);
  font-size: .66rem; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  color: rgba(93,156,172,.7);
  border-bottom: 1px solid rgba(93,156,172,.18);
  white-space: nowrap;
}
.vz-table tbody td {
  padding: 12px 14px;
  border-bottom: 1px solid rgba(255,255,255,.05);
  color: rgba(255,255,255,.55);
}
.vz-table tbody tr:last-child td { border-bottom: none; }
.vz-table tbody tr:hover td { background: rgba(93,156,172,.03); }
.vz-table .vz-t-cls {
  font-family: var(--fu);
  font-weight: 700;
  letter-spacing: .1em;
  color: #fff;
  width: 1%;
  white-space: nowrap;
}
.vz-table .vz-t-step { color: rgba(255,255,255,.4); white-space: nowrap; }
.vz-table .vz-t-total {
  font-weight: 700;
  color: var(--s3-teal);
  white-space: nowrap;
}
.vz-table tr.vz-t-hi td { background: rgba(139,123,200,.06); }
.vz-table tr.vz-t-hi .vz-t-total { color: #b3a6e0; }

/* ── bump ── */
.vz-bumps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 14px;
}
.vz-bump {
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 12px;
  background: rgba(255,255,255,.022);
  padding: 18px 20px;
}
.vz-bump-cls {
  font-family: var(--fu);
  font-size: .74rem; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  color: #fff;
  margin-bottom: 8px;
}
.vz-bump-lvl {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--fu);
  font-size: .64rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  border-radius: 99px;
  padding: 3px 11px;
  margin-bottom: 10px;
}
.vz-bump-none { background: rgba(255,255,255,.05); color: rgba(255,255,255,.3); }
.vz-bump-small { background: rgba(93,156,172,.12); color: var(--s3-teal); }
.vz-bump-good  { background: rgba(139,123,200,.16); color: #b3a6e0; }
.vz-bump-desc {
  font-family: var(--fb);
  font-size: .78rem;
  line-height: 1.6;
  color: rgba(255,255,255,.32);
}

/* ── podnaslov sekcije ── */
.vz-sec-title {
  font-family: var(--fu);
  font-size: 1.05rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: #fff;
  margin-bottom: 8px;
}
.vz-sec-desc {
  font-family: var(--fb);
  font-size: .86rem;
  line-height: 1.7;
  color: rgba(255,255,255,.36);
  margin-bottom: 22px;
  max-width: 700px;
}
.vz-sec { margin-bottom: 52px; }
.vz-sec:last-of-type { margin-bottom: 0; }

@media (max-width: 700px) {
  .vz-opts { grid-template-columns: 1fr; }
  .vz-table { font-size: .8rem; }
  .vz-table thead th, .vz-table tbody td { padding: 10px 9px; }
}
