/* ============================================================================
   LionsTravel — nadstavba nad šablónou Travolo
   1. Dizajnové tokeny a tmavá téma
   2. Zaoblenie, tiene (macOS) a animácie obrázkov a tlačidiel
   3. Hlavička: prepínač jazyka a témy
   4. Komponenty (karty, filtre, rezervácia, porovnanie, toast…)
   5. Responzivita — MacBook Air, tablet, mobil
   ========================================================================== */

/* =========================================================================
   1. TOKENY
   ========================================================================= */
:root {
  --lt-radius-sm: 12px;
  --lt-radius: 18px;
  --lt-radius-lg: 26px;
  --lt-radius-pill: 999px;

  /* tiene v štýle macOS — mäkké, viacvrstvové */
  --lt-shadow-sm: 0 1px 2px rgba(16, 24, 40, .04), 0 4px 12px -4px rgba(16, 24, 40, .10);
  --lt-shadow: 0 1px 2px rgba(16, 24, 40, .04), 0 10px 24px -8px rgba(16, 24, 40, .16),
               0 24px 48px -20px rgba(16, 24, 40, .12);
  --lt-shadow-lg: 0 2px 4px rgba(16, 24, 40, .05), 0 18px 40px -12px rgba(16, 24, 40, .22),
                  0 40px 80px -24px rgba(16, 24, 40, .18);
  --lt-shadow-brand: 0 10px 30px -10px rgba(255, 104, 26, .45);

  --lt-ease: cubic-bezier(.22, .61, .36, 1);
  --lt-dur: .45s;

  --lt-surface: #ffffff;
  --lt-surface-2: #f7f7fa;
  --lt-border: #e9e9f0;
  --lt-muted: #6d6d7d;
}

/* -------------------------------- tmavá téma ---------------------------- */
html[data-theme="dark"] {
  --title-color: #f2f2f7;
  --body-color: #b7b7c6;
  --smoke-color: #1b1d2e;
  /* POZOR: --white-color a --black-color zámerne NEmeníme. Šablóna nimi farbí
     biely text nad fotkami (hero, CTA sekcie) — ich prehodenie ho zčerní. */
  --secondary-color: #0d0e18;
  --bg-color1: #1b1d2e;
  --bg-color2: #16182a;
  --border-color: #2c2f45;

  --lt-surface: #1b1d2e;
  --lt-surface-2: #16182a;
  --lt-border: #2c2f45;
  --lt-muted: #9a9ab0;

  --lt-shadow-sm: 0 1px 2px rgba(0, 0, 0, .3), 0 4px 12px -4px rgba(0, 0, 0, .45);
  --lt-shadow: 0 1px 2px rgba(0, 0, 0, .35), 0 10px 24px -8px rgba(0, 0, 0, .55),
               0 24px 48px -20px rgba(0, 0, 0, .5);
  --lt-shadow-lg: 0 2px 4px rgba(0, 0, 0, .4), 0 18px 40px -12px rgba(0, 0, 0, .6),
                  0 40px 80px -24px rgba(0, 0, 0, .55);
}

html[data-theme="dark"] body {
  background-color: #12131f;
  color: var(--body-color);
}

html[data-theme="dark"] h1, html[data-theme="dark"] h2, html[data-theme="dark"] h3,
html[data-theme="dark"] h4, html[data-theme="dark"] h5, html[data-theme="dark"] h6,
html[data-theme="dark"] .h1, html[data-theme="dark"] .h2, html[data-theme="dark"] .h3,
html[data-theme="dark"] .sec-title, html[data-theme="dark"] .package-title,
html[data-theme="dark"] .blog-title, html[data-theme="dark"] .widget_title {
  color: var(--title-color);
}

html[data-theme="dark"] .bg-light,
html[data-theme="dark"] .bg-smoke {
  background-color: var(--lt-surface-2) !important;
}

html[data-theme="dark"] .vs-header,
html[data-theme="dark"] .sticky-active,
html[data-theme="dark"] .sticky-wrapper .sticky-active.active {
  background-color: rgba(18, 19, 31, .96);
  border-bottom: 1px solid var(--lt-border);
}

html[data-theme="dark"] .header-top {
  background-color: var(--secondary-color);
}

html[data-theme="dark"] .package-style1,
html[data-theme="dark"] .vs-blog,
html[data-theme="dark"] .features-style1,
html[data-theme="dark"] .testi-style2,
html[data-theme="dark"] .widget,
html[data-theme="dark"] .lt-card,
html[data-theme="dark"] .booking-box,
html[data-theme="dark"] .alert-box,
html[data-theme="dark"] .lt-box,
html[data-theme="dark"] .accordion-item,
html[data-theme="dark"] .lt-filter-bar,
html[data-theme="dark"] .sidemenu-content,
html[data-theme="dark"] .vs-menu-area,
html[data-theme="dark"] .popup-search-box form input {
  background-color: var(--lt-surface);
  border-color: var(--lt-border);
  color: var(--body-color);
}

html[data-theme="dark"] .form-control,
html[data-theme="dark"] .form-select,
html[data-theme="dark"] input[type="text"],
html[data-theme="dark"] input[type="email"],
html[data-theme="dark"] input[type="tel"],
html[data-theme="dark"] input[type="number"],
html[data-theme="dark"] input[type="date"],
html[data-theme="dark"] textarea,
html[data-theme="dark"] select {
  background-color: var(--lt-surface-2);
  border-color: var(--lt-border);
  color: var(--title-color);
}

html[data-theme="dark"] .form-control::placeholder,
html[data-theme="dark"] textarea::placeholder { color: #6f6f85; }

html[data-theme="dark"] .form-select {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23b7b7c6' stroke-width='2' d='m2 5 6 6 6-6'/%3E%3C/svg%3E");
}

html[data-theme="dark"] .accordion-button {
  background-color: var(--lt-surface);
  color: var(--title-color);
}
html[data-theme="dark"] .accordion-button:not(.collapsed) {
  background-color: rgba(255, 104, 26, .12);
  color: var(--theme-color);
}
html[data-theme="dark"] .accordion-body { background-color: var(--lt-surface); color: var(--body-color); }

html[data-theme="dark"] .nav-tabs .nav-link { color: var(--body-color); }
html[data-theme="dark"] .breadcumb-wrapper::before { background-color: rgba(9, 10, 18, .72); }

/* logo podľa témy */
.logo-dark { display: none; }
html[data-theme="dark"] .logo-light { display: none; }
html[data-theme="dark"] .logo-dark { display: inline-block; }

/* preskočiť na obsah */
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 1000;
  background: var(--theme-color); color: #fff; padding: 10px 18px;
  border-radius: 0 0 var(--lt-radius-sm) 0;
}
.skip-link:focus { left: 0; }

/* =========================================================================
   2. ZAOBLENIE, TIENE, ANIMÁCIE
   ========================================================================= */

/* --- obrázky: zaoblené rohy, macOS tieň, jemné priblíženie pri hoveri --- */
.lt-img,
.package-img,
.blog-img,
.destination-style1,
.gallery-style-2,
.img-box3 img,
.tour-gallery-main,
.tour-gallery-thumbs a,
.sidebar-gallery a,
.testi-avater,
.team-img,
.recent-post .media-img {
  position: relative;
  overflow: hidden;
  border-radius: var(--lt-radius);
  box-shadow: var(--lt-shadow);
  transition: transform var(--lt-dur) var(--lt-ease), box-shadow var(--lt-dur) var(--lt-ease);
  will-change: transform;
}

.lt-img img,
.package-img img,
.blog-img img,
.destination-style1 > a img,
.gallery-style-2 img,
.tour-gallery-main img,
.tour-gallery-thumbs a img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  transition: transform 1.1s var(--lt-ease), filter var(--lt-dur) var(--lt-ease);
}

.lt-img:hover, .package-img:hover, .blog-img:hover,
.gallery-style-2:hover, .tour-gallery-main:hover, .tour-gallery-thumbs a:hover {
  box-shadow: var(--lt-shadow-lg);
  transform: translateY(-4px);
}

.lt-img:hover img,
.package-style1:hover .package-img img,
.vs-blog:hover .blog-img img,
.destination-style1:hover img,
.gallery-style-2:hover img,
.tour-gallery-thumbs a:hover img {
  transform: scale(1.07);
}

/* karty */
.lt-card,
.package-style1,
.vs-blog.blog-style3,
.features-style1,
.testi-style2 {
  border-radius: var(--lt-radius-lg);
  overflow: hidden;
  background: var(--lt-surface);
  box-shadow: var(--lt-shadow-sm);
  transition: transform var(--lt-dur) var(--lt-ease), box-shadow var(--lt-dur) var(--lt-ease);
}

.lt-card:hover,
.package-style1:hover,
.vs-blog.blog-style3:hover,
.features-style1:hover {
  transform: translateY(-6px);
  box-shadow: var(--lt-shadow-lg);
}

/* obrázok vnútri karty nesmie mať dvojitý tieň */
.package-style1 .package-img,
.vs-blog .blog-img {
  box-shadow: none;
  border-radius: var(--lt-radius-lg) var(--lt-radius-lg) 0 0;
}
.package-style1 .package-img:hover,
.vs-blog .blog-img:hover { transform: none; box-shadow: none; }

/* --- tlačidlá: pilulka, zdvih, lesk --- */
.vs-btn,
.vs-btn.style2,
.vs-btn.style4,
button.vs-btn,
a.vs-btn {
  border-radius: var(--lt-radius-pill) !important;
  transition: transform .3s var(--lt-ease), box-shadow .3s var(--lt-ease), background-color .3s var(--lt-ease);
  position: relative;
  overflow: hidden;
}

.vs-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 20%, rgba(255, 255, 255, .28) 50%, transparent 80%);
  transform: translateX(-120%);
  transition: transform .7s var(--lt-ease);
  pointer-events: none;
}
.vs-btn:hover::after { transform: translateX(120%); }

.vs-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--lt-shadow-brand);
}
.vs-btn:active { transform: translateY(0); }

.vs-btn.sm { padding: 8px 20px; font-size: 14px; }

.icon-btn,
.tool-btn,
.card-action,
.scrollToTop,
.searchBoxToggler,
.sideMenuToggler,
.wishlist-btn {
  border-radius: var(--lt-radius-pill) !important;
  transition: transform .3s var(--lt-ease), box-shadow .3s var(--lt-ease),
              background-color .3s var(--lt-ease), color .3s var(--lt-ease);
}
.icon-btn:hover, .scrollToTop:hover { transform: translateY(-3px); box-shadow: var(--lt-shadow); }

/* polia formulárov */
.form-control, .form-select, input[type="text"], input[type="email"], input[type="tel"],
input[type="number"], input[type="date"], textarea, select {
  border-radius: var(--lt-radius-sm) !important;
  transition: border-color .25s var(--lt-ease), box-shadow .25s var(--lt-ease);
}
.form-control:focus, .form-select:focus, textarea:focus, select:focus {
  border-color: var(--theme-color) !important;
  box-shadow: 0 0 0 4px rgba(255, 104, 26, .12) !important;
  outline: none;
}
textarea.form-control { border-radius: var(--lt-radius) !important; min-height: 140px; }

/* animácia vstupu obrázkov */
@keyframes ltFadeUp {
  from { opacity: 0; transform: translateY(24px) scale(.98); }
  to   { opacity: 1; transform: none; }
}
.lt-img.is-visible { animation: ltFadeUp .7s var(--lt-ease) both; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
  }
}

/* =========================================================================
   3. HLAVIČKA
   ========================================================================= */
.header-tools {
  display: flex;
  align-items: center;
  gap: 14px;
}

.tool-btn {
  width: 38px; height: 38px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .2);
  color: #fff;
  font-size: 15px;
  cursor: pointer;
  padding: 0;
}
.tool-btn:hover { background: var(--theme-color); border-color: var(--theme-color); color: #fff; }

.theme-toggle .icon-dark { display: none; }
html[data-theme="dark"] .theme-toggle .icon-light { display: none; }
html[data-theme="dark"] .theme-toggle .icon-dark { display: inline-block; }

.lang-switch {
  display: inline-flex; align-items: center; gap: 4px;
  font-weight: 600; font-size: 14px; color: rgba(255, 255, 255, .6);
}
.lang-switch a { color: rgba(255, 255, 255, .65); padding: 2px 4px; border-radius: 6px; }
.lang-switch a:hover { color: #fff; }
.lang-switch a.active { color: var(--theme-color); }

.header-cta { padding: 10px 22px; font-size: 14px; }

.header-btns { display: flex; align-items: center; gap: 8px; }
.wishlist-btn {
  position: relative; width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--title-color); font-size: 18px;
}
.wishlist-btn:hover { color: var(--theme-color); }
.wishlist-btn .button-badge,
.header-btns .button-badge {
  position: absolute; top: 2px; right: 0;
  min-width: 18px; height: 18px; line-height: 18px;
  background: var(--theme-color); color: #fff;
  border-radius: var(--lt-radius-pill);
  font-size: 11px; font-weight: 600; text-align: center; padding: 0 5px;
}

.main-menu ul li.active > a { color: var(--theme-color); }

/* mobilné menu — nástroje a pätička */
.mobile-tools {
  display: flex; align-items: center; justify-content: center; gap: 16px;
  padding: 14px 0; border-bottom: 1px solid var(--lt-border);
}
.mobile-tools .lang-switch a { color: var(--title-color); }
.mobile-tools .tool-btn { background: var(--lt-surface-2); border-color: var(--lt-border); color: var(--title-color); }

.mobile-menu-footer {
  padding: 22px 20px 30px;
  border-top: 1px solid var(--lt-border);
  margin-top: 20px;
}
.mobile-menu-footer .header-contact { list-style: none; padding: 0; margin: 18px 0 12px; }
.mobile-menu-footer .header-contact li { margin-bottom: 8px; font-size: 15px; }
.mobile-menu-footer .header-social { display: flex; gap: 10px; justify-content: center; }

/* našepkávač vo vyhľadávaní */
.popup-search-box form { position: relative; }
.search-suggest {
  position: absolute; top: calc(100% + 12px); left: 0; right: 0;
  background: var(--lt-surface); border: 1px solid var(--lt-border);
  border-radius: var(--lt-radius); box-shadow: var(--lt-shadow-lg);
  max-height: 60vh; overflow-y: auto; text-align: left; z-index: 10;
}
.search-suggest a {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 16px; color: var(--title-color); border-bottom: 1px solid var(--lt-border);
}
.search-suggest a:last-child { border-bottom: 0; }
.search-suggest a:hover { background: var(--lt-surface-2); }
.search-suggest img { width: 52px; height: 40px; object-fit: cover; border-radius: 8px; }
.search-suggest .s-title { font-weight: 600; font-size: 15px; }
.search-suggest .s-meta { font-size: 13px; color: var(--lt-muted); }

/* postranné kontakty */
.side-contact { list-style: none; padding: 0; }
.side-contact li { margin-bottom: 12px; color: var(--body-color); }
.side-contact i { color: var(--theme-color); width: 20px; }

/* =========================================================================
   4. KOMPONENTY
   ========================================================================= */

/* --- karta zájazdu: odznaky a akcie --- */
.package-img, .blog-img, .destination-style1 { position: relative; }

.card-badges {
  position: absolute; top: 14px; left: 14px; z-index: 3;
  display: flex; flex-direction: column; gap: 6px; align-items: flex-start;
}
.badge-discount, .badge-seats {
  border-radius: var(--lt-radius-pill);
  padding: 5px 12px; font-size: 12px; font-weight: 600; color: #fff;
  box-shadow: var(--lt-shadow-sm); backdrop-filter: blur(4px);
}
.badge-discount { background: var(--theme-color); }
.badge-discount.big { position: absolute; top: 18px; left: 18px; font-size: 15px; padding: 8px 16px; z-index: 3; }
.badge-seats { background: #e0384a; }

.card-actions {
  position: absolute; top: 14px; right: 14px; z-index: 3;
  display: flex; flex-direction: column; gap: 8px;
  opacity: 0; transform: translateX(8px);
  transition: opacity .3s var(--lt-ease), transform .3s var(--lt-ease);
}
.lt-card:hover .card-actions,
.card-actions:focus-within { opacity: 1; transform: none; }

.card-action {
  width: 38px; height: 38px; border: 0; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255, 255, 255, .92); color: #1c1c1c; font-size: 15px;
  box-shadow: var(--lt-shadow-sm);
}
.card-action:hover { background: var(--theme-color); color: #fff; }
.card-action.is-active { background: var(--theme-color); color: #fff; }
.card-action.is-active .fal { font-weight: 900; }

.card-category {
  position: absolute; bottom: 14px; left: 14px; z-index: 3;
  background: rgba(17, 19, 48, .78); color: #fff; backdrop-filter: blur(6px);
  border-radius: var(--lt-radius-pill); padding: 5px 14px;
  font-size: 12px; font-weight: 500;
}
.card-category.static { position: static; display: inline-block; background: rgba(255, 104, 26, .12); color: var(--theme-color); }

.package-meta { display: flex; flex-wrap: wrap; gap: 8px 16px; }
.package-meta span { font-size: 14px; color: var(--lt-muted); }
.package-meta i { color: var(--theme-color); margin-right: 5px; }

.package-review .review-count { font-size: 13px; color: var(--lt-muted); margin-left: 6px; }

.package-price del { display: block; font-size: 14px; color: var(--lt-muted); font-weight: 400; }
.package-price em { font-style: normal; font-size: 13px; color: var(--lt-muted); font-weight: 400; }

.package-footer { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; }

.blog-category {
  position: absolute; bottom: 14px; left: 14px; z-index: 3;
  background: var(--theme-color); color: #fff;
  border-radius: var(--lt-radius-pill); padding: 5px 14px; font-size: 12px; font-weight: 500;
}
.blog-bottom { display: flex; gap: 16px; flex-wrap: wrap; }
.blog-readtime, .blog-date { font-size: 14px; color: var(--lt-muted); }
.blog-readtime i, .blog-date i { color: var(--theme-color); margin-right: 5px; }

/* --- hero --- */
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-form2 { border-radius: var(--lt-radius-lg); box-shadow: var(--lt-shadow-lg); }
html[data-theme="dark"] .hero-form2 { background-color: var(--lt-surface); }

/* --- štatistiky --- */
.lt-stats-band {
  background: var(--lt-surface);
  border: 1px solid var(--lt-border);
  border-radius: var(--lt-radius-lg);
  box-shadow: var(--lt-shadow);
  padding: 40px 30px;
}
.counter-style1 { text-align: center; }
.counter-value { font-size: 44px; font-weight: 700; color: var(--theme-color); margin-bottom: 4px; line-height: 1.1; }
.counter-label { color: var(--lt-muted); margin: 0; font-size: 15px; }

/* --- prečo my (features) --- */
.features-style1 { padding: 40px 28px; text-align: center; height: 100%; }
.features-icon {
  width: 76px; height: 76px; margin: 0 auto 22px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--lt-radius-pill);
  background: linear-gradient(135deg, rgba(255, 104, 26, .14), rgba(55, 212, 217, .14));
  color: var(--theme-color); font-size: 30px;
  transition: transform var(--lt-dur) var(--lt-ease);
}
.features-style1:hover .features-icon { transform: translateY(-4px) rotate(-6deg); }

/* --- promo pásiky --- */
.finder-promo, .offer-section {
  background-size: cover; background-position: center; position: relative;
}
.finder-promo::before, .offer-section::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(17, 19, 48, .88), rgba(17, 19, 48, .55));
}
.finder-promo > .container, .offer-section > .container { position: relative; z-index: 2; }

/* --- breadcrumb --- */
.lt-breadcrumb { position: relative; background-size: cover; background-position: center; }
.lt-breadcrumb::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(17, 19, 48, .55), rgba(17, 19, 48, .8));
}
.lt-breadcrumb .container { position: relative; z-index: 2; }

/* --- filtre --- */
.lt-filter-bar {
  background: var(--lt-surface);
  border: 1px solid var(--lt-border);
  border-radius: var(--lt-radius-lg);
  box-shadow: var(--lt-shadow);
  padding: 24px;
  margin-bottom: 36px;
}
.lt-filter-bar label { font-size: 13px; font-weight: 600; color: var(--title-color); margin-bottom: 6px; display: block; }
.lt-filter-bar .form-control, .lt-filter-bar .form-select { height: 48px; }

.filter-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 32px; }
.filter-pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 20px; border-radius: var(--lt-radius-pill);
  background: var(--lt-surface); border: 1px solid var(--lt-border);
  color: var(--body-color); font-size: 14px; font-weight: 500;
  transition: all .25s var(--lt-ease);
}
.filter-pill:hover { border-color: var(--theme-color); color: var(--theme-color); transform: translateY(-2px); }
.filter-pill.active { background: var(--theme-color); border-color: var(--theme-color); color: #fff; box-shadow: var(--lt-shadow-brand); }

.lt-results-bar {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px; margin-bottom: 28px;
}
.lt-results-bar strong { color: var(--theme-color); }

.lt-empty {
  text-align: center; padding: 70px 24px;
  background: var(--lt-surface-2); border: 1px dashed var(--lt-border);
  border-radius: var(--lt-radius-lg);
}
.lt-empty i { font-size: 46px; color: var(--theme-color); margin-bottom: 18px; display: block; }
.lt-empty h3 { margin-bottom: 10px; }
.lt-empty p { color: var(--lt-muted); max-width: 480px; margin: 0 auto 22px; }

/* --- stránkovanie --- */
.vs-pagination { display: flex; justify-content: center; gap: 8px; flex-wrap: wrap; list-style: none; padding: 0; margin-top: 50px; }
.vs-pagination a, .vs-pagination span {
  min-width: 46px; height: 46px; padding: 0 12px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: var(--lt-radius-pill);
  background: var(--lt-surface); border: 1px solid var(--lt-border);
  color: var(--title-color); font-weight: 600;
  transition: all .25s var(--lt-ease);
}
.vs-pagination a:hover { border-color: var(--theme-color); color: var(--theme-color); transform: translateY(-2px); }
.vs-pagination .active { background: var(--theme-color); border-color: var(--theme-color); color: #fff; }
.vs-pagination .disabled { opacity: .45; pointer-events: none; }

/* --- detail zájazdu --- */
.tour-head-top { display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; margin-bottom: 14px; }
.tour-title { font-size: 40px; line-height: 1.2; margin-bottom: 8px; }
.tour-subtitle { font-size: 18px; color: var(--lt-muted); margin-bottom: 16px; }
.tour-head-meta { display: flex; flex-wrap: wrap; gap: 10px 24px; margin-bottom: 20px; }
.tour-head-meta span { color: var(--body-color); font-size: 15px; }
.tour-head-meta i { color: var(--theme-color); margin-right: 6px; }

.tour-head-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 34px; }
.tour-head-actions .tool-btn {
  width: auto; padding: 9px 18px; gap: 8px;
  background: var(--lt-surface-2); border: 1px solid var(--lt-border);
  color: var(--body-color); font-size: 14px; font-weight: 500;
}
.tour-head-actions .tool-btn:hover,
.tour-head-actions .tool-btn.is-active { background: var(--theme-color); border-color: var(--theme-color); color: #fff; }

.tour-gallery { margin-bottom: 34px; }
.tour-gallery-main { position: relative; aspect-ratio: 16 / 9; margin-bottom: 14px; }
.tour-gallery-thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.tour-gallery-thumbs a { aspect-ratio: 4 / 3; display: block; }

.tour-facts {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px;
  background: var(--lt-surface); border: 1px solid var(--lt-border);
  border-radius: var(--lt-radius-lg); box-shadow: var(--lt-shadow-sm);
  padding: 24px; margin-bottom: 40px;
}
.tour-facts .fact { text-align: center; }
.tour-facts i { display: block; font-size: 24px; color: var(--theme-color); margin-bottom: 8px; }
.tour-facts span { display: block; font-size: 12px; color: var(--lt-muted); text-transform: uppercase; letter-spacing: .05em; }
.tour-facts strong { display: block; font-size: 16px; color: var(--title-color); margin-top: 2px; }

.tour-tabs { border: 0; gap: 8px; margin-bottom: 30px; flex-wrap: wrap; }
.tour-tabs .nav-link {
  border: 1px solid var(--lt-border) !important;
  border-radius: var(--lt-radius-pill) !important;
  padding: 11px 24px; color: var(--body-color); font-weight: 600; background: var(--lt-surface);
  transition: all .25s var(--lt-ease);
}
.tour-tabs .nav-link:hover { border-color: var(--theme-color) !important; color: var(--theme-color); }
.tour-tabs .nav-link.active {
  background: var(--theme-color) !important; border-color: var(--theme-color) !important;
  color: #fff !important; box-shadow: var(--lt-shadow-brand);
}
.tour-tab-content p { margin-bottom: 18px; }
.tour-h3 { font-size: 22px; margin: 28px 0 16px; }

.lt-check-list { list-style: none; padding: 0; }
.lt-check-list li { position: relative; padding-left: 30px; margin-bottom: 12px; color: var(--body-color); }
.lt-check-list i { position: absolute; left: 0; top: 5px; color: #28a745; font-size: 14px; }
.lt-check-list.excluded i { color: #dc3545; }

.lt-tips-list { list-style: none; padding: 0; }
.lt-tips-list li { position: relative; padding-left: 30px; margin-bottom: 12px; }
.lt-tips-list i { position: absolute; left: 0; top: 4px; color: var(--yellow-color, #fec624); }

.lt-info-list { list-style: none; padding: 0; }
.lt-info-list li {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 12px 0; border-bottom: 1px solid var(--lt-border);
}
.lt-info-list li:last-child { border-bottom: 0; }
.lt-info-list i { color: var(--theme-color); margin-right: 8px; }
.lt-info-list strong { color: var(--title-color); text-align: right; }

.lt-box {
  background: var(--lt-surface); border: 1px solid var(--lt-border);
  border-radius: var(--lt-radius-lg); box-shadow: var(--lt-shadow-sm);
  padding: 28px; margin-bottom: 26px;
}
.lt-box h3, .lt-box h4 { margin-bottom: 16px; }

/* program po dňoch */
.itinerary { position: relative; padding-left: 8px; }
.itinerary-day { display: flex; gap: 22px; position: relative; padding-bottom: 30px; }
.itinerary-day::before {
  content: ''; position: absolute; left: 31px; top: 66px; bottom: 0;
  width: 2px; background: var(--lt-border);
}
.itinerary-day:last-child { padding-bottom: 0; }
.itinerary-day:last-child::before { display: none; }
.itinerary-num {
  flex: 0 0 64px; width: 64px; height: 64px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  border-radius: var(--lt-radius-pill);
  background: linear-gradient(135deg, var(--theme-color), #ff8a3d);
  color: #fff; box-shadow: var(--lt-shadow-brand); z-index: 2;
}
.itinerary-num span { font-size: 10px; text-transform: uppercase; opacity: .85; line-height: 1; }
.itinerary-num strong { font-size: 22px; line-height: 1.1; }
.itinerary-body h4 { margin-bottom: 8px; font-size: 19px; }
.itinerary-body p { margin: 0; color: var(--body-color); }

/* tabuľka termínov */
.departures-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.departures-table { width: 100%; border-collapse: separate; border-spacing: 0 10px; min-width: 560px; }
.departures-table th {
  text-align: left; padding: 0 18px 8px; font-size: 13px;
  text-transform: uppercase; letter-spacing: .05em; color: var(--lt-muted); font-weight: 600;
}
.departures-table td {
  background: var(--lt-surface); padding: 18px; border-top: 1px solid var(--lt-border); border-bottom: 1px solid var(--lt-border);
  vertical-align: middle;
}
.departures-table td:first-child { border-left: 1px solid var(--lt-border); border-radius: var(--lt-radius) 0 0 var(--lt-radius); }
.departures-table td:last-child { border-right: 1px solid var(--lt-border); border-radius: 0 var(--lt-radius) var(--lt-radius) 0; text-align: right; }
.departures-table tr { transition: transform .25s var(--lt-ease); }
.departures-table tr:hover { transform: translateX(3px); }
.dep-end { color: var(--lt-muted); font-size: 14px; margin-left: 4px; }
.dep-price { font-size: 19px; font-weight: 700; color: var(--theme-color); }
.dep-free { color: #28a745; font-weight: 500; }
.dep-last { color: #e0384a; font-weight: 600; }
.dep-sold { color: var(--lt-muted); text-decoration: line-through; }

/* rezervačný box */
.lt-sticky { position: sticky; top: 110px; }

.booking-box, .alert-box, .help-box {
  background: var(--lt-surface); border: 1px solid var(--lt-border);
  border-radius: var(--lt-radius-lg); box-shadow: var(--lt-shadow);
  margin-bottom: 24px; overflow: hidden;
}
.booking-box-head {
  background: linear-gradient(135deg, var(--theme-color), #ff8a3d);
  color: #fff; padding: 24px 28px;
}
.booking-box-head .box-from { font-size: 13px; opacity: .9; display: block; }
.booking-box-head .price strong { font-size: 34px; font-weight: 700; }
.booking-box-head .price del { font-size: 17px; opacity: .75; margin-right: 8px; font-weight: 400; }
.booking-box-head .per { font-size: 13px; opacity: .9; }
.booking-box-body { padding: 24px 28px 28px; }
.booking-box-body .label { font-size: 13px; font-weight: 600; color: var(--title-color); display: block; margin-bottom: 10px; }

.check-row {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 0; font-size: 14px; color: var(--body-color); cursor: pointer;
  border-bottom: 1px solid var(--lt-border);
}
.check-row:last-child { border-bottom: 0; }
.check-row input { width: 18px; height: 18px; accent-color: var(--theme-color); flex: 0 0 18px; }
.check-row span { flex: 1; }
.check-row em { font-style: normal; color: var(--theme-color); font-weight: 600; font-size: 13px; }

.quote-summary {
  background: var(--lt-surface-2); border-radius: var(--lt-radius);
  padding: 18px; margin: 20px 0;
}
.quote-summary .row-line {
  display: flex; justify-content: space-between; gap: 12px;
  padding: 6px 0; font-size: 15px; color: var(--body-color);
}
.quote-summary .row-line.total {
  border-top: 1px solid var(--lt-border); margin-top: 8px; padding-top: 12px;
  font-size: 20px; font-weight: 700; color: var(--title-color);
}
.quote-summary .row-line.total span:last-child { color: var(--theme-color); }
.quote-summary .row-line.small { font-size: 13px; }
.quote-summary .row-line.muted { color: var(--lt-muted); }
.quote-summary .row-line em { font-style: normal; display: block; font-size: 12px; }

.seats-hint {
  background: rgba(224, 56, 74, .1); color: #e0384a;
  border-radius: var(--lt-radius-sm); padding: 10px 14px;
  font-size: 14px; font-weight: 600; margin-bottom: 16px; text-align: center;
}

.alert-box { padding: 26px 28px; }
.alert-box h4 { font-size: 18px; margin-bottom: 8px; }
.alert-box h4 i { color: var(--theme-color); margin-right: 6px; }
.alert-box p { font-size: 14px; color: var(--lt-muted); margin-bottom: 16px; }

.help-box { padding: 28px; background-size: cover; background-position: center; }
.help-box h4 { font-size: 19px; margin-bottom: 10px; }
.help-box p { font-size: 14px; color: var(--lt-muted); margin-bottom: 16px; }
.help-phone { display: inline-flex; align-items: center; gap: 8px; font-size: 19px; font-weight: 700; color: var(--theme-color); }

/* mobilná predajná lišta */
.mobile-book-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  display: none; align-items: center; justify-content: space-between; gap: 14px;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: var(--lt-surface); border-top: 1px solid var(--lt-border);
  box-shadow: 0 -8px 24px -12px rgba(16, 24, 40, .25);
}
.mbb-price span { display: block; font-size: 12px; color: var(--lt-muted); }
.mbb-price strong { font-size: 22px; color: var(--theme-color); }
.mobile-book-bar .vs-btn { padding: 12px 26px; }

/* --- lišta porovnania --- */
.compare-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 95;
  background: var(--lt-surface); border-top: 1px solid var(--lt-border);
  box-shadow: 0 -10px 30px -14px rgba(16, 24, 40, .3);
  padding: 14px 0 calc(14px + env(safe-area-inset-bottom));
  animation: ltSlideUp .35s var(--lt-ease);
}
@keyframes ltSlideUp { from { transform: translateY(100%); } to { transform: none; } }
.compare-bar-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.compare-bar-items { display: flex; gap: 10px; flex: 1; min-width: 0; }
.compare-bar-item {
  position: relative; width: 64px; height: 48px; border-radius: 10px; overflow: hidden;
  box-shadow: var(--lt-shadow-sm); flex: 0 0 auto;
}
.compare-bar-item img { width: 100%; height: 100%; object-fit: cover; }
.compare-bar-item button {
  position: absolute; top: 2px; right: 2px; width: 18px; height: 18px;
  border: 0; border-radius: 50%; background: rgba(0, 0, 0, .6); color: #fff;
  font-size: 10px; line-height: 1; cursor: pointer; padding: 0;
}
.compare-bar-actions { display: flex; align-items: center; gap: 10px; }
.compare-bar-clear {
  width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--lt-border);
  background: transparent; color: var(--body-color); cursor: pointer;
}
.compare-bar-clear:hover { border-color: var(--theme-color); color: var(--theme-color); }

/* --- porovnávacia tabuľka --- */
.compare-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; padding-bottom: 8px; }
.compare-table { width: 100%; border-collapse: separate; border-spacing: 0; min-width: 760px; }
.compare-table th, .compare-table td {
  padding: 16px 18px; border-bottom: 1px solid var(--lt-border);
  text-align: left; vertical-align: middle;
}
.compare-table thead td, .compare-table thead th { border-bottom: 2px solid var(--lt-border); }
.compare-table th:first-child, .compare-table td:first-child {
  position: sticky; left: 0; z-index: 2;
  background: var(--lt-surface); font-weight: 600; color: var(--title-color);
  min-width: 150px;
  box-shadow: 6px 0 12px -8px rgba(16, 24, 40, .2);
}
.compare-table img { width: 100%; max-width: 200px; border-radius: var(--lt-radius-sm); box-shadow: var(--lt-shadow-sm); }
.compare-price { font-size: 22px; font-weight: 700; color: var(--theme-color); }

/* --- vyhľadávač zájazdov --- */
.finder-card {
  background: var(--lt-surface); border: 1px solid var(--lt-border);
  border-radius: var(--lt-radius-lg); box-shadow: var(--lt-shadow-lg);
  padding: 44px; max-width: 860px; margin: 0 auto;
}
.finder-progress { height: 6px; background: var(--lt-surface-2); border-radius: var(--lt-radius-pill); overflow: hidden; margin-bottom: 12px; }
.finder-progress-bar {
  height: 100%; background: linear-gradient(90deg, var(--theme-color), #ff8a3d);
  border-radius: inherit; transition: width .4s var(--lt-ease);
}
.finder-step-label { font-size: 13px; color: var(--lt-muted); margin-bottom: 26px; }
.finder-question { font-size: 27px; margin-bottom: 28px; }
.finder-options { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 14px; margin-bottom: 32px; }
.finder-option {
  border: 2px solid var(--lt-border); background: var(--lt-surface);
  border-radius: var(--lt-radius); padding: 22px 16px; text-align: center;
  cursor: pointer; transition: all .25s var(--lt-ease); color: var(--body-color);
}
.finder-option i { display: block; font-size: 28px; color: var(--theme-color); margin-bottom: 10px; }
.finder-option:hover { border-color: var(--theme-color); transform: translateY(-3px); box-shadow: var(--lt-shadow); }
.finder-option.selected { border-color: var(--theme-color); background: rgba(255, 104, 26, .08); color: var(--theme-color); font-weight: 600; }
.finder-nav { display: flex; justify-content: space-between; gap: 12px; }
.match-badge {
  display: inline-block; background: rgba(40, 167, 69, .12); color: #1e8f3c;
  border-radius: var(--lt-radius-pill); padding: 4px 12px; font-size: 13px; font-weight: 700;
}

/* --- kroky rezervácie --- */
.booking-steps { display: flex; gap: 8px; margin-bottom: 40px; flex-wrap: wrap; }
.booking-step {
  flex: 1; min-width: 120px; text-align: center; padding: 14px 10px;
  border-radius: var(--lt-radius); background: var(--lt-surface-2);
  border: 1px solid var(--lt-border); color: var(--lt-muted); font-size: 14px; font-weight: 600;
  transition: all .3s var(--lt-ease);
}
.booking-step.active { background: var(--theme-color); border-color: var(--theme-color); color: #fff; box-shadow: var(--lt-shadow-brand); }
.booking-step.done { border-color: #28a745; color: #28a745; }
.booking-step .num {
  display: inline-flex; width: 24px; height: 24px; border-radius: 50%;
  background: rgba(0, 0, 0, .08); align-items: center; justify-content: center;
  margin-right: 6px; font-size: 12px;
}
.booking-step.active .num { background: rgba(255, 255, 255, .25); }

.booking-success { text-align: center; padding: 60px 24px; }
.booking-success i { font-size: 62px; color: #28a745; margin-bottom: 22px; display: block; }
.booking-ref {
  display: inline-block; background: var(--lt-surface-2); border: 1px dashed var(--theme-color);
  border-radius: var(--lt-radius); padding: 14px 28px; margin: 20px 0;
  font-size: 22px; font-weight: 700; color: var(--theme-color); letter-spacing: .05em;
}

/* --- kroky procesu (na mieru) --- */
.step-card { text-align: center; padding: 34px 24px; height: 100%; }
.step-num {
  width: 56px; height: 56px; margin: 0 auto 18px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--lt-radius-pill);
  background: linear-gradient(135deg, var(--theme-color), #ff8a3d);
  color: #fff; font-size: 22px; font-weight: 700; box-shadow: var(--lt-shadow-brand);
}

/* --- formuláre --- */
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 600; font-size: 14px; color: var(--title-color); margin-bottom: 7px; }
.req { color: var(--theme-color); }

/* honeypot — pre robota viditeľný, pre človeka nie */
.hp-wrap { position: absolute; left: -9999px; top: -9999px; opacity: 0; height: 0; overflow: hidden; }
.hp-field { position: absolute !important; left: -9999px !important; opacity: 0 !important; height: 0 !important; width: 0 !important; }

.captcha-group { background: var(--lt-surface-2); border: 1px solid var(--lt-border); border-radius: var(--lt-radius); padding: 16px 18px; }
.captcha-row { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.captcha-question { font-weight: 600; color: var(--title-color); flex: 1; min-width: 160px; }
.captcha-input { max-width: 100px; text-align: center; font-weight: 700; }

.form-msg { margin: 12px 0 0; font-size: 14px; min-height: 20px; }
.form-msg.ok { color: #28a745; }
.form-msg.err { color: #dc3545; }

.newsletter-form { position: relative; }
.newsletter-form .form-msg { position: absolute; top: 100%; left: 0; }

.form-success {
  text-align: center; padding: 50px 30px;
  background: rgba(40, 167, 69, .07); border: 1px solid rgba(40, 167, 69, .25);
  border-radius: var(--lt-radius-lg);
}
.form-success i { font-size: 52px; color: #28a745; margin-bottom: 18px; display: block; }

.check-inline { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--body-color); }
.check-inline input { margin-top: 3px; accent-color: var(--theme-color); width: 18px; height: 18px; flex: 0 0 18px; }
.check-inline a { color: var(--theme-color); text-decoration: underline; }

.interests-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 10px; }
.interest-chip {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 16px; border: 1px solid var(--lt-border); border-radius: var(--lt-radius);
  cursor: pointer; transition: all .25s var(--lt-ease); background: var(--lt-surface);
}
.interest-chip:hover { border-color: var(--theme-color); }
.interest-chip input { accent-color: var(--theme-color); width: 18px; height: 18px; }
.interest-chip:has(input:checked) { border-color: var(--theme-color); background: rgba(255, 104, 26, .07); color: var(--theme-color); }

/* --- kontakt: mapa --- */
.map-wrap {
  position: relative; border-radius: var(--lt-radius-lg); overflow: hidden;
  box-shadow: var(--lt-shadow); aspect-ratio: 21 / 9; background: var(--lt-surface-2);
}
.map-wrap img, .map-wrap iframe { width: 100%; height: 100%; object-fit: cover; border: 0; display: block; }
.map-overlay {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  background: rgba(17, 19, 48, .35); transition: opacity .3s var(--lt-ease);
}
.map-wrap.is-loaded .map-overlay { opacity: 0; pointer-events: none; }

.contact-box {
  text-align: center; padding: 36px 26px; height: 100%;
  background: var(--lt-surface); border: 1px solid var(--lt-border);
  border-radius: var(--lt-radius-lg); box-shadow: var(--lt-shadow-sm);
  transition: transform var(--lt-dur) var(--lt-ease), box-shadow var(--lt-dur) var(--lt-ease);
}
.contact-box:hover { transform: translateY(-6px); box-shadow: var(--lt-shadow-lg); }
.contact-box .icon {
  width: 68px; height: 68px; margin: 0 auto 18px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--lt-radius-pill);
  background: linear-gradient(135deg, rgba(255, 104, 26, .14), rgba(55, 212, 217, .14));
  color: var(--theme-color); font-size: 26px;
}
.contact-box a { color: var(--body-color); }
.contact-box a:hover { color: var(--theme-color); }

/* --- blog --- */
.lt-sticky-sidebar { position: sticky; top: 110px; }
.post-content { font-size: 17px; line-height: 1.8; }
.post-content h3 { margin: 34px 0 14px; font-size: 24px; }
.post-content p { margin-bottom: 18px; }
.post-content ul, .post-content ol { margin: 0 0 20px 20px; }
.post-content li { margin-bottom: 8px; }
.post-content blockquote {
  margin: 28px 0; padding: 24px 28px;
  background: var(--lt-surface-2); border-left: 4px solid var(--theme-color);
  border-radius: 0 var(--lt-radius) var(--lt-radius) 0;
  font-size: 18px; font-style: italic; color: var(--title-color);
}
.post-content strong { color: var(--title-color); }

.author-box {
  display: flex; gap: 20px; align-items: center;
  background: var(--lt-surface-2); border: 1px solid var(--lt-border);
  border-radius: var(--lt-radius-lg); padding: 26px; margin: 36px 0;
}
.author-box img { width: 84px; height: 84px; border-radius: 50%; object-fit: cover; box-shadow: var(--lt-shadow-sm); flex: 0 0 84px; }

.tagcloud { display: flex; flex-wrap: wrap; gap: 8px; }
.tagcloud a {
  padding: 7px 15px; border-radius: var(--lt-radius-pill);
  background: var(--lt-surface-2); border: 1px solid var(--lt-border);
  font-size: 13px; color: var(--body-color); transition: all .25s var(--lt-ease);
}
.tagcloud a:hover, .tagcloud a.active { background: var(--theme-color); border-color: var(--theme-color); color: #fff; }

.share-btns { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.share-btns a, .share-btns button {
  width: 40px; height: 40px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--lt-border); background: var(--lt-surface);
  color: var(--body-color); cursor: pointer; transition: all .25s var(--lt-ease);
}
.share-btns a:hover, .share-btns button:hover { background: var(--theme-color); border-color: var(--theme-color); color: #fff; transform: translateY(-2px); }

/* --- tím --- */
.team-card { text-align: center; padding: 0 0 28px; height: 100%; }
.team-img { aspect-ratio: 1 / 1; margin-bottom: 20px; border-radius: var(--lt-radius-lg) var(--lt-radius-lg) 0 0; }
.team-img img { width: 100%; height: 100%; object-fit: cover; }
.team-langs { display: flex; gap: 6px; justify-content: center; margin: 10px 0 14px; flex-wrap: wrap; }
.team-langs span {
  padding: 3px 10px; border-radius: var(--lt-radius-pill);
  background: var(--lt-surface-2); border: 1px solid var(--lt-border);
  font-size: 11px; font-weight: 600; letter-spacing: .04em; color: var(--lt-muted);
}
.team-bio { padding: 0 22px; font-size: 15px; color: var(--body-color); }
.team-social { display: flex; gap: 8px; justify-content: center; margin-top: 14px; }
.team-social a {
  width: 34px; height: 34px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--lt-surface-2); color: var(--body-color); font-size: 13px;
  transition: all .25s var(--lt-ease);
}
.team-social a:hover { background: var(--theme-color); color: #fff; transform: translateY(-2px); }

/* --- FAQ --- */
.accordion-item {
  border: 1px solid var(--lt-border) !important;
  border-radius: var(--lt-radius) !important;
  margin-bottom: 12px; overflow: hidden; background: var(--lt-surface);
}
.accordion-button {
  border-radius: 0 !important; font-weight: 600; font-size: 17px;
  padding: 20px 24px; box-shadow: none !important;
}
.accordion-button:not(.collapsed) { background: rgba(255, 104, 26, .07); color: var(--theme-color); }
.accordion-button::after {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23ff681a' stroke-width='2' d='m2 5 6 6 6-6'/%3E%3C/svg%3E");
}
.accordion-body { padding: 4px 24px 22px; color: var(--body-color); }

.faq-cta {
  text-align: center; padding: 46px 30px; margin-top: 46px;
  background: linear-gradient(135deg, rgba(255, 104, 26, .08), rgba(55, 212, 217, .08));
  border: 1px solid var(--lt-border); border-radius: var(--lt-radius-lg);
}

/* --- právne stránky --- */
.legal-content { font-size: 16px; line-height: 1.8; }
.legal-content h3 { margin: 32px 0 14px; font-size: 22px; }
.legal-content p { margin-bottom: 16px; }
.legal-content ul { margin: 0 0 18px 20px; }
.legal-content li { margin-bottom: 8px; }

/* --- chybová stránka --- */
.lt-error { position: relative; min-height: 72vh; display: flex; align-items: center; background-size: cover; background-position: center; }
.lt-error-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(17, 19, 48, .78), rgba(17, 19, 48, .9)); }
.lt-error .container { position: relative; z-index: 2; }
.error-code {
  font-size: clamp(90px, 16vw, 190px); font-weight: 800; line-height: 1;
  background: linear-gradient(135deg, var(--theme-color), var(--theme-color2));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.error-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 26px; }

/* --- pätička --- */
.footer-info { list-style: none; padding: 0; margin: 14px 0; font-size: 14px; opacity: .75; }
.footer-info li { margin-bottom: 4px; }
.footer-hours { list-style: none; padding: 0; margin: 18px 0 0; font-size: 14px; }
.footer-hours li { display: flex; justify-content: space-between; gap: 10px; padding: 5px 0; opacity: .8; }
.sidebar-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.sidebar-gallery a { aspect-ratio: 1 / 1; border-radius: var(--lt-radius-sm); }
.sidebar-gallery img { width: 100%; height: 100%; object-fit: cover; }

/* --- toast --- */
.lt-toast {
  position: fixed; left: 50%; bottom: 30px; transform: translate(-50%, 140%);
  z-index: 9999; max-width: min(92vw, 420px);
  background: var(--secondary-color); color: #fff;
  border-radius: var(--lt-radius-pill); padding: 14px 26px;
  box-shadow: var(--lt-shadow-lg); font-size: 15px; font-weight: 500;
  transition: transform .45s var(--lt-ease), opacity .3s var(--lt-ease);
  opacity: 0; pointer-events: none; text-align: center;
}
.lt-toast.show { transform: translate(-50%, 0); opacity: 1; }
.lt-toast.success { background: #1e8f3c; }
.lt-toast.error { background: #c62b3b; }

/* --- CTA pásik --- */
.lt-cta-strip {
  background: linear-gradient(135deg, rgba(255, 104, 26, .1), rgba(55, 212, 217, .1));
  border: 1px solid var(--lt-border);
  border-radius: var(--lt-radius-lg);
  padding: 40px; text-align: center; margin-top: 56px;
}

/* =========================================================================
   5. RESPONZIVITA
   ========================================================================= */

/* --- veľký desktop --- */
@media (min-width: 1400px) {
  .tour-title { font-size: 44px; }
}

/* --- MacBook Air 13" (1440×900, efektívna šírka okna ~1280–1440) --------- */
@media (max-width: 1440px) {
  :root { --section-space: 100px; --section-space-mobile: 70px; }

  .container { max-width: 1180px; }
  .sec-title.h1 { font-size: 40px; }
  .tour-title { font-size: 36px; }
  .hero-title { font-size: 50px; line-height: 1.15; }
  .counter-value { font-size: 38px; }

  /* dekorácie nesmú tlačiť obsah do strán */
  .shape-mockup img { max-width: 130px; height: auto; }
  .lt-sticky, .lt-sticky-sidebar { top: 96px; }
}

@media (max-width: 1280px) {
  .container { max-width: 1120px; padding-left: 24px; padding-right: 24px; }
  .hero-title { font-size: 44px; }
  .sec-title.h1 { font-size: 36px; }
  .hero-form2 { padding: 26px; }
  .tour-facts { grid-template-columns: repeat(3, 1fr); }
  .header-tools { gap: 10px; }
  .main-menu ul li { margin: 0 12px; }
}

/* --- tablet na šírku --- */
@media (max-width: 1199px) {
  .shape-mockup { display: none !important; }
  .tour-title { font-size: 32px; }
  .lt-sticky, .lt-sticky-sidebar { position: static; }
  .booking-box, .alert-box, .help-box { margin-bottom: 20px; }
  .finder-card { padding: 34px; }
}

/* --- tablet (iPad, 768–991) --- */
@media (max-width: 991px) {
  :root { --section-space: 80px; --section-space-mobile: 60px; }

  .hero-title { font-size: 38px; }
  .hero-content { text-align: center; margin-bottom: 34px; }
  .hero-btns { justify-content: center; }
  .hero-slide { padding: 90px 0 70px; }
  .hero-form2 { max-width: 560px; margin: 0 auto; }

  .sec-title.h1 { font-size: 32px; }
  .title-area { text-align: center; }
  .sec-btns { justify-content: center; margin-top: 16px; }

  .tour-gallery-thumbs { grid-template-columns: repeat(2, 1fr); }
  .tour-facts { grid-template-columns: repeat(3, 1fr); padding: 20px; }
  .tour-head-actions .tool-btn span { display: none; }
  .tour-head-actions .tool-btn { width: 44px; padding: 0; }

  .lt-stats-band { padding: 30px 20px; }
  .counter-value { font-size: 32px; }

  .author-box { flex-direction: column; text-align: center; }
  .compare-bar-inner { justify-content: center; }
  .footer-newsletter2 .newsletter-style2 { margin-bottom: 20px; }

  .widget-area2 .widget { margin-bottom: 10px; }
}

/* --- mobil (do 767) --- */
@media (max-width: 767px) {
  :root {
    --section-space: 64px;
    --section-space-mobile: 50px;
    --lt-radius: 16px;
    --lt-radius-lg: 20px;
  }

  body { font-size: 16px; }

  .container { padding-left: 18px; padding-right: 18px; }

  .space, .space-top { padding-top: 64px; }
  .space, .space-bottom, .space-extra-bottom { padding-bottom: 64px; }

  /* hlavička */
  .header-top { padding: 8px 0; }
  .header-tools { gap: 8px; width: 100%; justify-content: flex-end; }
  .tool-btn { width: 34px; height: 34px; font-size: 14px; }
  .vs-logo img { max-width: 165px; height: auto; }
  .sticky-active { padding: 12px 0; }

  /* hero */
  .hero-title { font-size: 29px; line-height: 1.25; }
  .hero-text { font-size: 15px; }
  .hero-slide { padding: 70px 0 56px; min-height: auto; }
  .hero-form2 { padding: 22px 18px; }
  .hero-form2 .h3 { font-size: 15px; }
  .hero-btns { flex-direction: column; align-items: stretch; }
  .hero-btns .vs-btn { width: 100%; text-align: center; }
  .hero-layout1 .icon-btn.prev-btn,
  .hero-layout1 .icon-btn.next-btn { display: none; }

  /* nadpisy */
  .sec-title.h1, .sec-title { font-size: 26px; line-height: 1.3; }
  .sec-subtitle { font-size: 14px; }
  .sec-text { font-size: 15px; }

  /* karty */
  .card-actions { opacity: 1; transform: none; flex-direction: row; }
  .card-action { width: 34px; height: 34px; font-size: 13px; }
  .package-footer { flex-direction: column; align-items: stretch; gap: 14px; }
  .package-footer .vs-btn { width: 100%; text-align: center; }
  .package-price { text-align: center; }

  /* detail zájazdu */
  .tour-title { font-size: 25px; }
  .tour-subtitle { font-size: 16px; }
  .tour-head-meta { gap: 8px 16px; font-size: 14px; }
  .tour-gallery-main { aspect-ratio: 4 / 3; }
  .tour-gallery-thumbs { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .tour-facts { grid-template-columns: repeat(2, 1fr); gap: 16px; padding: 18px; }
  .tour-tabs { gap: 6px; }
  .tour-tabs .nav-link { padding: 9px 16px; font-size: 14px; }

  /* program: číslo dňa nad textom */
  .itinerary-day { flex-direction: column; gap: 12px; }
  .itinerary-day::before { display: none; }
  .itinerary-num { flex-direction: row; gap: 6px; width: auto; height: 40px; padding: 0 18px; align-self: flex-start; }
  .itinerary-num strong { font-size: 17px; }

  /* tabuľka termínov -> karty */
  .departures-wrap { overflow: visible; }
  .departures-table { min-width: 0; border-spacing: 0; }
  .departures-table thead { display: none; }
  .departures-table tr {
    display: block; background: var(--lt-surface);
    border: 1px solid var(--lt-border); border-radius: var(--lt-radius);
    margin-bottom: 12px; padding: 6px 0;
  }
  .departures-table td {
    display: flex; justify-content: space-between; align-items: center; gap: 12px;
    border: 0 !important; border-radius: 0 !important; padding: 10px 16px; text-align: right !important;
  }
  .departures-table td::before {
    content: attr(data-label);
    font-size: 12px; text-transform: uppercase; letter-spacing: .04em;
    color: var(--lt-muted); font-weight: 600;
  }
  .departures-table td:last-child { padding-top: 6px; }
  .departures-table td:last-child .vs-btn { width: 100%; text-align: center; }
  .departures-table tr:hover { transform: none; }

  /* rezervačný box + mobilná lišta */
  .booking-box-head { padding: 20px 22px; }
  .booking-box-head .price strong { font-size: 28px; }
  .booking-box-body { padding: 20px 22px 24px; }
  .mobile-book-bar { display: flex; }
  body.page-tour-detail { padding-bottom: 86px; }
  body.page-tour-detail .scrollToTop { bottom: 96px; }
  .compare-bar ~ .mobile-book-bar { bottom: 84px; }

  /* filtre */
  .lt-filter-bar { padding: 18px; }
  .filter-pills { gap: 8px; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 8px; -webkit-overflow-scrolling: touch; }
  .filter-pill { flex: 0 0 auto; }

  /* vyhľadávač */
  .finder-card { padding: 24px 18px; }
  .finder-question { font-size: 21px; }
  .finder-options { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .finder-option { padding: 16px 10px; font-size: 14px; }
  .finder-option i { font-size: 22px; }
  .finder-nav .vs-btn { flex: 1; text-align: center; }

  /* rezervačné kroky */
  .booking-steps { gap: 6px; }
  .booking-step { min-width: 0; flex: 1; padding: 10px 6px; font-size: 12px; }
  .booking-step .num { display: none; }

  /* porovnanie */
  .compare-table th:first-child, .compare-table td:first-child { min-width: 118px; font-size: 14px; }
  .compare-table th, .compare-table td { padding: 12px; }
  .compare-bar-items { overflow-x: auto; }

  /* ostatné */
  .lt-stats-band { padding: 24px 14px; }
  .counter-value { font-size: 28px; }
  .counter-label { font-size: 13px; }
  .features-style1 { padding: 30px 20px; }
  .contact-box { padding: 28px 20px; }
  .map-wrap { aspect-ratio: 4 / 3; }
  .post-content { font-size: 16px; }
  .post-content blockquote { padding: 18px 20px; font-size: 16px; }
  .accordion-button { font-size: 15px; padding: 16px 18px; }
  .accordion-body { padding: 4px 18px 18px; font-size: 15px; }
  .lt-cta-strip { padding: 28px 20px; }
  .interests-grid { grid-template-columns: 1fr 1fr; }
  .captcha-row { gap: 10px; }
  .captcha-question { min-width: 0; font-size: 14px; }
  .sidebar-gallery { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .lt-toast { bottom: 100px; left: 16px; right: 16px; transform: translateY(140%); max-width: none; }
  .lt-toast.show { transform: none; }
  .scrollToTop { bottom: 20px; right: 16px; }
  .copyright-menu ul { justify-content: center; }
  .copyright-wrap { text-align: center; }
}

/* --- malý mobil --- */
@media (max-width: 400px) {
  .hero-title { font-size: 25px; }
  .sec-title.h1 { font-size: 23px; }
  .tour-facts { grid-template-columns: 1fr 1fr; }
  .finder-options { grid-template-columns: 1fr; }
  .interests-grid { grid-template-columns: 1fr; }
  .vs-logo img { max-width: 145px; }
  .booking-step { font-size: 11px; }
}

/* dotykové zariadenia: bez hover efektov, ktoré sa „zaseknú" */
@media (hover: none) {
  .lt-card:hover, .package-style1:hover, .vs-blog.blog-style3:hover { transform: none; }
  .card-actions { opacity: 1; transform: none; }
}

/* =========================================================================
   6. DOPLNKY — triedy použité v jednotlivých stránkach
   ========================================================================= */

/* pásik so štatistikami (varianta bez rámu) */
.lt-stats {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 20px;
  background: var(--lt-surface); border: 1px solid var(--lt-border);
  border-radius: var(--lt-radius-lg); box-shadow: var(--lt-shadow);
  padding: 34px 26px; text-align: center;
}
.lt-stats .stat strong,
.lt-stats strong { display: block; font-size: 34px; font-weight: 700; color: var(--theme-color); line-height: 1.1; }
.lt-stats .stat span,
.lt-stats span { color: var(--lt-muted); font-size: 14px; }

/* naposledy prezerané */
.recent-tour { display: block; height: 100%; padding-bottom: 18px; }
.recent-tour .lt-img { aspect-ratio: 16 / 10; border-radius: var(--lt-radius-lg) var(--lt-radius-lg) 0 0; box-shadow: none; }
.recent-tour .lt-img img { width: 100%; height: 100%; object-fit: cover; }
.recent-tour-body { padding: 18px 20px 0; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.recent-tour-body h4 { font-size: 17px; margin: 0; color: var(--title-color); }
.recent-tour-body span { font-weight: 700; color: var(--theme-color); white-space: nowrap; }

/* aktívne filtre nad výpisom článkov */
.blog-active-filters { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-bottom: 24px; }
.blog-active-filters .chip {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255, 104, 26, .1); color: var(--theme-color);
  border-radius: var(--lt-radius-pill); padding: 6px 14px; font-size: 14px; font-weight: 500;
}
.blog-active-filters .chip a { color: inherit; font-size: 12px; }

/* karta člena tímu bez vlastnej triedy */
.team-style1 { text-align: center; }

/* obrázková mriežka detailu destinácie */
.dest-gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.dest-gallery a { aspect-ratio: 4 / 3; display: block; border-radius: var(--lt-radius); overflow: hidden; }
.dest-gallery img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 767px) { .dest-gallery { grid-template-columns: repeat(2, 1fr); gap: 10px; } }

/* sekcia bez zbytočného horného odsadenia po breadcrumbe */
.recently-viewed[hidden] { display: none !important; }

/* --- mapa v kontakte: dlaždice OSM stiahnuté pri štarte servera ---------- */
.lt-map {
  position: relative; overflow: hidden;
  border-radius: var(--lt-radius-lg); box-shadow: var(--lt-shadow);
  min-height: 380px; background: var(--lt-surface-2);
}
.lt-map iframe { width: 100%; height: 450px; border: 0; display: block; }
.lt-map-preview { position: relative; width: 100%; height: 100%; }
.map-tiles { display: grid; width: 100%; line-height: 0; }
.map-tiles img { width: 100%; height: auto; display: block; }
html[data-theme="dark"] .map-tiles img { filter: invert(.92) hue-rotate(180deg) saturate(.7) brightness(.95); }

.map-pin {
  position: absolute; transform: translate(-50%, -100%);
  color: var(--theme-color); font-size: 38px; line-height: 1;
  filter: drop-shadow(0 6px 10px rgba(16, 24, 40, .35));
  pointer-events: none;
}
.map-pin::after {
  content: ''; position: absolute; left: 50%; bottom: -6px; transform: translateX(-50%);
  width: 14px; height: 5px; border-radius: 50%; background: rgba(16, 24, 40, .25);
}

.lt-map-btn {
  position: absolute; left: 50%; bottom: 24px; transform: translateX(-50%);
  z-index: 3; box-shadow: var(--lt-shadow-lg);
}
.map-attrib {
  position: absolute; right: 8px; bottom: 6px; z-index: 3;
  background: rgba(255, 255, 255, .8); color: #555;
  font-size: 10px; padding: 2px 7px; border-radius: 4px;
}
@media (max-width: 767px) {
  .lt-map { min-height: 260px; }
  .lt-map iframe { height: 320px; }
  .map-pin { font-size: 30px; }
}

/* =========================================================================
   7. OPRAVY PO VIZUÁLNEJ KONTROLE
   ========================================================================= */

/* prepínač jazyka a témy sedí na oranžovej lište — potrebuje biely kontrast */
.header-top .lang-switch a { color: rgba(255, 255, 255, .7); font-weight: 600; }
.header-top .lang-switch a:hover { color: #fff; }
.header-top .lang-switch a.active {
  color: #fff; background: rgba(255, 255, 255, .22); padding: 3px 9px;
  border-radius: var(--lt-radius-pill);
}
.header-top .lang-switch span { color: rgba(255, 255, 255, .45); }

.header-top .tool-btn { background: rgba(255, 255, 255, .18); border-color: rgba(255, 255, 255, .3); }
.header-top .tool-btn:hover { background: #fff; color: var(--theme-color); border-color: #fff; }

/* čitateľnosť textu v hero — bez tmavého závoja splýva s fotkou */
.hero-slide.hero-mask { position: relative; }
.hero-slide.hero-mask::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(100deg, rgba(12, 14, 26, .82) 0%, rgba(12, 14, 26, .55) 45%, rgba(12, 14, 26, .15) 75%);
}
.hero-slide.hero-mask > .container { position: relative; z-index: 2; }
.hero-content .hero-subtitle { color: #ffb383; text-shadow: 0 2px 12px rgba(0, 0, 0, .4); }
.hero-content .hero-title { text-shadow: 0 4px 24px rgba(0, 0, 0, .35); }
.hero-content .hero-text { color: rgba(255, 255, 255, .92); }

@media (max-width: 991px) {
  .hero-slide.hero-mask::before {
    background: linear-gradient(180deg, rgba(12, 14, 26, .75), rgba(12, 14, 26, .88));
  }
}

/* v tmavej téme stmavne horná lišta — text v nej musí zostať svetlý */
html[data-theme="dark"] .header-top .header-contact li,
html[data-theme="dark"] .header-top .header-contact a,
html[data-theme="dark"] .header-top .header-social a {
  color: rgba(255, 255, 255, .72);
}
html[data-theme="dark"] .header-top .header-contact a:hover,
html[data-theme="dark"] .header-top .header-social a:hover { color: var(--theme-color); }
html[data-theme="dark"] .header-top .header-contact i { color: var(--theme-color); }
html[data-theme="dark"] .header-top .tool-btn { background: rgba(255, 255, 255, .1); border-color: rgba(255, 255, 255, .18); }
html[data-theme="dark"] .header-top .tool-btn:hover { background: var(--theme-color); border-color: var(--theme-color); color: #fff; }
html[data-theme="dark"] .header-top .vs-btn.style2 { border-color: rgba(255, 255, 255, .35); color: #fff; }

/* drobnica v breadcrumbe bola prislabá na fotke */
.breadcumb-menu li,
.breadcumb-menu li a { color: rgba(255, 255, 255, .85); }
.breadcumb-menu li a:hover { color: var(--theme-color); }
.breadcumb-content { text-shadow: 0 2px 16px rgba(0, 0, 0, .35); }

/* pozadia, ktoré šablóna brala z --white-color (ten v tmavej téme nemeníme) */
html[data-theme="dark"] .bg-white,
html[data-theme="dark"] .vs-blog,
html[data-theme="dark"] .package-style1,
html[data-theme="dark"] .destination-style1 .destination-info,
html[data-theme="dark"] .hero-form2,
html[data-theme="dark"] .tour-tabs .nav-link,
html[data-theme="dark"] .vs-pagination a,
html[data-theme="dark"] .vs-pagination span,
html[data-theme="dark"] .filter-pill,
html[data-theme="dark"] .contact-box,
html[data-theme="dark"] .lt-stats,
html[data-theme="dark"] .lt-stats-band,
html[data-theme="dark"] .step-card,
html[data-theme="dark"] .finder-card,
html[data-theme="dark"] .finder-option,
html[data-theme="dark"] .interest-chip,
html[data-theme="dark"] .booking-step,
html[data-theme="dark"] .team-card,
html[data-theme="dark"] .departures-table td,
html[data-theme="dark"] .search-suggest,
html[data-theme="dark"] .compare-bar,
html[data-theme="dark"] .compare-table th:first-child,
html[data-theme="dark"] .compare-table td:first-child,
html[data-theme="dark"] .mobile-book-bar,
html[data-theme="dark"] .tagcloud a,
html[data-theme="dark"] .share-btns a,
html[data-theme="dark"] .share-btns button {
  background-color: var(--lt-surface);
  border-color: var(--lt-border);
}
html[data-theme="dark"] .quote-summary,
html[data-theme="dark"] .author-box,
html[data-theme="dark"] .post-content blockquote,
html[data-theme="dark"] .captcha-group,
html[data-theme="dark"] .lt-empty,
html[data-theme="dark"] .team-langs span,
html[data-theme="dark"] .team-social a,
html[data-theme="dark"] .booking-ref {
  background-color: var(--lt-surface-2);
  border-color: var(--lt-border);
}
html[data-theme="dark"] .card-action { background: rgba(27, 29, 46, .92); color: #f2f2f7; }
html[data-theme="dark"] .card-action:hover { background: var(--theme-color); color: #fff; }
html[data-theme="dark"] .booking-step.active .num { background: rgba(0, 0, 0, .25); }
html[data-theme="dark"] .map-attrib { background: rgba(27, 29, 46, .85); color: #b7b7c6; }
html[data-theme="dark"] .tour-head-actions .tool-btn { background: var(--lt-surface-2); color: var(--body-color); }

/* hlavička v tmavej téme: šablóna ju farbí cez --white-color na .sticky-wrapper
   aj na .header-layout2 .sticky-wrapper .container — treba prebiť oboje */
html[data-theme="dark"] .vs-header .sticky-wrapper,
html[data-theme="dark"] .header-layout2 .sticky-wrapper .container,
html[data-theme="dark"] .vs-header .sticky-wrapper .sticky-active,
html[data-theme="dark"] .vs-header .sticky-wrapper .sticky-active.active {
  background-color: #171929;
}
html[data-theme="dark"] .header-layout2 .sticky-wrapper .container { box-shadow: 0 10px 30px -18px rgba(0, 0, 0, .8); }
html[data-theme="dark"] .main-menu > ul > li > a { color: #ecedf5; }
html[data-theme="dark"] .main-menu > ul > li > a:hover,
html[data-theme="dark"] .main-menu ul li.active > a { color: var(--theme-color); }
html[data-theme="dark"] .main-menu .sub-menu,
html[data-theme="dark"] .main-menu .mega-menu {
  background-color: var(--lt-surface); border: 1px solid var(--lt-border);
}
html[data-theme="dark"] .main-menu .sub-menu li a { color: var(--body-color); }
html[data-theme="dark"] .main-menu .sub-menu li a:hover { color: var(--theme-color); }
html[data-theme="dark"] .vs-menu-toggle,
html[data-theme="dark"] .searchBoxToggler,
html[data-theme="dark"] .wishlist-btn { color: #ecedf5; }

/* .vs-btn.style2 má v šablóne biele pozadie — v tmavej téme by zmizol text */
html[data-theme="dark"] .vs-btn.style2 {
  background-color: transparent;
  border: 2px solid var(--theme-color);
  color: var(--theme-color);
}
html[data-theme="dark"] .vs-btn.style2:hover { background-color: var(--theme-color); color: #fff; }
html[data-theme="dark"] .header-top .vs-btn.style2 {
  border-color: rgba(255, 255, 255, .35); color: #fff;
}
html[data-theme="dark"] .header-top .vs-btn.style2:hover { border-color: var(--theme-color); background-color: var(--theme-color); }

/* =========================================================================
   8. TRIEDY POUŽITÉ V STRÁNKACH (rezervácia, kvíz, porovnanie, kontakt…)
   ========================================================================= */

/* --- kroky rezervácie ---------------------------------------------------- */
.lt-steps {
  display: flex; gap: 10px; list-style: none; padding: 0; margin: 0 0 40px;
  counter-reset: none;
}
.lt-step {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 12px; border-radius: var(--lt-radius);
  background: var(--lt-surface-2); border: 1px solid var(--lt-border);
  color: var(--lt-muted); font-size: 14px; font-weight: 600;
  transition: all .3s var(--lt-ease);
}
.lt-step-num {
  width: 26px; height: 26px; flex: 0 0 26px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(0, 0, 0, .08); font-size: 12px;
}
.lt-step.is-active {
  background: var(--theme-color); border-color: var(--theme-color); color: #fff;
  box-shadow: var(--lt-shadow-brand);
}
.lt-step.is-active .lt-step-num { background: rgba(255, 255, 255, .28); }
.lt-step.is-done { border-color: #28a745; color: #28a745; background: rgba(40, 167, 69, .07); }
.lt-step.is-done .lt-step-num { background: rgba(40, 167, 69, .16); }

/* --- panely krokov ------------------------------------------------------- */
.lt-pane[hidden] { display: none !important; }
.lt-pane-title { font-size: 26px; margin-bottom: 6px; }
.lt-pane-subtitle { color: var(--lt-muted); margin-bottom: 26px; }
.lt-pane-nav { display: flex; justify-content: space-between; gap: 12px; margin-top: 30px; flex-wrap: wrap; }

/* --- doplnkové služby ---------------------------------------------------- */
.lt-extra {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 16px; margin-bottom: 10px;
  border: 1px solid var(--lt-border); border-radius: var(--lt-radius);
  background: var(--lt-surface); cursor: pointer;
  transition: all .25s var(--lt-ease);
}
.lt-extra:hover { border-color: var(--theme-color); }
.lt-extra:has(input:checked) { border-color: var(--theme-color); background: rgba(255, 104, 26, .06); }
.lt-extra input { width: 18px; height: 18px; accent-color: var(--theme-color); flex: 0 0 18px; }
.lt-extra-price { margin-left: auto; color: var(--theme-color); font-weight: 700; white-space: nowrap; }

/* --- zhrnutie ceny ------------------------------------------------------- */
.lt-summary {
  position: sticky; top: 110px;
  background: var(--lt-surface) !important;
  border: 1px solid var(--lt-border);
  border-radius: var(--lt-radius-lg); box-shadow: var(--lt-shadow);
  padding: 26px;
}
.lt-summary-title { font-size: 20px; margin-bottom: 18px; }
.lt-summary-tour[hidden] { display: none !important; }
.lt-summary-tour img { width: 100%; border-radius: var(--lt-radius); box-shadow: var(--lt-shadow-sm); margin-bottom: 14px; }
.lt-summary-name { font-size: 17px; margin-bottom: 4px; }
.lt-summary-date { font-size: 14px; color: var(--lt-muted); }

.lt-summary-rows { list-style: none; padding: 0; margin: 16px 0 0; }
.lt-summary-rows li {
  display: flex; align-items: baseline; justify-content: space-between; gap: 14px;
  padding: 8px 0; font-size: 15px; color: var(--body-color);
  border-bottom: 1px dashed var(--lt-border);
}
.lt-summary-rows li:last-child { border-bottom: 0; }
.lt-summary-rows li span:last-child { font-weight: 600; color: var(--title-color); white-space: nowrap; }

.lt-summary-total {
  display: flex; align-items: baseline; justify-content: space-between; gap: 14px;
  margin-top: 14px; padding-top: 16px; border-top: 2px solid var(--lt-border);
  font-size: 21px; font-weight: 700; color: var(--title-color);
}
.lt-summary-total span:last-child, .lt-summary-total strong { color: var(--theme-color); }
.lt-hint { font-size: 13px; color: var(--lt-muted); margin-top: 10px; }
.lt-seats-warn {
  background: rgba(224, 56, 74, .1); color: #e0384a;
  border-radius: var(--lt-radius-sm); padding: 10px 14px;
  font-size: 14px; font-weight: 600; margin-top: 14px; text-align: center;
}
.lt-booking-ref {
  display: inline-block; background: var(--lt-surface-2);
  border: 1px dashed var(--theme-color); border-radius: var(--lt-radius);
  padding: 14px 30px; margin: 18px 0;
  font-size: 22px; font-weight: 700; color: var(--theme-color); letter-spacing: .06em;
}

/* --- formuláre ----------------------------------------------------------- */
.lt-form-wrap, .lt-form, .lt-booking-form { position: relative; }
.form-label { display: block; font-weight: 600; font-size: 14px; color: var(--title-color); margin-bottom: 7px; }
.lt-form-error {
  background: rgba(220, 53, 69, .1); color: #c62b3b;
  border-radius: var(--lt-radius-sm); padding: 12px 16px; margin-bottom: 16px; font-size: 14px;
}
.lt-form-error[hidden] { display: none !important; }
.lt-form-success {
  text-align: center; padding: 54px 30px;
  background: rgba(40, 167, 69, .07); border: 1px solid rgba(40, 167, 69, .28);
  border-radius: var(--lt-radius-lg);
}
.lt-form-success i { font-size: 54px; color: #28a745; margin-bottom: 18px; display: block; }
.lt-form-success[hidden] { display: none !important; }

.form-check { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 10px; }
.form-check-input { width: 18px; height: 18px; margin: 3px 0 0; accent-color: var(--theme-color); flex: 0 0 18px; }
.form-check-label { font-size: 14px; color: var(--body-color); }
.form-check-label a { color: var(--theme-color); text-decoration: underline; }

/* --- kvíz (vyhľadávač zájazdov) ------------------------------------------ */
.lt-quiz {
  background: var(--lt-surface); border: 1px solid var(--lt-border);
  border-radius: var(--lt-radius-lg); box-shadow: var(--lt-shadow-lg);
  padding: 44px; max-width: 900px; margin: 0 auto;
}
.lt-quiz-head { margin-bottom: 30px; }
.lt-quiz-bar { height: 6px; background: var(--lt-surface-2); border-radius: var(--lt-radius-pill); overflow: hidden; margin-bottom: 10px; }
.lt-quiz-bar-fill {
  height: 100%; width: 25%; border-radius: inherit;
  background: linear-gradient(90deg, var(--theme-color), #ff8a3d);
  transition: width .4s var(--lt-ease);
}
.lt-quiz-step { font-size: 13px; color: var(--lt-muted); }
.lt-quiz-title { font-size: 27px; margin-bottom: 26px; }
.lt-quiz-pane[hidden] { display: none !important; }
.lt-quiz-nav { display: flex; justify-content: space-between; gap: 12px; margin-top: 30px; }
.lt-quiz-results { margin-top: 10px; }

.lt-tiles { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 14px; }
.lt-tiles-sm { grid-template-columns: repeat(auto-fit, minmax(104px, 1fr)); }
.lt-tile {
  border: 2px solid var(--lt-border); background: var(--lt-surface);
  border-radius: var(--lt-radius); padding: 20px 14px; text-align: center;
  cursor: pointer; color: var(--body-color); font-weight: 500;
  transition: all .25s var(--lt-ease);
}
.lt-tile i { display: block; font-size: 26px; color: var(--theme-color); margin-bottom: 10px; }
.lt-tile:hover { border-color: var(--theme-color); transform: translateY(-3px); box-shadow: var(--lt-shadow); }
.lt-tile.is-selected, .lt-tile[aria-pressed="true"] {
  border-color: var(--theme-color); background: rgba(255, 104, 26, .08);
  color: var(--theme-color); font-weight: 600;
}
.badge-match {
  display: inline-block; background: rgba(40, 167, 69, .12); color: #1e8f3c;
  border-radius: var(--lt-radius-pill); padding: 4px 12px; font-size: 13px; font-weight: 700;
}

/* --- porovnanie ---------------------------------------------------------- */
.lt-compare-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; padding-bottom: 10px; }
.lt-compare-table { width: 100%; border-collapse: separate; border-spacing: 0; min-width: 780px; }
.lt-compare-table th, .lt-compare-table td {
  padding: 16px 18px; border-bottom: 1px solid var(--lt-border); text-align: left; vertical-align: middle;
}
.lt-compare-head, .lt-compare-table th:first-child, .lt-compare-table td:first-child {
  position: sticky; left: 0; z-index: 2; background: var(--lt-surface);
  font-weight: 600; color: var(--title-color); min-width: 150px;
  box-shadow: 6px 0 12px -8px rgba(16, 24, 40, .2);
}
.lt-compare-tour img { width: 100%; max-width: 210px; border-radius: var(--lt-radius-sm); box-shadow: var(--lt-shadow-sm); }
.lt-compare-name { font-size: 17px; margin: 12px 0 4px; }
.lt-compare-dest { font-size: 14px; color: var(--lt-muted); }
.lt-compare-price { font-size: 22px; font-weight: 700; color: var(--theme-color); }
.lt-compare-remove {
  width: 34px; height: 34px; border-radius: 50%; cursor: pointer;
  border: 1px solid var(--lt-border); background: transparent; color: var(--lt-muted);
  transition: all .25s var(--lt-ease);
}
.lt-compare-remove:hover { background: #e0384a; border-color: #e0384a; color: #fff; }

/* --- prázdne stavy ------------------------------------------------------- */
.lt-empty-title { margin-bottom: 10px; }
.lt-empty-text { color: var(--lt-muted); max-width: 460px; margin: 0 auto 22px; }

/* --- kontakt ------------------------------------------------------------- */
.lt-contact-box {
  text-align: center; padding: 36px 26px; height: 100%;
  background: var(--lt-surface); border: 1px solid var(--lt-border);
  border-radius: var(--lt-radius-lg); box-shadow: var(--lt-shadow-sm);
  transition: transform var(--lt-dur) var(--lt-ease), box-shadow var(--lt-dur) var(--lt-ease);
}
.lt-contact-box:hover { transform: translateY(-6px); box-shadow: var(--lt-shadow-lg); }
.lt-contact-icon {
  width: 66px; height: 66px; margin: 0 auto 18px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--lt-radius-pill);
  background: linear-gradient(135deg, rgba(255, 104, 26, .14), rgba(55, 212, 217, .14));
  color: var(--theme-color); font-size: 25px;
}
.lt-contact-title { font-size: 19px; margin-bottom: 10px; }
.lt-contact-lines { list-style: none; padding: 0; margin: 0; }
.lt-contact-lines li { margin-bottom: 5px; color: var(--body-color); }
.lt-contact-lines a { color: var(--body-color); }
.lt-contact-lines a:hover { color: var(--theme-color); }
.lt-contact-aside {
  padding: 34px 32px;
  border-radius: var(--lt-radius-lg);
  border: 1px solid var(--lt-border);
  box-shadow: var(--lt-shadow-sm);
  height: 100%;
}
@media (max-width: 575px) { .lt-contact-aside { padding: 26px 22px; } }
.lt-address { font-style: normal; line-height: 1.9; }
.lt-hours { list-style: none; padding: 0; margin: 12px 0 0; }
.lt-hours li { display: flex; justify-content: space-between; gap: 12px; padding: 7px 0; border-bottom: 1px dashed var(--lt-border); font-size: 15px; }
.lt-hours li:last-child { border-bottom: 0; }
.lt-social { display: flex; gap: 8px; margin-top: 16px; }
.lt-social-link {
  width: 40px; height: 40px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--lt-surface-2); border: 1px solid var(--lt-border);
  color: var(--body-color); transition: all .25s var(--lt-ease);
}
.lt-social-link:hover { background: var(--theme-color); border-color: var(--theme-color); color: #fff; transform: translateY(-2px); }

/* --- zájazd na mieru: kroky procesu -------------------------------------- */
.lt-process-box {
  text-align: center; padding: 34px 22px; height: 100%;
  background: var(--lt-surface); border: 1px solid var(--lt-border);
  border-radius: var(--lt-radius-lg); box-shadow: var(--lt-shadow-sm);
  transition: transform var(--lt-dur) var(--lt-ease), box-shadow var(--lt-dur) var(--lt-ease);
}
.lt-process-box:hover { transform: translateY(-5px); box-shadow: var(--lt-shadow-lg); }
.lt-process-num {
  width: 54px; height: 54px; margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--lt-radius-pill);
  background: linear-gradient(135deg, var(--theme-color), #ff8a3d);
  color: #fff; font-size: 21px; font-weight: 700; box-shadow: var(--lt-shadow-brand);
}
.lt-process-title { font-size: 18px; margin-bottom: 8px; }
.lt-process-text { font-size: 15px; color: var(--body-color); margin: 0; }

/* --- filtre a výsledky --------------------------------------------------- */
/* checkbox pattern: počiatočný stav sa nastaví cez CSS media query už pri
   parse (pred prvým vykreslením), takže na mobile netreba JS a nevzniká CLS */
.lt-filter-check { position: absolute; opacity: 0; pointer-events: none; }
.lt-filter-summary {
  cursor: pointer; font-weight: 600; padding: 12px 4px; margin: 0; list-style: none;
  display: none; align-items: center; justify-content: space-between; gap: 10px; user-select: none;
}
.lt-filter-summary::after {
  content: '\f078'; font-family: 'Font Awesome 5 Pro'; font-weight: 300;
  color: var(--theme-color); transition: transform .3s var(--lt-ease); margin-left: auto;
}
@media (min-width: 992px) {
  .lt-filter-toggle .lt-filter-form { display: flex !important; }  /* desktop: vždy otvorené */
}
@media (max-width: 991px) {
  .lt-filter-summary { display: flex; }
  .lt-filter-toggle .lt-filter-form { display: none; }            /* mobil: default zbalené (bez CLS) */
  .lt-filter-check:checked ~ .lt-filter-form { display: flex; }
  .lt-filter-check:checked ~ .lt-filter-summary::after { transform: rotate(180deg); }
}
.lt-filter-reset { color: var(--theme-color); text-decoration: underline; font-size: 14px; }
.lt-price-range { display: flex; align-items: center; gap: 8px; }
.lt-price-range input { min-width: 0; }
.lt-results-count strong { color: var(--theme-color); }
.lt-sort-form { display: flex; align-items: center; gap: 10px; }
.lt-sort-form select { min-width: 200px; }

/* --- bočné panely a CTA -------------------------------------------------- */
.lt-aside-title, .lt-block-title { font-size: 20px; margin-bottom: 16px; }
.lt-aside-list { list-style: none; padding: 0; margin: 0; }
.lt-aside-list li { padding: 10px 0; border-bottom: 1px solid var(--lt-border); }
.lt-aside-list li:last-child { border-bottom: 0; }
.lt-info-label { color: var(--lt-muted); font-size: 14px; }
.lt-info-value { color: var(--title-color); font-weight: 600; }
.lt-sidebar-actions { display: flex; flex-direction: column; gap: 10px; }

.lt-cta-section {
  background: linear-gradient(135deg, rgba(255, 104, 26, .1), rgba(55, 212, 217, .1));
  border: 1px solid var(--lt-border); border-radius: var(--lt-radius-lg);
  padding: 46px 34px; text-align: center;
}
.lt-cta-title { margin-bottom: 12px; }
.lt-cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 22px; }

/* --- štatistiky a počítadlá ---------------------------------------------- */
.lt-counter-section { }
.lt-stat-num { display: block; font-size: 40px; font-weight: 700; color: var(--theme-color); line-height: 1.1; }
.lt-stat-label { color: var(--lt-muted); font-size: 15px; }
.counter-number { display: inline-block; }
.counter-title { font-size: 40px; font-weight: 700; color: var(--theme-color); line-height: 1.1; }
.counter-text { color: var(--lt-muted); font-size: 15px; margin: 0; }

/* --- tím ----------------------------------------------------------------- */
.team-content { padding: 0 20px; }
.team-name { font-size: 19px; margin-bottom: 2px; }
.team-degi { display: block; color: var(--theme-color); font-size: 14px; font-weight: 600; margin-bottom: 10px; }
.team-text { font-size: 15px; color: var(--body-color); }

/* --- autor článku a zdieľanie -------------------------------------------- */
.blog-author, .author-box { display: flex; gap: 20px; align-items: center; }
.author-img img, .author-photo {
  width: 84px; height: 84px; border-radius: 50%; object-fit: cover;
  box-shadow: var(--lt-shadow-sm); flex: 0 0 84px;
}
.author-label { font-size: 12px; text-transform: uppercase; letter-spacing: .06em; color: var(--lt-muted); }
.author-name { font-size: 19px; margin: 2px 0; }
.author-role { color: var(--theme-color); font-size: 14px; font-weight: 600; }
.share-links, .share-btns { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.share-links-title { font-weight: 600; margin-right: 6px; }
.share-links a, .share-links button {
  width: 40px; height: 40px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--lt-border); background: var(--lt-surface);
  color: var(--body-color); cursor: pointer; transition: all .25s var(--lt-ease);
}
.share-links a:hover, .share-links button:hover {
  background: var(--theme-color); border-color: var(--theme-color); color: #fff; transform: translateY(-2px);
}

/* --- článok --------------------------------------------------------------*/
.blog-single .blog-meta { display: flex; flex-wrap: wrap; gap: 8px 20px; margin-bottom: 18px; color: var(--lt-muted); font-size: 14px; }
.blog-single .blog-meta i { color: var(--theme-color); margin-right: 5px; }
.blog-inner-img { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 30px 0; }
.blog-inner-img a { border-radius: var(--lt-radius); overflow: hidden; }
.blog-inner-img img { width: 100%; height: 100%; object-fit: cover; }

/* --- FAQ skupiny --------------------------------------------------------- */
.faq-group { margin-bottom: 44px; }
.faq-group > h2, .faq-group > h3 { margin-bottom: 18px; }

/* --- chybová stránka ----------------------------------------------------- */
.error-wrapper { position: relative; min-height: 72vh; display: flex; align-items: center; background-size: cover; background-position: center; }
.error-content { position: relative; z-index: 2; text-align: center; }
.error-title { color: #fff; margin-bottom: 12px; }
.error-text { color: rgba(255, 255, 255, .82); max-width: 520px; margin: 0 auto 24px; }

/* --- widget CTA v bočnom paneli ------------------------------------------ */
.widget-cta {
  background: linear-gradient(135deg, rgba(255, 104, 26, .12), rgba(55, 212, 217, .12));
  border-radius: var(--lt-radius-lg); padding: 28px; text-align: center;
}

/* --- responzivita doplnkov ----------------------------------------------- */
@media (max-width: 991px) {
  .lt-summary { position: static; }
  .lt-quiz { padding: 30px 22px; }
}
@media (max-width: 767px) {
  .lt-steps { gap: 6px; }
  .lt-step { flex-direction: column; gap: 5px; padding: 10px 6px; font-size: 11px; text-align: center; }
  .lt-step-num { width: 22px; height: 22px; flex-basis: 22px; font-size: 11px; }
  .lt-quiz { padding: 22px 16px; }
  .lt-quiz-title { font-size: 20px; }
  .lt-tiles { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .lt-tiles-sm { grid-template-columns: repeat(3, 1fr); }
  .lt-tile { padding: 14px 8px; font-size: 13px; }
  .lt-tile i { font-size: 20px; }
  .lt-pane-nav .vs-btn, .lt-quiz-nav .vs-btn { flex: 1; text-align: center; }
  .lt-compare-table th:first-child, .lt-compare-table td:first-child { min-width: 116px; font-size: 14px; }
  .lt-compare-table th, .lt-compare-table td { padding: 12px; }
  .lt-cta-section { padding: 30px 20px; }
  .blog-inner-img { grid-template-columns: 1fr; }
  .lt-sort-form select { min-width: 0; width: 100%; }
  .lt-process-box { padding: 26px 18px; }
}

/* --- pätička: šablóna má tmavé pozadie, text musí byť svetlý -------------- */
.footer-wrapper .footer-info li { color: rgba(255, 255, 255, .58); }
.footer-wrapper .footer-info strong { color: rgba(255, 255, 255, .8); }
.footer-wrapper .footer-hours li { color: rgba(255, 255, 255, .65); border-bottom: 1px solid rgba(255, 255, 255, .08); }
.footer-wrapper .newsletter-style2 span { color: rgba(255, 255, 255, .6); font-size: 14px; }

/* newsletter: vstupné pole malo tyrkysovú výplň a neviditeľný text */
.footer-newsletter2 .newsletter-form .form-control {
  background: rgba(255, 255, 255, .08) !important;
  border: 1px solid rgba(255, 255, 255, .18) !important;
  color: #fff !important;
  height: 56px; padding: 0 150px 0 22px;
}
.footer-newsletter2 .newsletter-form .form-control::placeholder { color: rgba(255, 255, 255, .45); }
.footer-newsletter2 .newsletter-form { position: relative; }
.footer-newsletter2 .newsletter-form .vs-btn {
  position: absolute; right: 6px; top: 6px; height: 44px; padding: 0 24px;
}
.footer-newsletter2 .newsletter-form .form-msg { position: absolute; top: calc(100% + 6px); left: 4px; }
@media (max-width: 575px) {
  .footer-newsletter2 .newsletter-form .form-control { padding: 0 18px; height: 52px; }
  .footer-newsletter2 .newsletter-form .vs-btn { position: static; width: 100%; margin-top: 10px; height: 48px; }
  .footer-newsletter2 .newsletter-form .form-msg { position: static; }
}

/* Šablóna používa na .vs-btn dva tyrkysové pseudo-elementy ako výplň pri hoveri.
   Kolidujú s naším zaoblením a lesklým prechodom, preto ich vypíname a hover
   riešime vlastnou farbou pozadia. */
.vs-btn::before { display: none !important; }

.vs-btn { background-color: var(--theme-color); color: #fff; }
.vs-btn:hover { background-color: #e85812; color: #fff; }
.vs-btn.style4 { background-color: var(--theme-color); color: #fff; }
.vs-btn.style4:hover { background-color: #e85812; color: #fff; }
.vs-btn.style2 { background-color: #fff; color: var(--theme-color); }
.vs-btn.style2:hover { background-color: var(--theme-color); color: #fff; }

/* tlačidlo v newsletteri nesmie byť roztiahnuté na celú šírku poľa */
.footer-newsletter2 .newsletter-form .vs-btn { width: auto !important; }

/* .vs-btn.style2::after / .style4::after majú v šablóne vyššiu špecificitu než
   .vs-btn::after — lesklý prechod treba prebiť rovnako špecifickým selektorom */
.vs-btn::after,
.vs-btn.style2::after,
.vs-btn.style3::after,
.vs-btn.style4::after {
  content: '';
  position: absolute;
  inset: 0;
  width: auto;
  height: auto;
  border-radius: inherit;
  background-color: transparent;
  background-image: linear-gradient(120deg, transparent 20%, rgba(255, 255, 255, .3) 50%, transparent 80%);
  transform: translateX(-120%);
  transition: transform .7s var(--lt-ease);
  pointer-events: none;
  opacity: 1;
}
.vs-btn:hover::after,
.vs-btn.style2:hover::after,
.vs-btn.style3:hover::after,
.vs-btn.style4:hover::after { transform: translateX(120%); }

/* Karty .features-style1 majú v šablóne tmavé pozadie, preto v nich šablóna
   farbí text nabielo. My ich používame na svetlom podklade — text musí byť tmavý. */
.features-style1 .features-title,
.features-style1 .features-text {
  color: var(--title-color);
}
.features-style1 .features-text { color: var(--body-color); }
.features-style1:hover .features-title { color: var(--theme-color); }

/* =========================================================================
   9. VYCENTROVANIE IKONIEK A HORIZONTÁLNE ZAROVNANIE KARIET
   ========================================================================= */

/* --- okrúhle tlačidlá v hlavičke: ikonka presne v strede ----------------- */
.header-btns a,
.header-btns button,
.wishlist-btn,
.searchBoxToggler,
.sideMenuToggler {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  line-height: 1 !important;
  text-align: center;
  padding: 0 !important;
}
.header-btns a > i,
.header-btns button > i { line-height: 1; }

/* --- rovnako vysoké karty v karuseloch (slick) --------------------------- */
.vs-carousel .slick-track { display: flex !important; }
.vs-carousel .slick-slide { height: auto !important; }
.vs-carousel .slick-slide > div { height: 100%; }
.vs-carousel .slick-slide > div > .col-xl-3,
.vs-carousel .slick-slide > div > .col-xl-4,
.vs-carousel .slick-slide > div > [class*="col-"] { height: 100%; }

/* --- karta zájazdu: stĺpec, pätička dole, obrázok rovnaká výška ---------- */
.package-style1 {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.package-style1 .package-img { aspect-ratio: 4 / 3; }
.package-style1 .package-img > a,
.package-style1 .package-img > a img { height: 100%; width: 100%; object-fit: cover; }
.package-style1 .package-content {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
}
.package-style1 .package-title { min-height: 2.6em; }
.package-style1 .package-meta { min-height: 1.5em; }
.package-style1 .package-footer { margin-top: auto; }

/* --- karta destinácie: rovnaká výška obrázka, zhodné pozície prekrytí ---- */
.destination-style1 { height: 100%; margin-bottom: 0; }
.destination-style1 > a { display: block; height: 100%; }
.destination-style1 > a img {
  width: 100%;
  height: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

/* --- karta článku: stĺpec, meta + tlačidlo zarovnané dole ---------------- */
.vs-blog.blog-style3 {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.vs-blog.blog-style3 .blog-img { aspect-ratio: 16 / 10; }
.vs-blog.blog-style3 .blog-img > a,
.vs-blog.blog-style3 .blog-img > a img { height: 100%; width: 100%; object-fit: cover; }
.vs-blog.blog-style3 .blog-content {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
}
.vs-blog.blog-style3 .blog-title { min-height: 2.6em; }
.vs-blog.blog-style3 .blog-bottom { margin-top: auto; padding-top: 18px; border-top: 1px solid var(--lt-border); }
.vs-blog.blog-style3 .blog-content .vs-btn { align-self: flex-start; }

/* --- karta recenzie: rovnaká výška, hviezdy a avatar zarovnané ----------- */
.testi-style2 {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.testi-style2 .testi-body {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* --- pätička: otváracie hodiny odsadené od telefónov -------------------- */
.footer-contact .footer-hours {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, .1);
}

/* --- ponuková sekcia: kruhová fotka + odznak zľavy (bez „OFF") ----------- */
.offer-visual {
  position: relative;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 1 / 1;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.offer-visual .spinner-style1 {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px dashed rgba(255, 255, 255, .5);
  animation: spin 24s linear infinite;
}
.offer-visual .spinner-style1::before,
.offer-visual .spinner-style1::after {
  content: '';
  position: absolute;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background-color: var(--theme-color2);
}
.offer-visual .spinner-style1::before { top: 8%; left: 50%; transform: translateX(-50%); }
.offer-visual .spinner-style1::after { bottom: 8%; left: 50%; transform: translateX(-50%); }

.offer-photo {
  width: 82%;
  height: 82%;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: var(--lt-shadow-lg);
  border: 6px solid rgba(255, 255, 255, .9);
}
.offer-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }

.offer-badge {
  position: absolute;
  right: 4%;
  bottom: 10%;
  width: 108px;
  height: 108px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--theme-color), #ff8a3d);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--lt-shadow-brand), 0 0 0 6px rgba(255, 255, 255, .9);
  line-height: 1;
}
.offer-badge strong { font-size: 34px; font-weight: 800; }
.offer-badge span { font-size: 15px; font-weight: 600; margin-top: 2px; }

@media (max-width: 1199px) {
  .offer-visual { max-width: 340px; }
  .offer-badge { width: 88px; height: 88px; }
  .offer-badge strong { font-size: 27px; }
}

/* --- kredit tvorcu v pätičke --------------------------------------------- */
.copyright-credit {
  display: inline-block;
  margin-left: 10px;
  padding-left: 10px;
  border-left: 1px solid rgba(255, 255, 255, .18);
  font-size: inherit;
}
.copyright-credit a { color: var(--theme-color); }
.copyright-credit a:hover { color: #fff; }
.app-version {
  display: inline-block;
  margin-left: 6px;
  padding: 1px 8px;
  border-radius: var(--lt-radius-pill);
  background: rgba(255, 255, 255, .1);
  font-size: inherit;
  font-weight: 600;
  letter-spacing: .02em;
}
@media (max-width: 575px) {
  .copyright-credit { display: block; margin: 8px 0 0; padding: 0; border: 0; }
}

/* =========================================================================
   10. ODSTRÁNENÝ BREADCRUMB — skrytý H1 + horné odsadenie obsahu
   ========================================================================= */
.sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0);
  white-space: nowrap; border: 0;
}
/* breadcrumb predtým oddeľoval obsah od hlavičky — nahradíme odsadením */
main > .sr-only + section,
main > .sr-only + div,
main > section:first-child { padding-top: 60px; }
@media (max-width: 767px) { main > .sr-only + section, main > section:first-child { padding-top: 40px; } }

/* =========================================================================
   11. NEUROMARKETING + INTERAKCIE (balíky, úspora, video, klik na kartu)
   ========================================================================= */

/* --- celá karta klikateľná ---------------------------------------------- */
.card-clickable { cursor: pointer; }
.card-clickable .card-action,
.card-clickable .vs-btn,
.card-clickable a[href]:not([aria-hidden="true"]) { position: relative; z-index: 4; }

/* --- odznak úspory na karte (vedľa zľavy) ------------------------------- */
.badge-save {
  border-radius: var(--lt-radius-pill);
  padding: 5px 12px; font-size: 12px; font-weight: 700; color: #fff;
  background: #1e8f3c; box-shadow: var(--lt-shadow-sm); backdrop-filter: blur(4px);
}

/* --- úspora v cenovom boxe detailu -------------------------------------- */
.booking-box-head .price-save {
  display: inline-block; margin-top: 10px;
  background: rgba(255, 255, 255, .2); color: #fff;
  border-radius: var(--lt-radius-pill); padding: 5px 14px;
  font-size: 15px; font-weight: 700;
}
.booking-box-head .price-save i { margin-right: 5px; }

/* --- balíky služieb (decoy) --------------------------------------------- */
.pkg-options { display: flex; flex-direction: column; gap: 10px; margin-bottom: 14px; }
.pkg-option {
  position: relative;
  display: flex; align-items: center; gap: 12px;
  padding: 14px 16px; cursor: pointer;
  border: 2px solid var(--lt-border); border-radius: var(--lt-radius);
  background: var(--lt-surface); transition: all .2s var(--lt-ease);
}
.pkg-option:hover { border-color: var(--theme-color); }
.pkg-option input { accent-color: var(--theme-color); width: 20px; height: 20px; flex: 0 0 20px; }
.pkg-option:has(input:checked) { border-color: var(--theme-color); background: rgba(255, 104, 26, .06); box-shadow: var(--lt-shadow-sm); }
.pkg-body { flex: 1; display: flex; flex-direction: column; gap: 2px; }
.pkg-name { font-weight: 700; color: var(--title-color); }
.pkg-desc { font-size: 12.5px; color: var(--lt-muted); line-height: 1.4; }
.pkg-price { font-weight: 700; color: var(--theme-color); white-space: nowrap; }
.pkg-best { border-color: var(--theme-color); }
.pkg-flag {
  position: absolute; top: -10px; right: 14px;
  background: linear-gradient(135deg, var(--theme-color), #ff8a3d); color: #fff;
  font-size: 10.5px; font-weight: 700; letter-spacing: .03em;
  padding: 3px 10px; border-radius: var(--lt-radius-pill); box-shadow: var(--lt-shadow-brand);
}
.single-room { margin-top: 4px; }

/* --- záloha pod tlačidlom rezervácie ------------------------------------ */
.book-deposit {
  margin: 10px 0 0; text-align: center; font-size: 13.5px; color: var(--body-color);
}
.book-deposit strong { color: var(--theme-color); font-size: 15px; }
.book-deposit span { display: block; font-size: 12px; color: var(--lt-muted); }

/* --- sociálny dôkaz na detaile ------------------------------------------ */
.tour-socialproof {
  display: inline-flex; align-items: center; gap: 8px; margin: 0 0 22px;
  background: rgba(40, 167, 69, .1); color: #1e8f3c;
  border-radius: var(--lt-radius-pill); padding: 7px 16px; font-size: 14px;
}
.tour-socialproof strong { font-weight: 800; }

/* --- video zo servera v galérii ----------------------------------------- */
.lt-video { position: relative; cursor: pointer; }
.lt-video .lt-video-poster { width: 100%; height: 100%; object-fit: cover; display: block; }
.lt-video-play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 84px; height: 84px; border: 0; border-radius: 50%; cursor: pointer;
  background: var(--theme-color); color: #fff; font-size: 26px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--lt-shadow-lg); transition: transform .3s var(--lt-ease), background .3s var(--lt-ease);
}
.lt-video-play::before {
  content: ''; position: absolute; inset: -12px; border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, .5); animation: ltPulse 2.2s ease-out infinite;
}
@keyframes ltPulse { 0% { transform: scale(1); opacity: .8; } 100% { transform: scale(1.5); opacity: 0; } }
.lt-video-play:hover { transform: translate(-50%, -50%) scale(1.08); background: #e85812; }
.lt-video.is-playing .lt-video-play { display: none; }
.lt-video-el { width: 100%; height: 100%; border-radius: inherit; display: block; background: #000; }

/* --- CTA tlačidlá pod sebou, rovnako široké, vycentrované --------------- */
.lt-cta-btns {
  display: flex; flex-direction: column; align-items: center; gap: 12px; margin-top: 4px;
}
.lt-cta-btns .vs-btn { min-width: 240px; text-align: center; }

/* --- responzivita nových prvkov ----------------------------------------- */
@media (max-width: 767px) {
  .pkg-option { padding: 12px 14px; }
  .pkg-desc { font-size: 12px; }
  .lt-video-play { width: 64px; height: 64px; font-size: 20px; }
  .tour-socialproof { font-size: 13px; padding: 6px 13px; }
}

/* --- tlačidlo „Zobraziť všetko" pod karuselom: viac miesta zhora --------- */
.vs-carousel + .text-center,
.vs-carousel + div > .text-center { margin-top: 34px; }
@media (max-width: 767px) {
  .vs-carousel + .text-center,
  .vs-carousel + div > .text-center { margin-top: 24px; }
}

/* --- cenový štítok destinácie: vždy na jednom riadku, vycentrovaný ------- */
.destination-style1 .destination-price {
  white-space: nowrap;
  text-align: center;
  line-height: 1.1;
}

/* --- karta tímu: sociálne ikony nech nie sú nalepené na spodný okraj ----- */
.team-card, .team-style1 { padding-bottom: 30px; }
.team-social { margin-bottom: 6px; }

/* --- firemný názov nemá byť „skapitalizovaný" (s.r.o. nie S.r.o.) -------- */
.tt-none { text-transform: none !important; }

/* --- karusel nesmie pretekať (negatívne okraje .row na tablete) --------- */
.vs-carousel.slick-slider { margin-left: 0; margin-right: 0; }
.vs-carousel .slick-list { overflow: hidden; }
