.elementor-7298 .elementor-element.elementor-element-4bae9fb{--display:flex;}/* Start custom CSS for html, class: .elementor-element-c8236dc *//* =====================================================
   🎨 PALETA
===================================================== */
:root {
  --ic-blue: #1f4f7b;
  --ic-green: #4c7b5c;
  --ic-headline: #5b3a26;
  --ic-strong: #1f4f7b;
  --ic-text: #222;
}

/* =====================================================
   🧱 SPOLEČNÝ ZÁKLAD PRO FREE + PAID
===================================================== */
.itinerary-section,
.paid-section {
  max-width: 780px;
  margin: 0 auto 4rem;
  padding: 2.6rem 2.2rem;

  background: #f7faf9;
  border-radius: 18px;
  border: 1px solid rgba(0,0,0,.05);
  box-shadow: 0 16px 44px rgba(0,0,0,.05);

  font-family: "Helvetica Neue", ui-sans-serif, system-ui,
    -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 400;
  color: var(--ic-text);
}

/* =====================================================
   🏷️ BADGE
===================================================== */
.itinerary-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .78rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ic-green);
  background: rgba(76,123,92,.08);
  border-radius: 999px;
  padding: .4rem .9rem;
  margin-bottom: 1.2rem;
}

/* =====================================================
   🧠 NADPISY
===================================================== */
.itinerary-heading {
  margin: 0 0 1.8rem;
  font-size: 1.9rem;
  line-height: 1.25;
  font-weight: 600;
  color: var(--ic-headline);
}

.paid-heading {
  margin: 3rem 0 1.6rem;
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--ic-headline);
}

.paid-subheading {
  margin: 2.4rem 0 1rem;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--ic-headline);
}

/* =====================================================
   📄 TEXT
===================================================== */
.itinerary-intro p,
.paid-content p {
  margin: 0 0 1.2rem;
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--ic-text);
}

.itinerary-section strong,
.paid-section strong,
.itinerary-section b,
.paid-section b {
  color: var(--ic-strong);
  font-weight: 600;
}

/* =====================================================
   📋 SEZNAMY
===================================================== */
.paid-list,
.itinerary-section ul,
.itinerary-section ol {
  margin: 1.2rem 0 1.6rem 1.4rem;
  padding: 0;
}

.paid-list li,
.itinerary-section li {
  margin-bottom: .9rem;
  line-height: 1.6;
  font-size: 1rem;
}

/* číslované seznamy trochu vzdušnější */
ol.paid-list li {
  padding-left: .2rem;
}

/* =====================================================
   ✂️ ELEMENTOR / WP FIXY
===================================================== */
.elementor-widget-container {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

section {
  margin-bottom: 0 !important;
}

/* =====================================================
   📱 MOBIL
===================================================== */
@media (max-width: 768px) {
  .itinerary-section,
  .paid-section {
    padding: 1.8rem 1.4rem;
  }

  .itinerary-heading {
    font-size: 1.6rem;
  }

  .paid-heading {
    font-size: 1.45rem;
  }

  .paid-subheading {
    font-size: 1.15rem;
  }

  .itinerary-intro p,
  .paid-content p {
    font-size: .98rem;
  }
}

/* =====================================================
   🖨️ PRINT / PDF
===================================================== */
@media print {
  .itinerary-section,
  .paid-section {
    box-shadow: none;
    border: none;
  }
}

/* =====================================================
   ✅ CHECKLIST – STEJNÝ VZHLED JAKO PAID SECTIONS
===================================================== */

/* proměnné – dědí z tvého webu */
:root {
  --check-primary: var(--ic-blue);
  --check-accent: var(--ic-green);
  --check-bg: #f7faf9;
  --check-text: var(--ic-text);
  --check-border: rgba(0,0,0,.08);
}

/* hlavní box checklistu */
.container {
  max-width: 780px;
  margin: 2.5rem auto;
  background: #fff;
  padding: 2.4rem 2.2rem;
  border-radius: 18px;
  border: 1px solid var(--check-border);
  box-shadow: 0 16px 44px rgba(0,0,0,.05);
  font-family: inherit;
  color: var(--check-text);
}

/* hlavička */
.container header {
  text-align: center;
  border-bottom: 2px solid var(--check-accent);
  margin-bottom: 2rem;
  padding-bottom: 1rem;
}

.container header h1 {
  margin: 0;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--ic-headline);
  letter-spacing: .04em;
}

.container .subtitle {
  margin-top: .4rem;
  font-style: italic;
  color: #666;
}

/* info grid */
.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .8rem;
  background: var(--check-bg);
  padding: 1rem;
  border-radius: 12px;
  margin-bottom: 2rem;
  border: 1px solid var(--check-border);
  font-size: .95rem;
}

/* sekce checklistu */
.section {
  margin-bottom: 2rem;
}

.section-title {
  background: rgba(31,79,123,.08);
  color: var(--check-primary);
  padding: .6rem 1rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: .9rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

/* jednotlivé checkbox položky */
.check-item {
  display: flex;
  gap: .8rem;
  align-items: flex-start;
  margin-bottom: .8rem;
}

.check-item input[type="checkbox"] {
  margin-top: .25rem;
  transform: scale(1.15);
  accent-color: var(--check-accent);
}

.check-text {
  font-size: .95rem;
  line-height: 1.6;
}

.check-text strong {
  color: var(--ic-strong);
}

/* tip / upozornění */
.important-note {
  background: rgba(76,123,92,.08);
  border-left: 4px solid var(--check-accent);
  padding: .9rem 1rem;
  font-size: .9rem;
  border-radius: 8px;
  margin: 1rem 0;
}

/* mobil */
@media (max-width: 600px) {
  .info-grid {
    grid-template-columns: 1fr;
  }

  .container {
    padding: 1.6rem 1.4rem;
  }

  .container header h1 {
    font-size: 1.4rem;
  }
}

/* =====================================================
   🖨️ PRINT / PDF – FINÁLNÍ ÚPRAVY
===================================================== */
@media print {

  /* formát stránky */
  @page {
    size: A4;
    margin: 20mm 18mm;
  }

  html, body {
    background: #fff !important;
    color: #000;
    font-size: 11.5pt;
    line-height: 1.6;
  }

  /* zrušit webové efekty */
  .itinerary-section,
  .paid-section,
  .container {
    max-width: 100% !important;
    margin: 0 0 18mm 0 !important;
    padding: 0 !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
  }

  /* nadpisy – aby se nelámaly */
  h1, h2, h3, h4 {
    page-break-after: avoid;
    break-after: avoid;
  }

  /* zabránění rozlomení boxů */
  section,
  .paid-content,
  .container,
  .section {
    break-inside: avoid;
    page-break-inside: avoid;
  }

  /* seznamy */
  ul, ol {
    padding-left: 18px;
  }

  li {
    break-inside: avoid;
  }


  a {
    color: #1f4f7b;
    text-decoration: underline;
  }



  /* checkboxy – větší pro tisk */
  input[type="checkbox"] {
    transform: scale(1.2);
    margin-right: 6px;
  }

  /* oddělovač stránek */
  .page-break {
    page-break-before: always;
    break-before: page;
  }

  /* schovat zbytečnosti */
  .itinerary-badge {
    display: none;
  }

  hr {
    display: none;
  }

}

@media print {

  /* schovat webovou hlavičku, menu, patičku */
  header,
  .site-header,
  .main-header,
  .elementor-location-header,
  nav,
  footer,
  .site-footer {
    display: none !important;
  }

  /* zrušit sticky / fixed prvky */
  * {
    position: static !important;
  }


  body {
    margin: 0;
    padding: 0;
  }

  main,
  .site-content,
  article {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }


  /* SCHOVAT VŠECHNO KROMĚ OBSAHU */
  header,
  nav,
  footer,
  .site-header,
  .site-footer,
  .elementor-location-header,
  .elementor-location-footer,
  .menu,
  .hamburger,
  .breadcrumbs,
  .newsletter,
  .related-posts,
  .comments,
  aside {
    display: none !important;
  }

  /* zrušit sticky / fixed */
  * {
    position: static !important;
  }



}/* End custom CSS */