/* ============================================================
   VOP — Všeobecné obchodní podmínky
   ============================================================ */

/* Hero */
.vop__hero {
  padding: 140px 0 64px;
  background: var(--cream);
  border-bottom: 1px solid rgba(10,8,6,.08);
}
.vop__hero-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}
.vop__hero .section-label {
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
}
.vop__hero-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 900;
  color: var(--ink);
  line-height: 1.1;
  margin: 0 0 16px;
}
.vop__hero-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}
.vop__hero-meta {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: .02em;
}
.vop__hero-cards {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: flex-start;
  padding-top: 8px;
}
.vop__hero-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  background: #fff;
  border: 1px solid rgba(10,8,6,.07);
  border-radius: 16px;
  padding: 20px 24px;
  min-width: 140px;
  box-shadow: 0 2px 12px rgba(10,8,6,.04);
  transition: box-shadow .25s, transform .25s;
}
.vop__hero-card:hover {
  box-shadow: 0 8px 28px rgba(10,8,6,.09);
  transform: translateY(-2px);
}
.vop__hero-card svg {
  width: 28px;
  height: 28px;
  color: var(--gold);
  flex-shrink: 0;
}
.vop__hero-card span {
  font-size: 12px;
  line-height: 1.5;
  color: var(--ink);
  font-family: 'Inter', sans-serif;
}

/* Layout */
.vop__layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  max-width: 1100px;
  margin: 0 auto;
  padding: 64px 24px 96px;
  gap: 64px;
  align-items: start;
}

/* Sidebar TOC */
.vop__toc {
  position: sticky;
  top: 96px;
  max-height: calc(100vh - 120px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-right: 8px;
}
.vop__toc::-webkit-scrollbar { display: none; }
.vop__toc-title {
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 12px;
}
.vop__toc nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.vop__toc-link {
  display: block;
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--muted);
  text-decoration: none;
  padding: 5px 8px;
  border-radius: 6px;
  transition: background .18s, color .18s;
  border-left: 2px solid transparent;
}
.vop__toc-link:hover,
.vop__toc-link.active {
  color: var(--ink);
  background: rgba(10,8,6,.04);
  border-left-color: var(--gold);
}
.vop__toc-back {
  display: inline-block;
  margin-top: 24px;
  font-size: 12px;
  color: var(--gold);
  text-decoration: none;
  font-weight: 500;
  letter-spacing: .03em;
  transition: opacity .2s;
}
.vop__toc-back:hover { opacity: .7; }

/* Main content */
.vop__main {
  min-width: 0;
}
.vop__sec {
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(10,8,6,.06);
  margin-bottom: 56px;
}
.vop__sec:last-of-type {
  border-bottom: none;
}
.vop__sec-title {
  display: flex;
  align-items: baseline;
  gap: 16px;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 24px;
  line-height: 1.2;
}
.vop__sec-num {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--gold);
  background: rgba(180,142,90,.1);
  padding: 3px 8px;
  border-radius: 20px;
  flex-shrink: 0;
  align-self: center;
}
.vop__sec p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--ink);
  margin: 0 0 14px;
}
.vop__sec a {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(180,142,90,.3);
  transition: border-color .2s;
}
.vop__sec a:hover { border-bottom-color: var(--gold); }

/* Definition list */
.vop__dl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 24px;
  background: rgba(10,8,6,.02);
  border: 1px solid rgba(10,8,6,.06);
  border-radius: 12px;
  padding: 24px;
}
.vop__dl dt {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
  padding-top: 2px;
}
.vop__dl dd {
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
}
.vop__dl a {
  color: var(--gold);
  text-decoration: none;
}

/* Lists */
.vop__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.vop__list li {
  display: flex;
  gap: 12px;
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--ink);
}
.vop__list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 10px;
}
.vop__list--ol { counter-reset: vop-ol; }
.vop__list--ol li::before {
  counter-increment: vop-ol;
  content: counter(vop-ol);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 3px;
}

/* Note boxes */
.vop__note {
  display: flex;
  gap: 12px;
  background: rgba(180,142,90,.07);
  border: 1px solid rgba(180,142,90,.25);
  border-left: 3px solid var(--gold);
  border-radius: 8px;
  padding: 16px 20px;
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--ink);
  margin-top: 20px;
}
.vop__note svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 1px;
}
.vop__note--warn {
  background: rgba(220,100,60,.06);
  border-color: rgba(220,100,60,.2);
  border-left-color: #dc643c;
}
.vop__note--warn svg {
  color: #dc643c;
}

/* Check-in times */
.vop__times {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.vop__time-box {
  flex: 1;
  min-width: 160px;
  background: #fff;
  border: 1px solid rgba(10,8,6,.08);
  border-radius: 14px;
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  box-shadow: 0 2px 10px rgba(10,8,6,.04);
}
.vop__time-label {
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  font-family: 'Inter', sans-serif;
}
.vop__time-val {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--ink);
}
.vop__time-note {
  font-size: 12px;
  color: var(--muted);
}

/* Two-column price breakdown */
.vop__two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  background: rgba(10,8,6,.02);
  border: 1px solid rgba(10,8,6,.06);
  border-radius: 12px;
  padding: 24px;
}
.vop__col-head {
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin: 0 0 12px;
  font-family: 'Inter', sans-serif;
}

/* Storno table */
.vop__storno {
  border: 1px solid rgba(10,8,6,.08);
  border-radius: 12px;
  overflow: hidden;
}
.vop__storno-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 14px 20px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink);
  border-bottom: 1px solid rgba(10,8,6,.06);
  transition: background .18s;
}
.vop__storno-row:last-child { border-bottom: none; }
.vop__storno-row:hover:not(.vop__storno-row--head) {
  background: rgba(10,8,6,.02);
}
.vop__storno-row--head {
  background: var(--ink);
  color: #fff;
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 600;
}
.vop__storno-row--head span:last-child {
  color: rgba(255,255,255,.7);
  font-size: 10px;
  letter-spacing: .1em;
}
.vop__storno-free {
  color: #3a9e6a;
  font-weight: 600;
}
.vop__storno-full {
  color: #c94040;
  font-weight: 600;
}

/* ADR cards */
.vop__adr {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 16px;
}
.vop__adr-card {
  background: #fff;
  border: 1px solid rgba(10,8,6,.08);
  border-radius: 12px;
  padding: 20px 22px;
  font-size: 13px;
  line-height: 1.65;
  color: var(--muted);
  box-shadow: 0 2px 8px rgba(10,8,6,.03);
}
.vop__adr-card p { margin: 0 0 4px; }
.vop__adr-name {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink) !important;
  margin-bottom: 6px !important;
}
.vop__adr-card a {
  display: inline-block;
  margin-top: 6px;
  font-size: 12px;
  color: var(--gold) !important;
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid rgba(180,142,90,.3) !important;
  transition: border-color .2s;
}
.vop__adr-card a:hover { border-bottom-color: var(--gold) !important; }

/* Footer CTA */
.vop__footer-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 24px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all .25s;
  cursor: pointer;
  border: none;
  font-family: 'Inter', sans-serif;
}
a.btn-gold,
button.btn-gold,
.btn.btn-gold {
  background: var(--gold);
  color: #fff !important;
  box-shadow: 0 4px 16px rgba(180,142,90,.3);
  border-bottom: none !important;
}
a.btn-gold:hover,
button.btn-gold:hover,
.btn.btn-gold:hover {
  background: #a07840;
  box-shadow: 0 6px 20px rgba(180,142,90,.4);
  transform: translateY(-1px);
}
a.btn-ghost,
button.btn-ghost,
.btn.btn-ghost {
  background: transparent;
  color: var(--ink) !important;
  border: 1.5px solid rgba(10,8,6,.18) !important;
}
a.btn-ghost:hover,
button.btn-ghost:hover,
.btn.btn-ghost:hover {
  background: rgba(10,8,6,.04);
  border-color: rgba(10,8,6,.3) !important;
}

/* ── RESPONSIVE ─────────────────────────────── */
@media (max-width: 900px) {
  .vop__layout {
    grid-template-columns: 1fr;
    padding: 40px 20px 72px;
    gap: 0;
  }
  .vop__toc {
    position: static;
    max-height: none;
    display: none; /* hidden on mobile — we rely on scroll */
  }
  .vop__hero-inner {
    flex-direction: column;
    gap: 32px;
  }
  .vop__hero-cards {
    width: 100%;
    justify-content: flex-start;
  }
  .vop__two-col {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 600px) {
  .vop__hero { padding: 120px 0 48px; }
  .vop__dl {
    grid-template-columns: 1fr;
    gap: 4px 0;
  }
  .vop__dl dt { margin-top: 10px; }
  .vop__storno-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }
  .vop__storno-row span:last-child {
    font-size: 13px;
    font-weight: 600;
  }
  .vop__times { flex-direction: column; }
  .vop__hero-cards { flex-direction: column; }
  .vop__hero-card { flex-direction: row; text-align: left; min-width: unset; width: 100%; }
}
