﻿/* ===============================================================
   Vietnam CK - Trip Planner v3.99 - style.css
   Zmeny: expand/collapse activity detail, hotel card per den
   =============================================================== */

/* -- RESET & VARIABLES ------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --brand:      #D4622A;
  --brand2:     #E8835A;
  --cream:      #F5F0E8;
  --cream2:     #EDE8DF;
  --cream3:     #E8E2D8;
  --ink:        #1A1612;
  --ink2:       #3D3530;
  --muted:      #7A6E66;
  --muted2:     #A89E96;
  --white:      #FFFFFF;
  --surface:    #FDFAF6;
  --border:     rgba(26,22,18,0.10);
  --border2:    rgba(26,22,18,0.06);
  --shadow:     0 2px 20px rgba(26,22,18,0.08);
  --shadow-lg:  0 8px 40px rgba(26,22,18,0.12);
  --r:          20px;
  --r-sm:       12px;
  --r-xs:       8px;
  --font-display: 'Inter', system-ui, sans-serif;
  --font-sans:    'Inter', system-ui, sans-serif;
  --header-h:   56px;
}

html { scroll-behavior: smooth; height: 100%; }
body {
  font-family: var(--font-sans);
  background:  var(--cream);
  color:       var(--ink);
  min-height:  100dvh;
  -webkit-font-smoothing: antialiased;
}

/* -- DARK MODE -------------------------------------------------- */
html.dark {
  --cream:    #0F0B08;
  --cream2:   #161008;
  --cream3:   #1E1510;
  --ink:      #F0EBE3;
  --ink2:     #C8BDB4;
  --muted:    #7A7168;
  --muted2:   #55504A;
  --white:    #1C1510;
  --surface:  #181310;
  --border:   rgba(240,235,227,0.10);
  --border2:  rgba(240,235,227,0.05);
  --shadow:   0 2px 20px rgba(0,0,0,0.3);
  --shadow-lg:0 8px 40px rgba(0,0,0,0.4);
}

/* -- MAIN HEADER ------------------------------------------------ */
.main-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 300;
  height: var(--header-h);
  background: rgba(245,240,232,.97);
  backdrop-filter: blur(16px) saturate(1.5);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 24px;
  transition: background .3s;
}
html.dark .main-header { background: rgba(15,11,8,.97); border-color: rgba(255,255,255,.07); }
.main-header-logo img { max-height: 34px; width: auto; display: block; }
.main-header-right { display: flex; align-items: center; gap: 8px; }
.header-icon-btn {
  width: 36px; height: 36px;
  background: transparent; border: 1px solid var(--border);
  border-radius: 10px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; transition: background .15s; color: var(--ink);
}
.header-icon-btn:hover { background: var(--cream2); }
html.dark .header-icon-btn { border-color: rgba(255,255,255,.1); color: var(--ink); }
html.dark .header-icon-btn:hover { background: rgba(255,255,255,.06); }
/* -- LANGUAGE SWITCHER ------------------------------------------ */
.lang-switcher {
  display: flex; align-items: center; gap: 2px;
  background: var(--cream2); border: 1px solid var(--border);
  border-radius: 10px; padding: 3px;
}
.lang-btn {
  font-size: 11px; font-weight: 700; letter-spacing: .03em;
  padding: 4px 8px; border-radius: 7px;
  color: var(--ink); text-decoration: none;
  transition: background .15s, color .15s;
  line-height: 1;
}
.lang-btn:hover { background: var(--cream3, #e8ddd0); }
.lang-btn.active {
  background: var(--orange, #D4622A); color: #fff;
  pointer-events: none;
}
html.dark .lang-switcher { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.1); }
html.dark .lang-btn { color: var(--ink); }
html.dark .lang-btn:hover { background: rgba(255,255,255,.1); }
html.dark .lang-btn.active { background: var(--orange, #D4622A); color: #fff; }
@media (max-width: 480px) { .lang-switcher { gap: 1px; padding: 2px; } }

body.has-header #landing  { top: var(--header-h); height: calc(100dvh - var(--header-h)); }
body.has-header #app-shell { padding-top: var(--header-h); }

/* -- LANDING SCREEN --------------------------------------------- */
#landing {
  position: fixed; inset: 0; z-index: 50;
  background: var(--cream);
  display: block;
  transition: opacity .4s ease, transform .4s ease;
  overflow-y: auto;
}
#landing.hide { opacity: 0; pointer-events: none; transform: scale(.98); }

.landing-inner {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 0;
  width: 100%;
  max-width: 1080px;
  min-height: 100dvh;
  align-items: center;
  padding: 80px 60px 40px;
  margin: 0 auto;
}
@media (max-width: 900px) {
  .landing-inner { grid-template-columns: 1fr; padding: 80px 20px 120px; gap: 28px; min-height: unset; }
}

.landing-left { padding-right: 56px; }
@media (max-width: 900px) { .landing-left { padding-right: 0; } }

.landing-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--cream2); border: 1px solid var(--border);
  border-radius: 40px; padding: 6px 14px;
  font-size: 12px; font-weight: 600; color: var(--muted);
  letter-spacing: .3px; text-transform: uppercase;
  margin-bottom: 24px;
}
.landing-eyebrow-dot { width: 6px; height: 6px; background: #2ECC8A; border-radius: 50%; box-shadow: 0 0 6px rgba(46,204,138,.6); }

.landing-h1 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.6vw, 46px);
  font-weight: 700; color: var(--ink);
  line-height: 1.12; letter-spacing: -.02em;
  margin-bottom: 10px;
}
.landing-h1 em { font-style: normal; color: var(--brand); }

.hero-name {
  display: block;
  font-size: clamp(52px, 7.5vw, 86px);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 2px;
  color: var(--ink);
  letter-spacing: -.03em;
}
.hero-tagline {
  display: block;
  font-size: clamp(22px, 3vw, 38px);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
}

/* ðŸŒ¸ Rotator â€“ "Ahoj, jsem tvÅ¯j [X] prÅ¯vodce." */
.landing-rotator {
  font-size: 22px; font-weight: 500; color: var(--muted);
  line-height: 1.5; margin-bottom: 14px;
}
.rotating-word {
  color: var(--brand);
  font-weight: 700;
  display: inline-block;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.landing-sub {
  font-size: 15px; font-weight: 400; color: var(--muted);
  line-height: 1.65; max-width: 440px; margin-bottom: 28px;
}

.landing-wizard-block {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  padding: 16px 20px 18px;
  box-shadow: var(--shadow-lg);
  margin-bottom: 20px;
}
html.dark .landing-wizard-block { background: #1C1510; border-color: rgba(255,255,255,.1); }
.landing-wizard-question { display: none; }

.landing-floating-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 10px;
}
.landing-capsule-grid { display: none; }

.landing-capsule {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 9px 16px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 40px;
  font-size: 13px; font-weight: 600; color: var(--ink2);
  cursor: pointer; transition: all .15s; white-space: nowrap;
  font-family: var(--font-sans);
  box-shadow: 0 2px 8px rgba(26,22,18,.08);
}
.landing-capsule:hover {
  border-color: var(--brand); color: var(--brand);
  background: rgba(212,98,42,.04); transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(212,98,42,.15);
}
.landing-capsule.selected {
  border-color: var(--brand); background: rgba(212,98,42,.08); color: var(--brand);
}
html.dark .landing-capsule { background: #241C16; border-color: rgba(255,255,255,.1); color: #C8BDB4; }
html.dark .landing-capsule:hover { border-color: var(--brand2); color: var(--brand2); }
html.dark .landing-capsule.selected { border-color: var(--brand); background: rgba(212,98,42,.18); color: var(--brand2); }

.landing-or-divider {
  display: flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 600; color: var(--muted2);
  text-transform: uppercase; letter-spacing: .4px;
  margin: 4px 0 12px;
}
.landing-or-divider::before,
.landing-or-divider::after { content: ''; flex: 1; height: 1px; background: var(--border2); }

.landing-input-row { display: block; }
.landing-input-wrap { position: relative; }

.landing-textarea {
  width: 100%; box-sizing: border-box;
  background: var(--cream2);
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm); color: var(--ink);
  font-family: var(--font-sans); font-size: 14px;
  padding: 12px 14px 46px; resize: none; outline: none;
  min-height: 62px; max-height: 90px;
  transition: border-color .2s;
}
.landing-textarea:focus { border-color: var(--brand2); background: var(--white); }
.landing-textarea::placeholder { color: var(--muted2); }
html.dark .landing-textarea { background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.08); color: var(--ink); }

.landing-go-btn {
  position: absolute; right: 8px; bottom: 8px;
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--brand); color: #fff;
  font-family: var(--font-sans); font-size: 13px; font-weight: 700;
  border: none; border-radius: 20px;
  padding: 8px 18px; cursor: pointer;
  opacity: 0; pointer-events: none;
  transition: opacity .2s, background .2s, transform .15s;
  white-space: nowrap;
}
.landing-go-btn.visible { opacity: 1; pointer-events: auto; }
.landing-go-btn:hover { background: var(--brand2); transform: translateY(-1px); }
.landing-go-btn svg { width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }

.landing-trust { display: flex; align-items: center; gap: 14px; margin-top: 20px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--muted); font-weight: 500; }
.trust-star { color: #F59E0B; font-size: 12px; }

.landing-right { position: relative; height: 480px; }
@media (max-width: 900px) { .landing-right { display: none; } }
.dest-blob { position: absolute; overflow: hidden; background: var(--cream2); transition: transform .6s cubic-bezier(.34,1.2,.64,1); }
.dest-blob:hover { transform: scale(1.04) rotate(0deg) !important; z-index: 10; }
.dest-blob img { width: 100%; height: 100%; object-fit: cover; display: block; }
.dest-blob-label { position: absolute; bottom: 12px; left: 12px; right: 12px; background: rgba(15,11,8,.55); backdrop-filter: blur(8px); border-radius: var(--r-xs); padding: 8px 10px; color: #fff; font-size: 12px; font-weight: 700; line-height: 1.3; }
.dest-blob-label small { font-weight: 400; opacity: .75; font-size: 10px; display: block; margin-top: 1px; }
.blob-1 { width: 230px; height: 270px; border-radius: 115px 115px 40px 40px; top: 0; right: 55px; transform: rotate(2deg); }
.blob-2 { width: 180px; height: 220px; border-radius: 40px; bottom: 30px; left: 0; transform: rotate(-3deg); }
.blob-3 { width: 195px; height: 155px; border-radius: 40px 40px 75px 75px; bottom: 20px; right: 20px; transform: rotate(1.5deg); }
.blob-4 { width: 135px; height: 155px; border-radius: 68px; top: 60px; left: 28px; transform: rotate(-2deg); }

/* -- APP SHELL -------------------------------------------------- */
#app-shell {
  display: flex;
  width: 100%;
  min-height: 100dvh;
  height: 100dvh;
  overflow: visible !important;
  opacity: 0;
  transition: opacity .5s ease .1s;
}
#app-shell.visible { opacity: 1; }

@media (max-width: 960px) {
  #app-shell { flex-direction: column; height: auto; padding-bottom: 64px; }
}

/* -- CHAT PANEL ------------------------------------------------- */
.panel-chat {
  flex: 0 0 350px;
  height: 100dvh;
  display: flex; flex-direction: column;
  background: var(--cream);
  border-right: 1px solid var(--border);
  position: sticky; top: 0; overflow: hidden;
}
@media (max-width: 960px) {
  .panel-chat { height: auto; min-height: 0; position: relative; display: none; }
  .panel-chat.tab-visible { display: flex; }
}

.chat-header {
  padding: 16px 18px 13px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
  display: flex; align-items: center; gap: 10px;
  background: rgba(245,240,232,.92);
  backdrop-filter: blur(12px);
}
html.dark .chat-header { background: rgba(15,11,8,.92); border-color: rgba(255,255,255,.06); }

.chat-logo {
  width: 36px; height: 36px;
  border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
  overflow: hidden;
  background: transparent;
}
.chat-title  { font-size: 13px; font-weight: 700; color: var(--ink); letter-spacing: -.2px; }
.chat-online { display: flex; align-items: center; gap: 5px; margin-top: 2px; }
.online-dot  { width: 6px; height: 6px; background: #2ECC8A; border-radius: 50%; box-shadow: 0 0 5px rgba(46,204,138,.7); }
.online-label { font-size: 11px; color: #2ECC8A; font-weight: 600; }

.ctx-chips { display: flex; flex-wrap: wrap; gap: 5px; margin-top: 8px; }
.ctx-chip {
  background: var(--cream2); border: 1px solid var(--border);
  border-radius: 6px; padding: 3px 8px;
  font-size: 10px; font-weight: 700; color: var(--muted);
}
html.dark .ctx-chip { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.08); color: #7A6E66; }

/* -- BOTTOM ZONE ------------------------------------------------ */
.chat-bottom-zone {
  flex-shrink: 0;
  display: flex; flex-direction: column;
  background: var(--cream);
  border-top: 1px solid var(--border);
}

.wizard-capsules-panel {
  background: transparent;
  padding: 12px 16px 4px;
  overflow: hidden;
  max-height: 320px;
  transition: max-height .3s ease, padding .3s ease, opacity .25s ease;
  opacity: 1;
}
.wizard-capsules-panel.collapsed {
  max-height: 0;
  padding-top: 0;
  padding-bottom: 0;
  opacity: 0;
  pointer-events: none;
}

.wizard-progress { display: flex; gap: 4px; margin-bottom: 8px; }
.wizard-progress-dot {
  flex: 1; height: 2px; border-radius: 2px;
  background: var(--border2);
  transition: background .25s;
}
.wizard-progress-dot.done   { background: var(--brand); }
.wizard-progress-dot.active { background: var(--brand2); }

/* Ã¢â€â‚¬Ã¢â€â‚¬ New wizard progress: numbered step indicator Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
.wizard-progress-wrap { width: 100%; }
.wizard-progress-bar {
  position: relative; height: 3px; margin-bottom: 10px; margin-top: 4px;
  background: var(--border2); border-radius: 3px; overflow: visible;
}
.wizard-progress-track { display: none; }
.wizard-progress-fill {
  position: absolute; top: 0; left: 0; height: 100%;
  background: linear-gradient(90deg, var(--brand), var(--brand2));
  border-radius: 3px; transition: width .45s ease;
  box-shadow: 0 0 6px rgba(212,98,42,.3);
}
.wizard-step-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0 4px;
}
.wzp-dot {
  width: 22px; height: 22px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 9px; font-weight: 800; letter-spacing: 0;
  border: 2px solid var(--border2);
  background: var(--cream); color: var(--muted);
  transition: all .25s ease; flex-shrink: 0;
  line-height: 1;
}
.wzp-dot.done {
  background: var(--brand); border-color: var(--brand); color: #fff;
}
.wzp-dot.active {
  background: #fff; border-color: var(--brand2); color: var(--brand2);
  box-shadow: 0 0 0 3px rgba(212,98,42,.15);
  font-size: 10px;
}
html.dark .wzp-dot { background: #1E1510; border-color: rgba(255,255,255,.15); }
html.dark .wzp-dot.done { background: var(--brand); border-color: var(--brand); }
html.dark .wzp-dot.active { background: #2A1E16; border-color: var(--brand2); }

.wizard-question-label {
  font-size: 10px; font-weight: 700; color: var(--muted);
  margin-bottom: 8px; display: flex; align-items: center; gap: 6px;
  text-transform: uppercase; letter-spacing: .4px;
}
html.dark .wizard-question-label { color: var(--muted2); }

.capsule-grid { display: flex; flex-wrap: wrap; gap: 6px; }

.capsule {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 6px 12px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 40px;
  font-size: 12px; font-weight: 600; color: var(--ink2);
  cursor: pointer; transition: all .15s; white-space: nowrap;
  font-family: var(--font-sans);
  line-height: 1;
  box-shadow: 0 1px 4px rgba(26,22,18,.06);
}
.capsule:hover {
  border-color: var(--brand); color: var(--brand);
  background: rgba(212,98,42,.04);
  transform: translateY(-1px);
  box-shadow: 0 3px 10px rgba(212,98,42,.12);
}
.capsule.selected {
  border-color: var(--brand);
  background: rgba(212,98,42,.08);
  color: var(--brand);
}
.capsule:disabled { cursor: default; pointer-events: none; }

/* Multi-select confirm button */
.capsule-confirm-btn {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 8px;
  padding: 8px 18px;
  background: var(--brand);
  color: #fff;
  border: none;
  border-radius: 40px;
  font-size: 13px; font-weight: 700;
  cursor: pointer;
  font-family: var(--font-sans);
  transition: background .15s, transform .12s;
  box-shadow: 0 2px 8px rgba(212,98,42,.25);
}
.capsule-confirm-btn:hover { background: var(--brand2); transform: translateY(-1px); }
.capsule-confirm-btn:disabled { opacity: .5; cursor: default; pointer-events: none; }

/* Multi-select hint label */
.capsule-multi-hint {
  font-size: 9px; font-weight: 500; color: var(--muted2);
  margin-left: 6px; text-transform: lowercase; letter-spacing: 0;
}

/* Back button in wizard */
.wizard-back-btn {
  display: inline-flex; align-items: center; gap: 4px;
  margin-top: 10px;
  padding: 5px 12px;
  background: transparent;
  color: var(--muted2);
  border: 1px solid var(--border);
  border-radius: 40px;
  font-size: 12px; font-weight: 500;
  cursor: pointer;
  font-family: var(--font-sans);
  transition: color .15s, border-color .15s;
}
.wizard-back-btn:hover { color: var(--brand); border-color: var(--brand); }
html.dark .wizard-back-btn { color: rgba(255,255,255,.4); border-color: rgba(255,255,255,.12); }
html.dark .wizard-back-btn:hover { color: var(--brand2); border-color: var(--brand2); }

/* Multi-select grid spacing */
.capsule-grid.multiselect { gap: 8px; }
html.dark .capsule { background: #241C16; border-color: rgba(255,255,255,.10); color: #C8BDB4; }
html.dark .capsule:hover { border-color: var(--brand2); color: var(--brand2); background: rgba(212,98,42,.12); }
html.dark .capsule.selected { border-color: var(--brand); background: rgba(212,98,42,.18); color: var(--brand2); }

.chat-fallback-hint {
  font-size: 10px; color: var(--muted2);
  margin-top: 6px;
  font-style: italic;
  display: none;
}

/* -- CHAT MESSAGES ---------------------------------------------- */
.chat-messages {
  flex: 1; overflow-y: auto;
  padding: 16px 16px;
  display: flex; flex-direction: column; gap: 9px;
  scrollbar-width: thin;
  scrollbar-color: var(--cream3) transparent;
  background: var(--cream);
}
html.dark .chat-messages { background: var(--cream); scrollbar-color: #2A231E transparent; }
.chat-messages::-webkit-scrollbar { width: 3px; }
.chat-messages::-webkit-scrollbar-thumb { background: var(--cream3); border-radius: 2px; }
html.dark .chat-messages::-webkit-scrollbar-thumb { background: #2A231E; }

.msg { max-width: 88%; padding: 10px 14px; font-size: 13.5px; line-height: 1.65; word-break: break-word; }

.msg.bot {
  align-self: flex-start;
  background: var(--white);
  color: var(--ink);
  border-radius: 4px 18px 18px 18px;
  border: 1px solid var(--border);
  box-shadow: 0 1px 6px rgba(26,22,18,.06);
  animation: msgIn .25s cubic-bezier(.34,1.4,.64,1) both;
}
html.dark .msg.bot { background: #1E1712; color: #D8CFC6; border-color: rgba(255,255,255,.06); }

.msg.user {
  align-self: flex-end;
  background: linear-gradient(135deg, var(--brand2), var(--brand));
  color: white;
  border-radius: 18px 4px 18px 18px;
  box-shadow: 0 4px 16px rgba(212,98,42,.3);
  animation: msgIn .2s cubic-bezier(.34,1.4,.64,1) both;
}

.wizard-q-msg {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 4px 0 !important;
  font-size: 11px !important;
  color: var(--muted2) !important;
  font-style: italic;
}

.msg strong { font-weight: 700; }
.msg a { color: var(--brand); text-decoration: underline; }
.msg p { margin: 0 0 6px; }
.msg p:last-child { margin: 0; }

@keyframes msgIn { from { opacity: 0; transform: translateY(8px) } to { opacity: 1; transform: none } }

.typing-dots span { display: inline-block; width: 6px; height: 6px; background: var(--cream3); border-radius: 50%; margin: 0 2px; animation: tdot 1.2s ease-in-out infinite; }
html.dark .typing-dots span { background: #4A4039; }
.typing-dots span:nth-child(2) { animation-delay: .2s; }
.typing-dots span:nth-child(3) { animation-delay: .4s; }
@keyframes tdot { 0%,60%,100% { transform: translateY(0); opacity: .35 } 30% { transform: translateY(-4px); opacity: 1 } }

.wa-link {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  padding: 6px 14px; margin: 2px 14px 10px;
  background: rgba(46,204,138,.06);
  border: 1px solid rgba(46,204,138,.18);
  border-radius: 10px; color: #16a34a;
  font-size: 11px; font-weight: 600; text-decoration: none;
  transition: background .2s; flex-shrink: 0;
  opacity: .75;
}
.wa-link:hover { background: rgba(46,204,138,.12); opacity: 1; }
html.dark .wa-link { color: #2ECC8A; }

/* -- UNDERSTANDING FULLSCREEN ----------------------------------- */
.understanding-fullscreen {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 20px;
  min-height: 0;
  overflow: hidden;
}
.understanding-inner {
  text-align: center;
  width: 100%;
  max-width: 380px;
}

.understanding-img-wrap {
  width: 100%;
  max-width: 340px;
  height: 280px;
  margin: 0 auto 20px;
  border-radius: 24px 24px 80px 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(26,22,18,.18);
  position: relative;
}
.understanding-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(26,22,18,.45));
  pointer-events: none;
}
.understanding-img-wrap .slide {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0;
  transition: opacity 1.2s ease;
  transform: scale(1.04);
  transition: opacity 1.2s ease, transform 6s ease;
}
.understanding-img-wrap .slide.active {
  opacity: 1;
  transform: scale(1);
}

.understanding-caption {
  position: absolute;
  bottom: 14px; left: 16px; right: 16px;
  z-index: 2;
  text-align: left;
}
.understanding-caption-name {
  font-family: var(--font-display);
  font-size: 17px; font-weight: 700;
  color: #fff;
  text-shadow: 0 1px 8px rgba(0,0,0,.5);
  margin-bottom: 2px;
}
.understanding-caption-tag {
  font-size: 11px; font-weight: 600;
  color: rgba(255,255,255,.75);
  text-shadow: 0 1px 4px rgba(0,0,0,.4);
}

.understanding-label {
  font-family: var(--font-display);
  font-size: 20px; font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
  letter-spacing: -.01em;
  line-height: 1.3;
}

.understanding-hint {
  font-size: 12px; color: var(--muted); line-height: 1.6;
  margin-bottom: 16px;
}

.understanding-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 14px;
}
.understanding-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--border);
  transition: background .3s, width .3s;
}
.understanding-dot.active {
  background: var(--brand);
  width: 18px;
  border-radius: 3px;
}

.understanding-facts {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 14px;
}
.understanding-fact {
  background: var(--cream2);
  border-radius: 20px;
  padding: 5px 12px;
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
}

.understanding-placeholder { display: none; }

/* -- CHAT INPUT ------------------------------------------------- */
.chat-input-area {
  padding: 10px 14px 6px;
  flex-shrink: 0;
  background: var(--cream);
}

.chat-rating-bar {
  display: flex; align-items: center; gap: 5px; flex-wrap: wrap;
  padding: 4px 16px 6px;
  font-size: 11px; color: var(--muted2);
  flex-shrink: 0;
}
.chat-rating-stars { color: #F59E0B; font-size: 11px; letter-spacing: 1px; }
.chat-rating-text  { font-weight: 500; }
.chat-rating-sep   { opacity: .4; }

.chat-input-row { display: flex; gap: 8px; align-items: flex-end; }

.chat-textarea {
  flex: 1;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  color: var(--ink);
  font-size: 14px; font-family: var(--font-sans);
  padding: 14px 16px;
  resize: none; outline: none;
  min-height: 62px;
  max-height: 130px;
  line-height: 1.55;
  transition: border-color .2s, box-shadow .2s;
  box-shadow: 0 1px 4px rgba(26,22,18,.05);
}
.chat-textarea:focus {
  border-color: var(--brand2);
  box-shadow: 0 0 0 3px rgba(212,98,42,.08), 0 1px 4px rgba(26,22,18,.05);
}
.chat-textarea::placeholder { color: var(--muted2); }
html.dark .chat-textarea { background: #1C1510; border-color: rgba(255,255,255,.09); color: var(--ink); }
html.dark .chat-textarea::placeholder { color: #55504A; }

.send-btn {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--brand2), var(--brand));
  border: none; border-radius: var(--r-sm); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: all .2s;
  box-shadow: 0 3px 10px rgba(212,98,42,.35);
  align-self: flex-end;
}
.send-btn:hover { transform: translateY(-1px); box-shadow: 0 5px 16px rgba(212,98,42,.45); }
.send-btn:disabled { background: var(--cream3); box-shadow: none; transform: none; }
html.dark .send-btn:disabled { background: #2A231E; }
.send-btn svg { width: 16px; height: 16px; fill: white; }

/* -- ITINERARY PANEL -------------------------------------------- */
.panel-itin {
  flex: 1 1 auto;
  min-width: 0;
  margin-right: 40vw !important;
  height: 100dvh;
  overflow-y: auto !important;
  background: var(--cream);
  display: flex; flex-direction: column;
  border-right: 1px solid var(--border);
  scrollbar-width: thin; scrollbar-color: var(--cream2) transparent;
}
@media (max-width: 960px) {
  .panel-itin { height: auto; overflow: visible; display: none; border-right: none; }
  .panel-itin.tab-visible { display: flex; }
}

/* -- MAP PANEL -------------------------------------------------- */
.panel-map {
  background: var(--cream2);
  display: flex; flex-direction: column;
  overflow: hidden !important;
  position: fixed !important;
  right: 0;
  top: 0;
  height: 100vh !important;
  width: 40vw !important;
  z-index: 100 !important;
}
@media (min-width: 961px) {
  body.has-header .panel-map {
    top: var(--header-h) !important;
    height: calc(100dvh - var(--header-h)) !important;
  }
}
@media (max-width: 1200px) {
  .panel-map { width: 45%; }
}
@media (max-width: 960px) {
  .panel-map { display: none; }
  .panel-map.tab-visible { display: flex !important; height: calc(100dvh - 64px) !important; position: fixed !important; top: 0 !important; left: 0 !important; right: 0 !important; bottom: 64px !important; width: 100% !important; z-index: 10 !important; }
}

#map-canvas {
  flex: 1;
  min-height: 0;
  width: 100%;
  height: 100% !important;
  background: var(--cream2);
  font-size: 12px; color: var(--muted2); font-style: italic;
  transition: opacity .3s;
  overflow: visible !important;
}
html.dark #map-canvas { background: #141008; }
@media (max-width: 960px) { #map-canvas { height: 100% !important; min-height: 0 !important; flex: 1 !important; } }

.itin-header {
  padding: 20px 28px 14px;
  background: rgba(245,240,232,.92);
  backdrop-filter: blur(16px) saturate(1.5);
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 20;
  flex-shrink: 0;
  transition: background .3s;
}
.itin-header:empty { padding: 0; border-bottom-color: transparent; }
html.dark .itin-header { background: rgba(15,11,8,.92); border-color: rgba(255,255,255,.05); }
@media (max-width: 960px) { .itin-header { padding: 14px 18px; position: relative; } }

.itin-body { padding: 0 28px 48px; }
@media (max-width: 960px) { .itin-body { padding: 0 16px 32px; } }

/* Day cards */
.day-card {
  background: var(--white); border-radius: var(--r);
  margin-bottom: 14px; overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 2px 10px rgba(26,22,18,.05);
  transition: box-shadow .25s, transform .25s;
}
.day-card:hover { box-shadow: 0 6px 28px rgba(26,22,18,.09); transform: translateY(-1px); }
html.dark .day-card { background: #1C1510; border-color: rgba(255,255,255,.06); }

.day-header {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 18px; cursor: pointer;
  border-bottom: 1px solid transparent;
  transition: background .15s;
  touch-action: manipulation; /* mobile: no double-tap delay, immediate click */
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}
.day-header:hover { background: rgba(212,98,42,.03); }
.day-badge {
  width: 34px; height: 34px;
  background: linear-gradient(135deg, var(--brand2), var(--brand));
  color: white; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(212,98,42,.35);
}
.day-city  { font-size: 10px; font-weight: 700; color: var(--muted2); text-transform: uppercase; letter-spacing: .5px; }
.day-title { font-size: 14px; font-weight: 700; color: var(--ink); line-height: 1.3; }
html.dark .day-title { color: #E8E0D6; }
.day-date   { font-size: 11px; color: var(--muted2); margin-left: auto; flex-shrink: 0; }
.day-toggle { background: var(--brand); border-radius: 6px; padding: 2px 6px; margin-left: 8px; color: #ffffff; font-size: 16px; transition: transform .25s; flex-shrink: 0; }
.day-toggle.open { transform: rotate(180deg); }
.day-slots  { padding: 6px 18px 14px; }

.slot-item { display: flex; gap: 12px; padding: 10px 0; position: relative; }
.slot-item:not(:last-child)::before { content: ""; position: absolute; left: 60px; top: 38px; bottom: -10px; width: 1px; background: linear-gradient(to bottom, var(--border) 60%, transparent); }
.slot-time         { flex-shrink: 0; width: 46px; text-align: right; padding-top: 2px; }
.slot-time-label   { font-size: 11px; font-weight: 700; color: var(--muted2); line-height: 1; }
.slot-time-slot    { font-size: 8px; font-weight: 600; color: var(--muted2); text-transform: uppercase; letter-spacing: .3px; margin-top: 2px; opacity: .7; }
.slot-icon         { width: 28px; height: 28px; border-radius: 8px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 14px; margin-top: 1px; }
.slot-content      { flex: 1; min-width: 0; }
.slot-activity     { font-size: 13.5px; font-weight: 600; color: var(--ink); line-height: 1.4; }
html.dark .slot-activity { color: #D8CFC6; }
.slot-place        { font-size: 11px; margin-top: 3px; }
.slot-place a      { color: var(--muted2); text-decoration: none; display: inline-flex; align-items: center; gap: 3px; transition: color .15s; }
.slot-place a:hover { color: var(--brand); }
.slot-tag          { display: inline-flex; align-items: center; gap: 3px; font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: .3px; padding: 2px 7px; border-radius: 5px; margin-top: 5px; }
.slot-locked       { background: var(--cream2); border: 1.5px dashed var(--border); border-radius: 10px; padding: 8px 12px; font-size: 12px; color: var(--muted2); font-style: italic; display: flex; align-items: center; gap: 7px; }

.stats-bar  { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 6px; }
.stat-item  { display: flex; align-items: center; gap: 5px; font-size: 12px; color: var(--muted); }
.tier-badge { display: inline-flex; align-items: center; gap: 4px; font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .4px; padding: 3px 9px; border-radius: 6px; }
.tier-lead  { background: #fef3c7; color: #92400e; }
.tier-client { background: #dcfce7; color: #14532d; }
html.dark .tier-lead   { background: #451a03; color: #fdba74; }
html.dark .tier-client { background: #052e16; color: #4ade80; }

/* Category colors */
.cat-gastronomy { background: #fff3ed; color: #c2410c; }
.cat-transfer   { background: #eff6ff; color: #1d4ed8; }
.cat-culture    { background: #fdf4ff; color: #7e22ce; }
.cat-adventure  { background: #f0fdf4; color: #15803d; }
.cat-diving     { background: #ecfeff; color: #0e7490; }
.cat-beaches    { background: #fef9c3; color: #92400e; }
.cat-history    { background: #fdf2f8; color: #9d174d; }
.cat-relaxation { background: #f0f9ff; color: #075985; }
.cat-nightlife  { background: #fafafa; color: #292524; }
.cat-default    { background: var(--cream2); color: var(--muted); }
.icon-gastronomy { background: #fff3ed; }
.icon-transfer   { background: #eff6ff; }
.icon-culture    { background: #fdf4ff; }
.icon-adventure  { background: #f0fdf4; }
.icon-default    { background: var(--cream2); }
html.dark .cat-gastronomy { background: #431407; color: #fb923c; }
html.dark .cat-transfer   { background: #0c1a3a; color: #60a5fa; }
html.dark .cat-culture    { background: #2e1065; color: #c084fc; }
html.dark .cat-adventure  { background: #052e16; color: #4ade80; }
html.dark .cat-diving     { background: #083344; color: #22d3ee; }
html.dark .cat-beaches    { background: #451a03; color: #fbbf24; }
html.dark .cat-history    { background: #4a044e; color: #e879f9; }
html.dark .cat-relaxation { background: #0c2040; color: #38bdf8; }
html.dark .cat-default    { background: #1E1712; color: #7A6E66; }
html.dark .icon-gastronomy { background: #431407; }
html.dark .icon-transfer   { background: #0c1a3a; }
html.dark .icon-culture    { background: #2e1065; }
html.dark .icon-adventure  { background: #052e16; }
html.dark .icon-default    { background: #1E1712; }

/* -- EMPTY / ERROR STATES --------------------------------------- */
.empty-state { display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 48px 28px; min-height: 320px; }
.empty-icon  { width: 68px; height: 68px; background: var(--cream2); border-radius: 20px; display: flex; align-items: center; justify-content: center; font-size: 30px; margin-bottom: 20px; animation: float 3s ease-in-out infinite; }
.error-state { display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: 100dvh; text-align: center; padding: 40px; background: var(--cream); }
@keyframes float { 0%,100% { transform: translateY(0) } 50% { transform: translateY(-6px) } }

/* -- TRANSITIONS ------------------------------------------------ */
.fade-in  { animation: fadeIn .4s ease both; }
.slide-up { animation: slideUp .35s cubic-bezier(.34,1.4,.64,1) both; }
@keyframes fadeIn  { from { opacity: 0 } to { opacity: 1 } }
@keyframes slideUp { from { opacity: 0; transform: translateY(14px) } to { opacity: 1; transform: none } }
#itin-header, #itin-body { transition: opacity .28s ease; }
#itin-header.itin-updating, #itin-body.itin-updating { opacity: 0; pointer-events: none; }

/* -- MOBILE TAB BAR --------------------------------------------- */
.mobile-tabbar {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 100;
  background: rgba(245,240,232,.97);
  border-top: 1px solid var(--border);
  height: 64px;
  backdrop-filter: blur(14px);
}
html.dark .mobile-tabbar { background: rgba(15,11,8,.97); border-top-color: rgba(255,255,255,.07); }
.mobile-tabbar-inner { display: flex; height: 100%; }
.tab-btn {
  flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px;
  border: none; background: transparent; color: var(--muted2);
  font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: .4px;
  cursor: pointer; transition: color .2s;
  font-family: var(--font-sans);
  padding-bottom: env(safe-area-inset-bottom, 0px);
}
.tab-btn .tab-icon { font-size: 20px; line-height: 1; transition: transform .2s; }
.tab-btn.active { color: var(--brand); }
.tab-btn.active .tab-icon { transform: translateY(-2px); }
.tab-btn:active .tab-icon { transform: scale(.88); }

@media (max-width: 960px) {
  /* Tabbar se zobrazí POUZE když je app-shell aktivní (po dokončení wizardu) */
  #app-shell.visible ~ .mobile-tabbar { display: block; }
  #app-shell { padding-bottom: 64px; }
  .panel-chat, .panel-itin { position: fixed !important; top: 0 !important; left: 0 !important; right: 0 !important; bottom: 64px !important; width: 100% !important; height: auto !important; max-width: none !important; }
  .panel-chat { display: none; }
  .panel-itin { overflow-y: auto; display: none; }
  .panel-chat.tab-visible, .panel-itin.tab-visible { display: flex; }

  .chat-header-web-link { display: none; }}

/* -- POPTAVKA MODAL --------------------------------------------- */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(26,22,18,.5);
  z-index: 1100; display: flex; align-items: flex-end; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity .25s;
  backdrop-filter: blur(4px);
}
.modal-overlay.open { opacity: 1; pointer-events: auto; }
@media (min-width: 600px) { .modal-overlay { align-items: center; } }
.modal-box {
  background: var(--white); border-radius: var(--r) var(--r) 0 0;
  padding: 28px 24px 32px; width: 100%; max-width: 500px;
  max-height: 90dvh; overflow-y: auto; position: relative;
  transform: translateY(40px);
  transition: transform .3s cubic-bezier(.34,1.2,.64,1);
  box-shadow: 0 -8px 48px rgba(0,0,0,.15);
}
@media (min-width: 600px) { .modal-box { border-radius: var(--r); transform: scale(.96) translateY(10px); } }
.modal-overlay.open .modal-box { transform: translateY(0) scale(1); }
html.dark .modal-box { background: #1C1510; }
.modal-close {
  position: absolute; top: 14px; right: 16px;
  background: var(--cream2); border: none; border-radius: 50%;
  width: 30px; height: 30px; cursor: pointer; font-size: 15px;
  display: flex; align-items: center; justify-content: center;
  transition: background .15s; color: var(--muted);
  z-index: 10; /* nad animovaným obsahem success stavu */
}
.modal-close:hover { background: var(--cream); }
.recap-row { display: flex; align-items: center; gap: 12px; padding: 10px 14px; background: var(--cream); border-radius: var(--r-sm); margin-bottom: 7px; }
html.dark .recap-row { background: #241C16; }
.recap-label { font-size: 10px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .4px; margin-bottom: 2px; }
.recap-value { font-size: 14px; font-weight: 700; color: var(--ink); }
.poptavka-btn { width: 100%; padding: 15px; background: var(--ink); color: var(--cream); font-size: 14px; font-weight: 700; border: none; border-radius: var(--r-sm); cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 8px; transition: all .2s; font-family: var(--font-sans); margin-top: 8px; }
.poptavka-btn:hover { background: var(--ink2); transform: translateY(-1px); }
.poptavka-btn:disabled { background: var(--muted2); cursor: not-allowed; transform: none; }
.poptavka-field { width: 100%; padding: 11px 14px; border: 1.5px solid var(--border); border-radius: var(--r-xs); font-size: 13px; font-family: var(--font-sans); outline: none; background: var(--white); color: var(--ink); transition: border-color .2s; box-sizing: border-box; }
.poptavka-field:focus { border-color: var(--brand); }
html.dark .poptavka-field { background: #241C16; border-color: rgba(255,255,255,.1); color: var(--ink); }
.poptavka-success { text-align: center; padding: 22px 0 6px; }
@keyframes popIn { from { opacity: 0; transform: scale(.4) } to { opacity: 1; transform: scale(1) } }

/* -- LIVE BUILDING CARD ----------------------------------------- */
.live-building-card {
  background: var(--white);
  border-radius: var(--r);
  border: 1px solid var(--border);
  padding: 18px 20px 20px;
  margin-bottom: 14px;
  box-shadow: 0 2px 10px rgba(26,22,18,.05);
}
.live-building-pulse {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; color: var(--muted);
  margin-bottom: 4px;
}
.live-dot {
  width: 8px; height: 8px;
  background: var(--brand);
  border-radius: 50%;
  animation: livePulse 1.4s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes livePulse {
  0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 0 0 rgba(212,98,42,.4); }
  50%       { opacity: .7; transform: scale(1.15); box-shadow: 0 0 0 5px rgba(212,98,42,0); }
}
.skeleton-days { margin-top: 16px; display: flex; flex-direction: column; gap: 10px; }
.skeleton-day {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 14px;
  background: var(--cream);
  border-radius: var(--r-sm);
  animation: skelFade .8s ease-in-out infinite alternate;
}
@keyframes skelFade { from { opacity: .5; } to { opacity: 1; } }
.skel { background: var(--cream2); border-radius: 6px; }
.skel-badge { width: 32px; height: 32px; border-radius: 9px; flex-shrink: 0; }
.skel-line  { height: 10px; border-radius: 5px; }
html.dark .live-building-card { background: #1C1510; }
html.dark .skeleton-day { background: #241C16; }
html.dark .skel { background: #2E231A; }

/* -- PRICING CARD ----------------------------------------------- */
.pricing-card {
  margin-top: 20px;
  background: var(--white);
  border-radius: var(--r);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(26,22,18,.08);
}
.pricing-header { padding: 20px; }
html.dark .pricing-card { background: #1C1510; border-color: rgba(255,255,255,.06); }

.pricing-breakdown {
  background: var(--cream);
  border-radius: var(--r-sm);
  padding: 14px;
  margin-bottom: 4px;
}
html.dark .pricing-breakdown { background: #241C16; }

.pricing-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 7px 0;
  border-bottom: 1px solid var(--border2);
  font-size: 12px; color: var(--muted);
  gap: 12px;
}
.pricing-row:last-child { border-bottom: none; }
.pricing-row strong { font-size: 12px; font-weight: 700; color: var(--ink); white-space: nowrap; }
.pricing-row-total {
  padding-top: 10px;
  font-size: 13px; font-weight: 700; color: var(--ink);
  border-top: 2px solid var(--border);
}
.pricing-row-total strong { font-size: 15px; color: var(--ink); }

/* Ã¢â€â‚¬Ã¢â€â‚¬ SLOT EXPAND BUTTON (activity detail) Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
.slot-expand-btn {
  background: var(--brand);
  border: 1px solid var(--brand);
  border-radius: 6px;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: #ffffff;
  cursor: pointer;
  flex-shrink: 0;
  transition: all 0.2s ease;
  line-height: 1;
  padding: 0;
  margin-top: 1px;
}
.slot-expand-btn:hover {
  background: var(--cream2);
  border-color: var(--brand);
  color: var(--brand);
}
.slot-expand-btn.open {
  transform: rotate(180deg);
  background: var(--cream2);
  border-color: var(--brand);
  color: var(--brand);
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ SLOT DETAIL PANEL Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢��€â‚¬Ã¢��€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
.slot-detail-panel {
  animation: detailSlideDown 0.2s ease;
}
@keyframes detailSlideDown {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ SLOT HAS DETAIL Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
.slot-has-detail:hover {
  background: rgba(212,98,42,.02);
  border-radius: 8px;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ HOTEL CARD Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
.hotel-card {
  margin: 4px 0 8px !important;
  border-radius: 10px;
}
.hotel-card--locked {
  opacity: 0.75;
}

@media print {
  #landing, .panel-chat, .wa-link, .mobile-tabbar, #theme-btn { display: none !important; }
  #app-shell { grid-template-columns: 1fr; height: auto; overflow: visible; opacity: 1; }
  .panel-itin { height: auto; overflow: visible; display: flex !important; }
  .itin-header { position: static; backdrop-filter: none; }
  .day-slots { display: block !important; }
  .day-card { break-inside: avoid; box-shadow: none; border: 1px solid var(--border); border-radius: 10px; }
  #map-canvas { height: 220px; break-inside: avoid; margin: 0 0 14px; border-radius: 10px; }
}


/* ================================================================
   LANDING PAGE â€” MARKETING SECTIONS (scrollable below hero)
   ================================================================ */

.lp-section   { width: 100%; padding: 72px 60px; }
.lp-container { max-width: 1080px; margin: 0 auto; }
@media (max-width: 900px) { .lp-section { padding: 52px 20px; } }

.lp-eyebrow {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 11px; font-weight: 700; color: var(--brand);
  text-transform: uppercase; letter-spacing: .6px; margin-bottom: 12px;
}
.lp-section-title {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800; color: var(--ink);
  line-height: 1.18; letter-spacing: -.02em; margin-bottom: 12px;
}
.lp-cta-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--brand2), var(--brand));
  color: #fff; font-family: var(--font-sans); font-size: 14px; font-weight: 700;
  padding: 13px 26px; border-radius: var(--r-sm);
  text-decoration: none; border: none; cursor: pointer;
  transition: transform .15s, box-shadow .15s;
  box-shadow: 0 4px 16px rgba(212,98,42,.35);
}
.lp-cta-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(212,98,42,.5); }
.lp-cta-btn-white {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; color: var(--brand);
  font-family: var(--font-sans); font-size: 14px; font-weight: 700;
  padding: 13px 26px; border-radius: var(--r-sm);
  text-decoration: none; border: none; cursor: pointer;
  transition: transform .15s, box-shadow .15s;
  box-shadow: 0 4px 20px rgba(0,0,0,.15);
}
.lp-cta-btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,.22); }

/* â”€â”€ 1. Rychlost â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â���€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.lp-speed { background: var(--ink); padding: 72px 60px; }
html.dark .lp-speed { background: #1C1510; }
@media (max-width: 900px) { .lp-speed { padding: 52px 20px; } }

.lp-speed-inner { display: grid; grid-template-columns: 1fr auto; gap: 64px; align-items: center; }
@media (max-width: 760px) { .lp-speed-inner { grid-template-columns: 1fr; gap: 36px; } }

.lp-speed .lp-eyebrow { color: var(--brand2); }
.lp-speed .lp-section-title { color: #fff; margin-bottom: 24px; }

.lp-bullets { list-style: none; padding: 0; margin: 0 0 32px; display: flex; flex-direction: column; gap: 14px; }
.lp-bullets li { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; color: rgba(255,255,255,.82); line-height: 1.55; }
.lp-bullets li::before { content: '\2714'; color: #2ECC8A; font-weight: 800; font-size: 14px; flex-shrink: 0; margin-top: 2px; }
.lp-bullets li strong { color: #fff; }

.lp-speed-stats { display: flex; flex-direction: column; gap: 14px; min-width: 160px; }
@media (max-width: 760px) { .lp-speed-stats { flex-direction: row; flex-wrap: wrap; gap: 12px; } }

.lp-stat-box { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: 16px; padding: 22px 28px; text-align: center; min-width: 148px; }
.lp-stat-num { font-family: var(--font-display); font-size: 38px; font-weight: 900; color: #fff; line-height: 1; letter-spacing: -.03em; margin-bottom: 6px; }
.lp-stat-label { font-size: 11px; color: rgba(255,255,255,.5); font-weight: 600; text-transform: uppercase; letter-spacing: .4px; }

/* â”€â”€ 2. PilÃ­Å™e â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.lp-pillars { background: var(--surface); border-top: 1px solid var(--border); }
html.dark .lp-pillars { background: #141008; border-color: rgba(255,255,255,.05); }
.lp-pillars-head { margin-bottom: 44px; }
.lp-pillars-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
@media (max-width: 760px) { .lp-pillars-grid { grid-template-columns: 1fr; } }

.lp-pillar {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r); padding: 28px 24px 30px;
  box-shadow: 0 2px 12px rgba(26,22,18,.06);
  transition: transform .2s, box-shadow .2s;
  position: relative; overflow: hidden;
}
.lp-pillar::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--brand2), var(--brand)); opacity: 0; transition: opacity .2s; }
.lp-pillar:hover { transform: translateY(-4px); box-shadow: 0 10px 32px rgba(26,22,18,.11); }
.lp-pillar:hover::before { opacity: 1; }
html.dark .lp-pillar { background: #1C1510; border-color: rgba(255,255,255,.07); }
.lp-pillar-icon { width: 50px; height: 50px; background: rgba(212,98,42,.1); border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 24px; margin-bottom: 18px; }
html.dark .lp-pillar-icon { background: rgba(212,98,42,.18); }
.lp-pillar h3 { font-size: 17px; font-weight: 700; color: var(--ink); margin-bottom: 10px; line-height: 1.3; }
html.dark .lp-pillar h3 { color: #E8E0D6; }
.lp-pillar p { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* â”€â”€ 3. Trasy â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.lp-routes { background: var(--cream); border-top: 1px solid var(--border); }
html.dark .lp-routes { border-color: rgba(255,255,255,.05); }
.lp-routes-head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 36px; gap: 20px; flex-wrap: wrap; }
.lp-routes-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
@media (max-width: 760px) { .lp-routes-grid { grid-template-columns: 1fr; } }

.lp-route-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r); overflow: hidden; box-shadow: 0 2px 12px rgba(26,22,18,.06); cursor: pointer; transition: transform .22s, box-shadow .22s; display: flex; flex-direction: column; }
.lp-route-card:hover { transform: translateY(-5px); box-shadow: 0 12px 36px rgba(26,22,18,.12); }
html.dark .lp-route-card { background: #1C1510; border-color: rgba(255,255,255,.07); }
.lp-route-img { width: 100%; height: 168px; overflow: hidden; position: relative; flex-shrink: 0; }
.lp-route-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.lp-route-card:hover .lp-route-img img { transform: scale(1.07); }
.lp-route-img-badge { position: absolute; top: 10px; left: 12px; background: rgba(15,11,8,.62); backdrop-filter: blur(6px); color: #fff; font-size: 10px; font-weight: 700; padding: 4px 9px; border-radius: 6px; text-transform: uppercase; letter-spacing: .4px; }
.lp-route-body { padding: 18px 20px 22px; flex: 1; display: flex; flex-direction: column; }
.lp-route-meta { font-size: 11px; color: var(--brand); font-weight: 700; text-transform: uppercase; letter-spacing: .4px; margin-bottom: 7px; }
.lp-route-body h3 { font-size: 16px; font-weight: 700; color: var(--ink); margin-bottom: 7px; line-height: 1.3; }
html.dark .lp-route-body h3 { color: #E8E0D6; }
.lp-route-body p { font-size: 13px; color: var(--muted); line-height: 1.65; margin-bottom: 16px; flex: 1; }
.lp-route-link { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 700; color: var(--brand); border: 1.5px solid var(--brand); padding: 7px 16px; border-radius: 40px; transition: background .15s, color .15s; width: fit-content; text-decoration: none; pointer-events: none; }
.lp-route-card:hover .lp-route-link { background: var(--brand); color: #fff; }

/* â”€â”€ 4. DÅ¯vÄ›ra â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”���â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.lp-trust-section { background: var(--ink); }
html.dark .lp-trust-section { background: #1C1510; }
.lp-trust-inner { display: grid; grid-template-columns: 1fr auto; gap: 64px; align-items: center; }
@media (max-width: 760px) { .lp-trust-inner { grid-template-columns: 1fr; gap: 36px; } }
.lp-trust-section .lp-eyebrow { color: rgba(255,255,255,.4); }
.lp-trust-section .lp-section-title { color: #fff; }
.lp-trust-sub { font-size: 15px; color: rgba(255,255,255,.62); line-height: 1.65; max-width: 460px; margin-bottom: 28px; }
.lp-team-card { display: flex; align-items: center; gap: 18px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: var(--r); padding: 20px 24px; margin-top: 6px; }
.lp-team-avatar { width: 64px; height: 64px; border-radius: 50%; background: linear-gradient(135deg, var(--brand2), var(--brand)); display: flex; align-items: center; justify-content: center; font-size: 20px; font-weight: 800; color: #fff; flex-shrink: 0; box-shadow: 0 4px 16px rgba(212,98,42,.4); letter-spacing: -.02em; }
.lp-team-info strong { display: block; font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.lp-team-info span { font-size: 13px; color: rgba(255,255,255,.58); line-height: 1.5; }
.lp-trust-stats-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; min-width: 240px; }
@media (max-width: 760px) { .lp-trust-stats-grid { grid-template-columns: repeat(4,1fr); min-width: unset; } }
@media (max-width: 480px) { .lp-trust-stats-grid { grid-template-columns: repeat(2,1fr); } }
.lp-trust-stat { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.09); border-radius: 14px; padding: 18px 14px; text-align: center; }
.lp-trust-stat-num { font-family: var(--font-display); font-size: 28px; font-weight: 900; color: #fff; line-height: 1; letter-spacing: -.02em; margin-bottom: 5px; }
.lp-trust-stat-label { font-size: 10px; font-weight: 600; color: rgba(255,255,255,.42); text-transform: uppercase; letter-spacing: .4px; line-height: 1.4; }

/* â”€â”€ 5. FAQ â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.lp-faq { background: var(--surface); border-top: 1px solid var(--border); }
html.dark .lp-faq { background: #141008; border-color: rgba(255,255,255,.05); }
.lp-faq-head { margin-bottom: 36px; }
.lp-faq-list { border: 1px solid var(--border); border-radius: var(--r); overflow: hidden; background: var(--white); box-shadow: 0 2px 16px rgba(26,22,18,.05); }
html.dark .lp-faq-list { background: #1C1510; border-color: rgba(255,255,255,.07); }
.lp-faq-item { border-bottom: 1px solid var(--border2); }
.lp-faq-item:last-child { border-bottom: none; }
html.dark .lp-faq-item { border-color: rgba(255,255,255,.05); }
.lp-faq-q { width: 100%; padding: 18px 22px; display: flex; align-items: center; justify-content: space-between; gap: 16px; background: none; border: none; cursor: pointer; font-size: 14px; font-weight: 600; color: var(--ink); font-family: var(--font-sans); text-align: left; transition: background .12s; line-height: 1.45; }
.lp-faq-q:hover { background: rgba(212,98,42,.03); }
html.dark .lp-faq-q { color: #D8CFC6; }
html.dark .lp-faq-q:hover { background: rgba(255,255,255,.03); }
.lp-faq-q-text { flex: 1; text-align: left; }
.lp-faq-chevron { width: 26px; height: 26px; flex-shrink: 0; background: var(--cream2); border-radius: 7px; display: flex; align-items: center; justify-content: center; font-size: 11px; transition: transform .25s, background .15s; color: var(--muted); }
html.dark .lp-faq-chevron { background: rgba(255,255,255,.07); color: #7A6E66; }
.lp-faq-item.open .lp-faq-chevron { transform: rotate(180deg); background: rgba(212,98,42,.12); color: var(--brand); }
.lp-faq-a { max-height: 0; overflow: hidden; transition: max-height .32s ease, padding .32s ease; padding: 0 22px; font-size: 13.5px; color: var(--muted); line-height: 1.78; }
.lp-faq-a strong { color: var(--ink); font-weight: 700; }
html.dark .lp-faq-a { color: #9A9088; }
html.dark .lp-faq-a strong { color: #D8CFC6; }
.lp-faq-item.open .lp-faq-a { max-height: 320px; padding: 0 22px 18px; }

/* â”€â”€ Footer CTA â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
/* Association badge strip */
.lp-assoc-strip { display:flex; flex-direction:column; align-items:center; gap:14px; padding:36px 24px; border-top:1px solid var(--sep); background:var(--bg); text-align:center; }
.lp-assoc-label { font-size:.85rem; color:var(--muted); letter-spacing:.02em; margin:0; }
.lp-assoc-logo { height:72px; width:auto; mix-blend-mode:multiply; opacity:.9; transition:opacity .2s; }
.lp-assoc-logo:hover { opacity:1; }
html.dark .lp-assoc-strip { border-top-color:rgba(255,255,255,.08); background:var(--ink); }
html.dark .lp-assoc-logo { mix-blend-mode:screen; opacity:.75; filter:brightness(1.15); }
html.dark .lp-assoc-logo:hover { opacity:1; }

.lp-footer-cta { background: linear-gradient(135deg, var(--brand2) 0%, var(--brand) 100%); padding: 64px 60px; text-align: center; }
@media (max-width: 900px) { .lp-footer-cta { padding: 48px 20px; } }
.lp-footer-cta h2 { font-family: var(--font-display); font-size: clamp(22px, 2.8vw, 32px); font-weight: 800; color: #fff; margin-bottom: 10px; letter-spacing: -.02em; }
.lp-footer-cta p { font-size: 15px; color: rgba(255,255,255,.75); margin-bottom: 28px; line-height: 1.6; }

/* ================================================================
   SITE FOOTER
   ================================================================ */
.site-footer { background:var(--ink); color:rgba(255,255,255,.75); font-size:.85rem; line-height:1.6; }
.site-footer-inner { display:grid; grid-template-columns:1.4fr 1fr 1fr 1.3fr; gap:40px; max-width:1100px; margin:0 auto; padding:56px 40px 40px; }
.sf-col { display:flex; flex-direction:column; gap:6px; }
.sf-heading { font-family:var(--font-display); font-size:.7rem; font-weight:700; letter-spacing:.1em; text-transform:uppercase; color:rgba(255,255,255,.35); margin-bottom:10px; }
.sf-bank-name { font-weight:700; color:#fff; font-size:.9rem; margin-bottom:2px; }
.sf-bank-row  { color:rgba(255,255,255,.6); font-size:.8rem; }
.sf-bank-row strong { color:rgba(255,255,255,.85); }
.sf-newsletter { display:flex; margin-top:14px; border:1px solid rgba(255,255,255,.15); border-radius:8px; overflow:hidden; }
.sf-email-input { flex:1; background:transparent; border:none; outline:none; padding:9px 12px; color:#fff; font-size:.82rem; }
.sf-email-input::placeholder { color:rgba(255,255,255,.35); }
.sf-email-btn { background:var(--brand); border:none; color:#fff; padding:9px 14px; cursor:pointer; font-size:1rem; transition:background .15s; }
.sf-email-btn:hover { background:var(--brand2); }
.sf-nav { display:flex; flex-direction:column; gap:8px; }
.sf-nav a { color:rgba(255,255,255,.6); text-decoration:none; font-size:.84rem; transition:color .15s; }
.sf-nav a:hover { color:var(--brand); }
.sf-company { font-weight:700; color:#fff; font-size:.88rem; margin-bottom:4px; }
.sf-address  { color:rgba(255,255,255,.55); line-height:1.5; }
.sf-phone a, .sf-email-link a { color:rgba(255,255,255,.7); text-decoration:none; transition:color .15s; }
.sf-phone a:hover, .sf-email-link a:hover { color:var(--brand); }
.sf-tax { color:rgba(255,255,255,.35); font-size:.78rem; margin-top:4px; }
.sf-social { margin-top:8px; }
.sf-social-label { font-size:.75rem; color:rgba(255,255,255,.35); text-transform:uppercase; letter-spacing:.08em; margin-bottom:8px; }
.sf-social-icons { display:flex; gap:10px; }
.sf-social-icon { display:flex; align-items:center; justify-content:center; width:34px; height:34px; border:1px solid rgba(255,255,255,.18); border-radius:8px; color:rgba(255,255,255,.6); text-decoration:none; transition:border-color .15s, color .15s, background .15s; }
.sf-social-icon:hover { border-color:var(--brand); color:var(--brand); background:rgba(212,98,42,.08); }
.site-footer-bar { display:flex; justify-content:space-between; align-items:center; max-width:1100px; margin:0 auto; padding:16px 40px; border-top:1px solid rgba(255,255,255,.08); font-size:.78rem; color:rgba(255,255,255,.3); flex-wrap:wrap; gap:8px; }
.sf-bar-links { display:flex; gap:20px; }
.sf-bar-links a { color:rgba(255,255,255,.35); text-decoration:none; transition:color .15s; }
.sf-bar-links a:hover { color:rgba(255,255,255,.7); }
@media (max-width:900px) { .site-footer-inner { grid-template-columns:1fr 1fr; gap:32px; padding:40px 24px 32px; } }
@media (max-width:520px) { .site-footer-inner { grid-template-columns:1fr; gap:28px; padding:32px 20px 24px; } .site-footer-bar { padding:14px 20px; flex-direction:column; align-items:flex-start; } }

/* wizard question label override - bigger & clearer */
.wizard-question-label {
  font-size: 12px !important; font-weight: 700 !important;
  color: var(--ink2) !important; letter-spacing: 0.3px;
  margin-bottom: 10px; line-height: 1.4;
}
html.dark .wizard-question-label { color: var(--muted2) !important; }
/* ================================================================
   ≡ƒû¿∩╕Å  PRINT / PDF STYLES
   Aktivuje se p┼Öes window.print() nebo Ctrl+P
   ================================================================ */
/* Print button ΓÇö viditeln├╜ v UI */
#vnck-print-btn {
  position: absolute;
  top: 10px; right: 10px;
  background: rgba(255,255,255,.92);
  color: #3d3329;
  border: none;
  border-radius: 8px;
  padding: 5px 11px;
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 1px 6px rgba(0,0,0,.18);
  font-family: inherit;
  transition: background .15s;
  white-space: nowrap;
}
#vnck-print-btn:hover { background: #fff; box-shadow: 0 2px 10px rgba(0,0,0,.22); }
@media print {
  /* Skryj v┼íe co nepot┼Öebujeme */
  .panel-chat,
  .panel-map,
  .mobile-tabbar,
  .landing-wizard-block,
  #paywall-bar,
  #vnck-print-btn,
  .slot-detail-dropdown,
  .share-btn,
  #share-btn,
  .pricing-card,
  .chat-input-area,
  .wizard-step,
  header nav,
  .app-topbar,
  #understanding-fullscreen,
  button:not(.slot-detail-toggle),
  .ctx-chips,
  .itin-header img + div > div:first-child { /* "TV┼«J PL├üN" label */
    display: none !important;
  }
  /* Layout ΓÇö cel├í str├ínka = itiner├í┼Ö */
  html, body { margin: 0; padding: 0; background: #fff !important; }
  #app-shell {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    overflow: visible !important;
  }
  .panel-itin {
    width: 100% !important;
    height: auto !important;
    overflow: visible !important;
    padding: 0 !important;
    border: none !important;
  }
  /* Header foto ΓÇö zachovej ale men┼í├¡ */
  .itin-header { page-break-after: avoid; }
  .itin-header > div:first-child { height: 120px !important; }
  /* Dny ΓÇö v┼╛dy otev┼Öen├⌐, v┼íe viditeln├⌐ */
  .day-card { page-break-inside: avoid; margin-bottom: 12px !important; border: 1px solid #e8e2d8 !important; }
  .day-body { display: block !important; max-height: none !important; opacity: 1 !important; }
  .day-toggle-icon { display: none !important; }
  /* Sloty */
  .slot-item { page-break-inside: avoid; }
  .slot-locked { display: none !important; }  /* Skryj "Odemknuto po rezervaci" text */
  /* Detail aktivity ΓÇö v┼╛dy rozbalen├╜ */
  .slot-detail-body { max-height: none !important; opacity: 1 !important; display: block !important; }
  .slot-detail-toggle { border-bottom: 1px solid #f0ece6 !important; }
  .sda { display: none !important; }
  /* Typografie */
  .slot-activity { font-size: 11pt !important; }
  .slot-desc { font-size: 9.5pt !important; color: #444 !important; }
  .day-title { font-size: 12pt !important; }
  /* Z├ípat├¡ str├ínky */
  @page {
    margin: 15mm 12mm 18mm;
    size: A4 portrait;
  }
  body::after {
    content: "vietnamck.cz";
    display: block;
    text-align: center;
    font-size: 8pt;
    color: #aaa;
    margin-top: 20px;
  }
}
/* Fix: keep map below modal overlays */
.maplibregl-canvas-container,
.maplibregl-map,
#map {
  z-index: 0 !important;
  position: relative;
}

/* Hide map placeholder when real map canvas is active */
#map-canvas:not([style*="display:none"]) ~ #map-placeholder { display: none !important; }

/* Map canvas fills full panel height */
#map-canvas { flex: 1 1 auto !important; }

/* -- LANG FLOAT (embed + direct) -------------------------------- */
.lang-float {
  position: absolute; top: 12px; right: 14px; z-index: 200;
  display: flex; align-items: center; gap: 2px;
  background: rgba(255,255,255,.92); backdrop-filter: blur(6px);
  border: 1px solid var(--border); border-radius: 10px; padding: 3px;
  box-shadow: 0 2px 8px rgba(0,0,0,.08);
}
html.dark .lang-float { background: rgba(30,22,16,.92); border-color: rgba(255,255,255,.12); }
