/* Reset štýlov */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

:root{
  --stihl: #ff6a00;        /* hlavná STIHL oranžová */
  --stihl-dark: #e35f00;   /* hover / tmavšia */
  --stihl-darker:#c95200;  /* ešte tmavšia */
  --stihl-soft: rgba(255,106,0,.14); /* jemné pozadie */
}


body {
  background-color: #f8f8f8;
  overflow-y: auto; /* Povolenie scrollovania na celom webe */
}

/* Logo */
.logo img {
  height: clamp(34px, 4vw, 58px);
  width: auto; /* Automatická šírka pre zachovanie proporcií */
  display: block; /* Odstránenie medzier okolo obrázka */
}

/* Navigačný panel */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background-color: #f9f9f9; /* Biela farba */
  color: var(--stihl); /* Červené texty */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

.logo a {
  text-decoration: none;
  font-size: 24px;
  font-weight: bold;
}

/* Navigačné odkazy pre desktop */
.nav-links {
  display: flex;
  list-style: none;
  gap: 20px;
}

.nav-links a {
  text-decoration: none;
  color: var(--stihl); 
  font-size: 18px;
  padding: 10px 15px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.nav-links li a:hover {
  background-color: var(--stihl); 
  color: white;
  border-radius: 5px;
}

.nav-links li a.active {
  background-color: rgba(210, 0, 0, 0.2);
  color: var(--stihl); 
  font-weight: bold;
}

/* Dropdown menu */
.dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  list-style: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--stihl); 
  padding: 10px 0;
  width: 200px;
  z-index: 999;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  max-height: 50vh; /* Obmedzenie výšky */
  overflow-y: auto; /* Povolenie scrollovania */
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu a {
  padding: 10px 15px;
  display: block;
  color: white;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.dropdown-menu a:hover {
  background-color: var(--stihl-dark);
}

/* Podmenu */
.sub-dropdown-menu {
  display: none;
  position: absolute;
  background-color: var(--stihl);  /* Nastavíme červené pozadie ako hlavné menu */
  list-style: none;
  padding: 0;
  margin: 0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 10;
  width: 200px;
}

/* Keď je submenu aktívne, zobrazí sa */
.sub-dropdown-menu.active {
  display: block;
}

/* Šípka vedľa názvu kategórie */
.category-toggle .arrow {
  margin-left: 5px;
  transition: transform 0.3s ease;
}

/* Keď je submenu aktívne, otočíme šípku */
.category-toggle.open .arrow {
  transform: rotate(90deg);
}

.sub-dropdown-menu a {
  padding: 10px 15px;
  display: block;
  color: white; /* Nastavíme biely text pre kontrast */
  text-decoration: none;
  transition: background-color 0.3s ease;
}

/* Hover efekt pre podkategórie */
.sub-dropdown-menu a:hover {
  background-color: var(--stihl-dark); /* Tmavšia červená pri hoveri */
}

/* Štýly scrollbarov */
.dropdown-menu::-webkit-scrollbar,
.sub-dropdown-menu::-webkit-scrollbar {
  width: 8px;
}

.dropdown-menu::-webkit-scrollbar-thumb,
.sub-dropdown-menu::-webkit-scrollbar-thumb {
  background: var(--stihl-dark);
  border-radius: 4px;
}

.dropdown-menu::-webkit-scrollbar-thumb:hover,
.sub-dropdown-menu::-webkit-scrollbar-thumb:hover {
  background: #a00000;
}

/* Mobilné menu */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--stihl); /* Červené pozadie */
    color: white;
    z-index: 999;
    padding-top: 60px;
    overflow-y: auto; /* Povolenie scrollovania */
  }

  .sub-dropdown-menu {
    position: relative;
    box-shadow: none;
}

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    display: block;
    width: 100%;
    text-align: center;
    padding: 15px 0;
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: background-color 0.3s ease, color 0.3s ease;
  }

  .nav-links li a:hover {
    background-color: var(--stihl-dark);
    color: white;
    border-radius: 5px;
  }

  .dropdown-menu {
    display: none;
    width: 100%;
    padding: 0;
  }

  .dropdown-item.active > .dropdown-menu {
    display: flex;
    flex-direction: column;
  }

  .menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    z-index: 1100;
  }

  .menu-toggle .bar {
    height: 3px;
    width: 30px;
    background: var(--stihl); 
    margin: 5px 0;
    border-radius: 2px;
    transition: background-color 0.3s ease, transform 0.3s ease;
  }

  .nav-links.active ~ .menu-toggle .bar {
    background: white;
  }
}

/* Zablokovanie scrollovania pozadia */
.no-scroll {
  overflow: hidden; /* Blokuje scrollovanie */
  position: fixed; /* Udržiava viewport na mieste */
  width: 100%; /* Zabraňuje horizontálnemu posunu */
}

/* Button */
.btn {
  display: inline-block;
  padding: 12px 24px;
  background: var(--stihl); 
  color: white;
  text-decoration: none;
  font-size: 18px;
  border-radius: 5px;
  margin-top: 10px;
  transition: 0.3s;
}

.btn:hover {
  background: var(--stihl-darker);
}

/* Content Section */
.content {
  text-align: center;
  padding: 60px 20px;
}

/* Footer */
footer {
  text-align: center;
  padding: 20px;
  background: #222;
  color: white;
}

/* Video sekcia - celá výška obrazovky */
.video-section {
  position: relative;
  width: 100%;
  height: 100vh; /* Nastavenie výšky na celú obrazovku */
  overflow: hidden;
}

/* Video cez celú obrazovku */
.background-video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100vh; /* Video bude na výšku celej obrazovky */
  object-fit: cover;
  z-index: -1; /* Dáva video do pozadia */
  pointer-events: none;
}

/* Box s textom na videu */
.video-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  background: rgba(0, 0, 0, 0.6); /* Polopriehľadné pozadie */
  color: white;
  padding: 30px;
  border-radius: 8px;
  max-width: 600px;
}

/* Štýly pre text */
.video-overlay h1 {
  font-size: 36px;
}

.video-overlay p {
  font-size: 20px;
  margin: 10px 0;
}

/* Sekcia s produktmi */
.products {
  text-align: center;
  padding: 60px 20px; /* Väčšia medzera okolo sekcie */
}

/* Nadpis "Naše produkty" */
.products h2 {
  margin-bottom: 40px; /* Väčšia medzera medzi nadpisom a kartami */
}

/* Mriežka s kartami */
.product-grid {
  display: flex;
  justify-content: center;
  gap: 40px; /* Väčšia medzera medzi kartami */
  flex-wrap: wrap;
}

/* Karta produktu */
.product-card {
  background: white;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  width: 300px;
  text-align: center;
}

/* Obrázky v kartách */
.product-card img {
  height: 200px; /* Nastavte rovnakú výšku */
  object-fit: cover; /* Zabezpečí, že obrázok sa orezáva bez deformácie */
  width: 100%; /* Obrázok sa roztiahne na šírku kontajnera */
  border-radius: 5px; /* Voliteľné - na zaoblenie rohov */
  display: block; /* Odstráni medzery spôsobené inline-block obrázkami */
}

/* RESPONSIVE DESIGN - Mobilné zariadenia */
@media (max-width: 768px) {
  .product-grid {
    flex-direction: column; /* Karty budú pod sebou */
    align-items: center; /* Centrovanie na stred */
    gap: 20px; /* Väčšia medzera medzi kartami */
  }

  .products h2 {
    margin-bottom: 30px; /* Väčšia medzera medzi nadpisom a kartami na mobile */
  }

  .background-video {
    width: 100%;
    height: auto;
    min-height: 100vh;
  }
}

/* O nás */

/* Import moderného fontu */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap");

.about {
  text-align: justify;
  padding: 80px 20px; /* Väčší padding pre lepšie rozloženie */
  max-width: 80vw;
  margin: 0 auto;
  font-family: "Poppins", sans-serif; /* Moderný font */
}

/* Nadpis sekcie */
.about h2 {
  margin: 0 auto;
  text-align: center;
  margin-bottom: 25px;
  font-size: 34px;
  font-weight: 600;
  color: var(--stihl); /* Zvýraznenie hlavného nadpisu */
  letter-spacing: 1px;
}

/* Štýl odsekov */
.about p {
  margin-bottom: 18px;
  font-size: 18px;
  line-height: 1.8; /* Väčšia medzera medzi riadkami */
  letter-spacing: 0.5px; /* Jemné zväčšenie priestoru medzi písmenami */
  color: #444; /* Jemnejšia farba textu pre lepšiu čitateľnosť */
}

/* Zvýraznenie dôležitých častí textu */
.about p strong {
  color: var(--stihl); 
  font-weight: 600;
}

.contact {
  text-align: center;
  padding: 40px;
}

.contact h2,
p {
  padding-top: 1em;
  padding-bottom: 1em;
}

/* Pätička */
footer {
  background: #222;
  color: white;
  text-align: center;
  padding: 20px 0;
  font-size: 14px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 15px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

.footer-links a {
  color: white;
  text-decoration: none;
  transition: 0.3s;
}

.footer-links a:hover {
  text-decoration: underline;
  color: var(--stihl); 
}

/* Sekcia sociálnych sietí */
.social-links {
  margin-top: 20px;
}

.social-links p {
  font-size: 16px;
  font-weight: bold;
  color: var(--stihl); 
  margin-bottom: 10px;
}

.social-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  gap: 15px;
}

.social-links ul li a {
  color: white;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.social-links ul li a:hover {
  color: var(--stihl); 
  text-decoration: underline;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  color: #fff;
  text-align: center;
  padding: 15px;
  font-size: 14px;
  display: none; /* Na začiatku sa nezobrazí */
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
}

.cookie-banner a {
  color: #f8b400;
  text-decoration: underline;
}

.cookie-banner div {
  display: flex;
  gap: 10px;
}

.cookie-banner button {
  background-color: #f8b400;
  color: #000;
  border: none;
  padding: 8px 15px;
  cursor: pointer;
  border-radius: 5px;
}

.cookie-banner button:hover {
  background-color: #e09e00;
}

#reject-cookies {
  background-color: #ff4d4d;
  color: #fff;
}

#reject-cookies:hover {
  background-color: #d43f3f;
}




/* Štýl pre tlačidlo Nastavenia */
.cm__preferences,
.cm__preferences:visited {
  background-color: #4f46e5; /* rovnaká farba ako ostatné */
  color: #fff !important;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none !important; /* odstráni podčiarknutie */
  font-weight: 500;
  display: inline-block;
}

/* Hover efekt, nech je konzistentný */
.cm__preferences:hover {
  background-color: #3730a3; /* tmavší odtieň */
  text-decoration: none !important;
}




















/* =========================================================
   MODERN / MINIMAL DROPDOWN – COMPLETE (DESKTOP/TABLET/MOBILE)
   vlož na KONIEC CSS
========================================================= */

/* drobné doladenie linkov v navbare */
.nav-links > li > a{
  border-radius: 10px;
}

/* základ dropdown kontajnera */
.dropdown{ position: relative; }

/* -----------------------------
   DESKTOP + TABLET (>= 769px)
------------------------------ */
@media (min-width: 769px){

  /* HLAVNÉ DROPDOWN MENU */
  .dropdown-menu{
    display: none;
    position: absolute !important;
    top: calc(100% + 10px) !important;

    /* ukotvenie vpravo (lepšie pre menu pri pravom okraji) */
    left: auto !important;
    right: 0 !important;

    /* modern card */
    background: rgba(255,255,255,0.98) !important;
    border: 1px solid rgba(0,0,0,0.08) !important;
    border-radius: 14px !important;
    padding: 8px !important;

    /* šírka a scroll */
    width: 340px !important;
    min-width: 340px !important;
    max-height: calc(100vh - 90px) !important;

    overflow-y: auto !important;
    overflow-x: hidden !important;
    overscroll-behavior: contain;

    /* look */
    box-shadow: 0 18px 45px rgba(0,0,0,0.14) !important;
    backdrop-filter: blur(10px);

    z-index: 2000 !important;
    box-sizing: border-box;
  }

  /* zobraz menu pri hover */
  .dropdown:hover .dropdown-menu{
    display: block !important;
  }

  /* položky v menu */
  .dropdown-menu a{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;

    padding: 11px 12px;
    border-radius: 10px;

    color: #111 !important;
    text-decoration: none;
    font-size: 15px;
    line-height: 1.2;

    white-space: normal !important;
    overflow-wrap: anywhere;
    word-break: break-word;

    transition: background-color .18s ease, color .18s ease, transform .18s ease;
  }

  .dropdown-menu a:hover{
    background: rgba(210,0,0,0.08);
    color: var(--stihl)  !important;
    transform: translateX(2px);
  }

  /* KATEGÓRIA S PODMENU (toggle) */
  .dropdown-menu .category-toggle{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }

  /* SUBMENU ako accordion (bez clippingu pri overflow) */
  .sub-dropdown-menu{
    position: static !important;
    display: none;
    width: 100%;

    margin: 6px 0 8px;
    padding: 6px 0 0 12px;

    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;

    overflow: visible !important;
  }

  .sub-dropdown-menu.active{
    display: block !important;
  }

  .sub-dropdown-menu{
    border-left: 2px solid rgba(210,0,0,0.18);
  }

  .sub-dropdown-menu a{
    display: block;
    padding: 9px 10px;
    border-radius: 10px;
    font-size: 14.5px;
    color: #111 !important;

    white-space: normal !important;
    overflow-wrap: anywhere;
    word-break: break-word;

    transition: background-color .18s ease, color .18s ease, transform .18s ease;
  }

  .sub-dropdown-menu a:hover{
    background: rgba(210,0,0,0.08);
    color: var(--stihl)  !important;
    transform: translateX(2px);
  }

  /* ŠÍPKA / CARET */
  .category-toggle .arrow{
    margin-left: 8px;
    opacity: .7;
    transition: transform .18s ease, opacity .18s ease;
  }
  .category-toggle.open .arrow{
    transform: rotate(90deg);
    opacity: 1;
  }

  /* jemný scrollbar */
  .dropdown-menu::-webkit-scrollbar{
    width: 10px;
  }
  .dropdown-menu::-webkit-scrollbar-thumb{
    background: rgba(0,0,0,0.18);
    border-radius: 999px;
    border: 3px solid rgba(255,255,255,0.9);
  }
  .dropdown-menu::-webkit-scrollbar-thumb:hover{
    background: rgba(0,0,0,0.28);
  }

  /* poistka proti X scrollom z vnútra */
  .dropdown-menu *{
    max-width: 100%;
  }
}

/* -----------------------------
   TABLET (769px – 1024px)
   trochu väčšie a pohodlnejšie
------------------------------ */
@media (min-width: 769px) and (max-width: 1024px){

  .dropdown-menu{
    width: 380px !important;
    min-width: 380px !important;
    max-height: calc(100vh - 110px) !important;
  }

  .dropdown-menu a{
    padding: 12px 14px;
    font-size: 16px;
  }

  .sub-dropdown-menu a{
    padding: 10px 12px;
    font-size: 15px;
  }
}

/* -----------------------------
   MOBILE (<= 768px)
   dropdowny sú inline v mobilnom menu
------------------------------ */
@media (max-width: 768px){

  /* keď je otvorené mobilné menu, dropdown menu nech je pekný “panel” */
  .dropdown-menu,
  .sub-dropdown-menu{
    position: static !important;

    display: none; /* zobrazí sa cez tvoju JS logiku / active triedy */
    width: min(92vw, 420px) !important;
    margin: 10px auto 0 !important;

    max-height: calc(100vh - 160px) !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    overscroll-behavior: contain;

    background: rgba(255,255,255,0.10) !important;
    border: 1px solid rgba(255,255,255,0.18) !important;
    border-radius: 14px !important;
    padding: 8px !important;

    box-shadow: none !important;
    backdrop-filter: blur(10px);
    box-sizing: border-box;
  }

  /* ak tvoj kód používa .dropdown-item.active > .dropdown-menu */
  .dropdown-item.active > .dropdown-menu{
    display: block !important;
  }

  /* submenu na mobile zobrazujeme tiež ako “accordion” pod položkou */
  .sub-dropdown-menu{
    margin-top: 8px !important;
    padding-top: 6px !important;
  }

  .sub-dropdown-menu.active{
    display: block !important;
  }

  /* linky v dropdownoch na mobile */
  .dropdown-menu a,
  .sub-dropdown-menu a{
    color: #fff !important;
    text-decoration: none;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;

    padding: 13px 12px;
    border-radius: 12px;

    font-size: 16px;
    line-height: 1.2;

    white-space: normal !important;
    overflow-wrap: anywhere;
    word-break: break-word;

    transition: background-color .18s ease;
  }

  .dropdown-menu a:hover,
  .sub-dropdown-menu a:hover{
    background: rgba(255,255,255,0.14);
    transform: none;
  }

  /* šípka */
  .category-toggle .arrow{
    opacity: .85;
  }

  /* scrollbar mobil */
  .dropdown-menu::-webkit-scrollbar,
  .sub-dropdown-menu::-webkit-scrollbar{
    width: 10px;
  }
  .dropdown-menu::-webkit-scrollbar-thumb,
  .sub-dropdown-menu::-webkit-scrollbar-thumb{
    background: rgba(255,255,255,0.25);
    border-radius: 999px;
    border: 3px solid rgba(0,0,0,0.0);
  }
  .dropdown-menu::-webkit-scrollbar-thumb:hover,
  .sub-dropdown-menu::-webkit-scrollbar-thumb:hover{
    background: rgba(255,255,255,0.35);
  }

  .dropdown-menu * ,
  .sub-dropdown-menu *{
    max-width: 100%;
  }
}

/* reduced motion */
@media (prefers-reduced-motion: reduce){
  .dropdown-menu a,
  .sub-dropdown-menu a,
  .category-toggle .arrow{
    transition: none !important;
  }
}
/* =========================================
   FIX: neviditeľný text pri hover / active
========================================= */

/* DESKTOP – hlavné položky */
@media (min-width: 769px){

  .dropdown-menu a:hover,
  .dropdown-menu a:focus,
  .dropdown-menu li.active > a{
    background: var(--stihl) !important;
    color: #ffffff !important;
  }

  /* SUBMENU */
  .sub-dropdown-menu a:hover,
  .sub-dropdown-menu a:focus,
  .sub-dropdown-menu li.active > a{
    background: var(--stihl) !important;
    color: #ffffff !important;
  }

  /* šípky / caret nech ostanú viditeľné */
  .dropdown-menu a:hover .arrow,
  .sub-dropdown-menu a:hover .arrow{
    color: #ffffff !important;
    opacity: 1;
  }
}

/* MOBILE – tiež fix */
@media (max-width: 768px){

  .dropdown-menu a:hover,
  .dropdown-menu a:focus,
  .dropdown-menu li.active > a,
  .sub-dropdown-menu a:hover,
  .sub-dropdown-menu a:focus,
  .sub-dropdown-menu li.active > a{
    background: rgba(210,0,0,0.95) !important;
    color: #ffffff !important;
  }
}


















/* =========================================================
   MODERN / MINIMAL PRODUCT CARDS
   vlož na KONIEC CSS
========================================================= */

/* sekcia */
.products{
  padding: 80px 20px;
}

.products h2{
  font-size: clamp(24px, 3vw, 34px);
  letter-spacing: -0.02em;
  margin-bottom: 32px;
}

/* grid – nech to dýcha */
.product-grid{
  gap: 28px;
  align-items: stretch;
}

/* karta */
.product-card{
  background: rgba(255,255,255,0.98) !important;
  border: 1px solid rgba(0,0,0,0.08) !important;
  border-radius: 18px !important;
  padding: 18px !important;

  box-shadow: 0 10px 30px rgba(0,0,0,0.06) !important;

  width: min(340px, 92vw) !important;
  text-align: left !important;

  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  overflow: hidden;
}

/* hover – jemne “lift” */
.product-card:hover{
  transform: translateY(-3px);
  box-shadow: 0 16px 45px rgba(0,0,0,0.10) !important;
  border-color: rgba(210,0,0,0.20) !important;
}

/* obrázok ako moderný cover v rámci */
.product-card img{
  width: 100% !important;
  height: 210px !important;
  object-fit: contain !important;

  background: #f6f6f6;         /* čisté pozadie */
  border-radius: 14px !important;
  border: 1px solid rgba(0,0,0,0.06);

  padding: 10px;               /* “gallery” look */
  margin-bottom: 14px;
}

/* nadpis */
.product-card h3{
  font-size: 18px;
  font-weight: 650;
  letter-spacing: -0.01em;
  color: #111;
  margin: 6px 0 8px;
}

/* popis */
.product-card p{
  font-size: 14.5px;
  line-height: 1.55;
  color: rgba(0,0,0,0.68);
  margin-bottom: 14px;
  min-height: 44px; /* aby boli karty rovnejšie */
}

/* button – pill, modern */
.product-card .btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 11px 16px !important;
  border-radius: 999px !important;
  font-size: 14.5px !important;
  font-weight: 600;

  background: var(--stihl) !important;
  color: #fff !important;

  box-shadow: 0 10px 22px rgba(210,0,0,0.18);
  border: 1px solid rgba(0,0,0,0.06);
  margin-top: 4px !important;
}

.product-card .btn:hover{
  background: var(--stihl-dark) !important;
  transform: translateY(-1px);
}

/* layout: aby button bol vždy dole */
.product-card{
  display: flex;
  flex-direction: column;
}
.product-card .btn{
  margin-top: auto !important;
  width: 140px; /* kompaktné, luxusné */
}

/* RESPONSIVE */
@media (max-width: 768px){
  .product-grid{
    gap: 18px;
  }

  .product-card{
    width: min(520px, 92vw) !important;
    padding: 16px !important;
  }

  .product-card img{
    height: 200px !important;
  }
}

/* veľmi malé displeje */
@media (max-width: 380px){
  .product-card img{
    height: 170px !important;
  }
}






/* jemný minimalistický rámik namiesto sivého boxu */
.product-card img{
  background: #fff !important;
  border: 1px solid rgba(0,0,0,0.06) !important;
  padding: 6px !important;
  border-radius: 14px !important;
}









/* =========================================================
   ABOUT – širší panel (ako sekcia s kartami) + čitateľný text
========================================================= */

.about{
  position: relative;
  width: 100%;
  max-width: none !important;
  margin: 0 auto !important;

  padding: 90px 20px !important;
}

/* široký "panel" – podobný vibe ako cards */
.about::before{
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);

  top: 55px;
  bottom: 25px;

  width: min(78vw, 1080px);      /* <-- toto je tá šírka, uprav podľa chuti */
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(0,0,0,0.06);
  z-index: 0;
}

/* obsah nad panelom */
.about > *{
  position: relative;
  z-index: 1;
}

/* nadpis nech je vnútri panelu zarovnaný */
.about h2{
  width: min(78vw, 980px);
  margin: 0 auto 18px auto !important;

  font-size: clamp(28px, 3.2vw, 40px) !important;
  font-weight: 750 !important;
  letter-spacing: -0.03em;
  text-align: center;
  color: var(--stihl); 
}

/* text nech je čitateľný (užší ako panel) */
.about p{
  width: min(78vw, 980px);
  margin-left: auto !important;
  margin-right: auto !important;

  font-family: "Poppins", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif !important;
  font-size: 17px !important;
  line-height: 1.85 !important;
  color: rgba(0,0,0,0.72) !important;

  text-align: left !important;     /* zruš justify */
  letter-spacing: 0.1px !important;

  padding: 0 !important;
}

/* rozostupy medzi odsekmi */
.about p + p{
  margin-top: 18px !important;
}

/* mobil/tablet doladenie */
@media (max-width: 992px){
  .about{
    padding: 70px 16px !important;
  }
  .about::before{
    top: 45px;
    bottom: 18px;
    width: calc(100% - 24px);  /* viac cez šírku */
    border-radius: 16px;
  }
  .about h2,
  .about p{
    width: calc(100% - 40px);
  }
}

@media (max-width: 768px){
  .about{
    padding: 60px 12px !important;
  }
  .about h2,
  .about p{
    width: calc(100% - 26px);
  }
  .about p{
    font-size: 16px !important;
    line-height: 1.75 !important;
  }
}













/* slider pozadie (namiesto videa) */
.hero-slider{
  position: relative;
  overflow: hidden;
}

.slider-bg{
  position: absolute;
  inset: 0;
  z-index: -1;
}

.slider-bg .slide{
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 900ms ease, transform 3000ms ease;
}

.slider-bg .slide.active{
  opacity: 1;
  transform: scale(1.0);
}

/* voliteľné: jemný tmavý gradient pre lepšiu čitateľnosť textu */
.hero-slider::after{
  content:"";
  position:absolute;
  inset:0;
  z-index:-1;
  background: radial-gradient(circle at center, rgba(0,0,0,.35), rgba(0,0,0,.55));
}










.video-section.hero-slider{
  position: relative;
  height: 100vh;
  overflow: hidden;
}

/* POZADIE slidera – už NIE -1 */
.video-section.hero-slider .slider-bg{
  position: absolute;
  inset: 0;
  z-index: 0;
}

.video-section.hero-slider .slider-bg .slide{
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 900ms ease;
}

.video-section.hero-slider .slider-bg .slide.active{
  opacity: 1;
}

/* overlay musí byť NAD pozadím */
.video-section.hero-slider .video-overlay{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}







/* tmavší hero background + lepší kontrast textu */
.video-section.hero-slider::before{
  content:"";
  position:absolute;
  inset:0;
  background: rgba(0,0,0,.38); /* zvyš/zniž podľa chuti */
  z-index: 1;
}

/* pozadie */
.video-section.hero-slider .slider-bg{ z-index: 0; }

/* text/box musí byť nad filtrom */
.video-section.hero-slider .video-overlay{ z-index: 2; }
.video-section.hero-slider::before{
  background: radial-gradient(circle at center, rgba(0,0,0,.30), rgba(0,0,0,.60));
}







/* =========================
   BRANDS / PREDAJ – CLEAN MODERN GRID (SINGLE, FIXED WIDTH)
   - max 80vw (na ultra-wide 70vw)
   - NIE cez celú šírku obrazovky
   - obrázok bez vnútorných okrajov
   - celý obrázok vidno (contain) + blur-fill pozadie (žiadne biele pásy)
========================= */

/* jemné lux pozadie celej stránky */
body{
  background: #f4f6f8;
}

/* sekcia: natvrdo obmedzí šírku celej časti */
.brands-section{
  padding: 70px 0;
  width: 80vw;
  max-width: 1200px;
  margin: 0 auto;
}

/* na veľkých monitoroch ešte užšie (lux) */
@media (min-width: 1600px){
  .brands-section{
    width: 70vw;
  }
}

/* mobil */
@media (max-width: 768px){
  .brands-section{
    width: 92vw;
  }
}

/* ak existuje wrapper, nech sa NEBIJE so šírkou */
.brands-inner,
.brands-panel{
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0; /* padding riešime v paneli nižšie */
}

/* panel pod gridom */
.brands-panel{
  background: #f6f7f9;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 22px;
  padding: 34px 26px;
  box-shadow: 0 18px 60px rgba(0,0,0,0.06);
}

/* hlavička */
.brands-head{
  text-align: center;
  margin-bottom: 22px;
}

.brands-head h1{
  font-size: clamp(26px, 3.2vw, 40px);
  letter-spacing: -0.03em;
  margin: 0 0 10px;
}

.brands-head p{
  margin: 0 auto;
  max-width: 780px;
  color: rgba(0,0,0,.65);
  font-size: 16px;
  line-height: 1.6;
}

/* grid */
.brands-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  margin-top: 18px;
  align-items: start;
}

/* karta */
.brand-card{
  position: relative;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;

  background: rgba(255,255,255,0.98);
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 18px;
  overflow: hidden;

  box-shadow: 0 16px 45px rgba(0,0,0,0.08);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.brand-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 26px 70px rgba(0,0,0,0.14);
  border-color: rgba(255,106,0,.28);
}

/* MEDIA: vyšší box, bez okrajov */
.brand-media{
  height: 260px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(0,0,0,0.06);

  /* blur-fill pozadie nastavíš cez JS (pozri nižšie) */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #fff;
}

/* rozmazané pozadie z rovnakého obrázka */
.brand-media.has-bg::before{
  content: "";
  position: absolute;
  inset: 0;
  background: inherit;
  filter: blur(18px) saturate(1.05);
  transform: scale(1.12);
  opacity: .92;
}

/* ostrý obrázok – celý vidno */
.brand-media img{
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
}

/* meta */
.brand-meta{
  padding: 14px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  background: rgba(255,255,255,0.98);
}

.brand-meta h3{
  margin: 2px 0 0;
  font-size: 18px;
  letter-spacing: -0.01em;
}

.brand-meta p{
  margin: 0;
  color: rgba(0,0,0,.65);
  line-height: 1.5;
  font-size: 14.5px;
}

.brand-cta{
  margin-top: auto;
  padding-top: 10px;
  font-weight: 700;
  color: #ff6a00;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* jemný shine */
.brand-card::after{
  content:"";
  position:absolute;
  inset:-40% -60%;
  background: radial-gradient(circle, rgba(255,255,255,.38), rgba(255,255,255,0));
  transform: translateX(-60%);
  opacity: 0;
  transition: opacity .2s ease, transform .7s ease;
  pointer-events:none;
}
.brand-card:hover::after{
  opacity: 1;
  transform: translateX(0%);
}

/* responsive */
@media (max-width: 1000px){
  .brands-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .brands-panel{ padding: 28px 18px; }
  .brand-media{ height: 240px; }
}

@media (max-width: 650px){
  .brands-grid{ grid-template-columns: 1fr; }
  .brand-media{ height: 220px; }
}











/* =========================
   SERVICE BG SECTION
========================= */

.service-bg-section{
  position: relative;
  min-height: 40vh;
  display: flex;
  align-items: center;

  background-image: url("../imgs/poza.png"); /* ← sem tvoj obrázok */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* tmavý overlay */
.service-bg-overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0,0,0,.65) 0%,
    rgba(0,0,0,.55) 40%,
    rgba(0,0,0,.35) 100%
  );
}

/* obsah */
.service-bg-inner{
  position: relative;
  z-index: 2;

  width: 80vw;
  max-width: 1200px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
}

/* textová časť */
.service-bg-content h2{
  font-size: clamp(28px, 3vw, 42px);
  color: #fff;
  margin: 0 0 14px;
  letter-spacing: -0.02em;
}

.service-bg-content p{
  color: rgba(255,255,255,.85);
  font-size: 16px;
  line-height: 1.6;
  max-width: 520px;
  margin-bottom: 24px;
}

/* CTA */
.btn-primary{
  display: inline-block;
  background: #ff6a00;
  color: #fff;
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: transform .15s ease, box-shadow .15s ease;
}

.btn-primary:hover{
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255,106,0,.45);
}

/* štatistiky */
.service-bg-stats{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.stat-card{
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(6px);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 14px 40px rgba(0,0,0,.15);
}

.stat-card strong{
  display: block;
  font-size: 22px;
  font-weight: 800;
  color: #000;
}

.stat-card span{
  font-size: 14px;
  color: rgba(0,0,0,.65);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1000px){
  .service-bg-inner{
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .service-bg-stats{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px){
  .service-bg-section{
    min-height: auto;
    padding: 60px 0;
  }

  .service-bg-inner{
    width: 92vw;
  }

  .service-bg-stats{
    grid-template-columns: 1fr;
  }
}














.stats-section{background:#f4f6f8;padding:80px 0;}
.stats-inner{width:80vw;max-width:1200px;margin:0 auto;display:grid;grid-template-columns:1.2fr 1fr;gap:28px;align-items:center;}
.stats-left h2{font-size:clamp(28px,3vw,40px);letter-spacing:-.03em;margin:0 0 10px;}
.stats-left p{color:rgba(0,0,0,.65);line-height:1.6;margin:0 0 18px;}
.stats-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:18px;}
.stat-box{background:rgba(255,255,255,.96);border:1px solid rgba(0,0,0,.06);border-radius:18px;padding:18px;box-shadow:0 18px 45px rgba(0,0,0,.08);}
.stat-box strong{display:block;font-size:26px;}
.stat-box span{color:rgba(0,0,0,.65);font-size:14px;}
@media(max-width:900px){.stats-inner{grid-template-columns:1fr;width:92vw;}}












.steps-section{background:#f4f6f8;padding:80px 0;}
.steps-inner{width:80vw;max-width:1200px;margin:0 auto;}
.steps-head{text-align:center;margin-bottom:36px;}
.steps-head h2{font-size:clamp(28px,3vw,40px);letter-spacing:-.03em;margin:0 0 10px;}
.steps-head p{color:rgba(0,0,0,.65);margin:0;}
.steps-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px;}
.step{background:rgba(255,255,255,.96);border:1px solid rgba(0,0,0,.06);border-radius:18px;padding:26px;box-shadow:0 18px 45px rgba(0,0,0,.08);}
.step-num{width:44px;height:44px;border-radius:12px;background:#ff6a00;color:#fff;display:grid;place-items:center;font-weight:800;margin-bottom:14px;}
.step h3{margin:0 0 8px;font-size:18px;}
.step p{margin:0;color:rgba(0,0,0,.65);line-height:1.5;}
.steps-cta{text-align:center;margin-top:34px;}
@media(max-width:1000px){.steps-grid{grid-template-columns:1fr 1fr;}}
@media(max-width:650px){.steps-grid{grid-template-columns:1fr;}.steps-inner{width:92vw;}}







/* =========================
   SERVICE HERO STRIP
   vizuálna pauza medzi boxmi
========================= */

.lt-service-hero{
  position: relative;
  height: 40vh;
  min-height: 320px;
  max-height: 520px;
  overflow: hidden;
  margin: 80px 0;
  border-radius: 22px;
}

/* background image */
.lt-service-hero__bg{
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
}

/* dark overlay */
.lt-service-hero::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(
      to right,
      rgba(0,0,0,.55),
      rgba(0,0,0,.35)
    );
}

/* content */
.lt-service-hero__overlay{
  position: relative;
  z-index: 2;
  height: 100%;
  max-width: 1200px;
  width: 80vw;
  margin: 0 auto;
  padding: 0 20px;

  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;

  color: #fff;
}

.lt-service-hero__overlay h2{
  font-size: clamp(26px, 3vw, 42px);
  letter-spacing: -0.03em;
  margin: 0;
}

.lt-service-hero__overlay p{
  max-width: 640px;
  font-size: 16px;
  line-height: 1.65;
  color: rgba(255,255,255,.85);
  margin: 0;
}

/* buttons */
.lt-service-hero__actions{
  display: flex;
  gap: 12px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.lt-btn{
  padding: 12px 20px;
  border-radius: 10px;
  font-weight: 800;
  text-decoration: none;
  transition: transform .15s ease, box-shadow .15s ease;
}

.lt-btn--primary{
  background: #ff6a00;
  color: #fff;
  box-shadow: 0 12px 28px rgba(255,106,0,.3);
}

.lt-btn--primary:hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(255,106,0,.4);
}

.lt-btn--ghost{
  border: 1px solid rgba(255,255,255,.45);
  color: #fff;
}

.lt-btn--ghost:hover{
  border-color: #ff6a00;
  color: #ff6a00;
}

/* responsive */
@media (max-width: 900px){
  .lt-service-hero{
    height: 45vh;
  }
  .lt-service-hero__overlay{
    width: 92vw;
  }
}















/* =========================
   O NÁS – NEW (lt-about)
   nezávislé od starých štýlov
========================= */

.lt-about{
  background: #f4f6f8;
  padding: 80px 0;
}

.lt-about__inner{
  width: 80vw;
  max-width: 1200px;
  margin: 0 auto;
}

.lt-about__head{
  text-align: center;
  margin-bottom: 30px;
}

.lt-about__title{
  margin: 0 0 10px;
  font-size: clamp(28px, 3vw, 42px);
  letter-spacing: -0.03em;
}

.lt-about__lead{
  margin: 0 auto;
  max-width: 820px;
  color: rgba(0,0,0,.65);
  font-size: 16px;
  line-height: 1.65;
}

.lt-about__grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.lt-about__card{
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 18px;
  padding: 26px;
  box-shadow: 0 18px 45px rgba(0,0,0,.08);
}

.lt-about__card h3{
  margin: 0 0 10px;
  font-size: 18px;
  letter-spacing: -0.01em;
}

.lt-about__card p{
  margin: 0;
  color: rgba(0,0,0,.65);
  line-height: 1.65;
  font-size: 15px;
}

.lt-about__card--accent{
  border-color: rgba(255,106,0,.18);
}

.lt-about__list{
  margin: 12px 0 18px;
  padding-left: 18px;
  color: rgba(0,0,0,.65);
  line-height: 1.65;
}

.lt-about__cta{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.lt-about__btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 800;
  background: #ff6a00;
  color: #fff;
  transition: transform .15s ease, box-shadow .15s ease, opacity .15s ease;
  box-shadow: 0 12px 28px rgba(255,106,0,.22);
}

.lt-about__btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(255,106,0,.28);
}

.lt-about__btn--ghost{
  background: transparent;
  color: #111;
  border: 1px solid rgba(0,0,0,.14);
  box-shadow: none;
}

.lt-about__btn--ghost:hover{
  border-color: rgba(255,106,0,.35);
}

.lt-about__foot{
  margin-top: 18px;
  text-align: center;
  color: rgba(0,0,0,.7);
}

/* responsive */
@media (max-width: 900px){
  .lt-about__inner{ width: 92vw; }
  .lt-about__grid{ grid-template-columns: 1fr; }
}













/* ---------- LT CONTACT ---------- */
.lt-contact{
  padding: 70px 0;
  background: #f4f6f8;
}

.lt-contact__inner{
  width: min(1200px, 92vw);
  margin: 0 auto;
}

.lt-contact__head{
  text-align: center;
  margin-bottom: 22px;
}

.lt-contact__title{
  margin: 0 0 8px;
  font-size: clamp(26px, 3.2vw, 40px);
  letter-spacing: -0.03em;
  color: #111;
}

.lt-contact__lead{
  margin: 0 auto;
  max-width: 820px;
  color: rgba(0,0,0,.65);
  font-size: 16px;
  line-height: 1.6;
}

.lt-contact__alert{
  width: min(900px, 92vw);
  margin: 14px auto 0;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,0.08);
  background: rgba(255,255,255,0.98);
  box-shadow: 0 14px 50px rgba(0,0,0,0.07);
  font-weight: 700;
  color: #111;
}
.lt-contact__alert--ok{ border-color: rgba(0,160,90,.25); }
.lt-contact__alert--bad{ border-color: rgba(210,0,0,.22); }

.lt-contact__grid{
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 22px;
  margin-top: 22px;
  align-items: start;
}

.lt-contact__card{
  background: rgba(255,255,255,0.98);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 22px;
  padding: 22px;
  box-shadow: 0 18px 60px rgba(0,0,0,0.07);
}

.lt-contact__cardTitle{
  margin: 0 0 14px;
  font-size: 18px;
  letter-spacing: -0.01em;
  color: #111;
}

.lt-contact__form{
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.lt-contact__row{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.lt-contact__field label{
  display: block;
  font-weight: 700;
  font-size: 13px;
  color: rgba(0,0,0,.72);
  margin: 0 0 6px;
}

.lt-contact__field input,
.lt-contact__field textarea,
.lt-contact__field select{
  width: 100%;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,0.12);
  background: #fff;
  font-size: 15px;
  color: #111;
  outline: none;
  transition: box-shadow .18s ease, border-color .18s ease;
}

.lt-contact__field textarea{
  resize: vertical;
  min-height: 120px;
}

.lt-contact__field input:focus,
.lt-contact__field textarea:focus,
.lt-contact__field select:focus{
  border-color: rgba(255,106,0,.55);
  box-shadow: 0 0 0 4px rgba(255,106,0,.12);
}

.lt-contact__checks{
  margin-top: 2px;
}

.lt-contact__check{
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14px;
  line-height: 1.45;
  color: rgba(0,0,0,.75);
}

.lt-contact__check input{
  width: 18px;
  height: 18px;
  accent-color: #ff6a00;
  margin-top: 2px;
}

.lt-contact__check a{
  color: #ff6a00;
  text-decoration: underline;
}
.lt-contact__check a:hover{ text-decoration: none; }

.lt-contact__actions{
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 4px;
  flex-wrap: wrap;
}

.lt-contact__note{
  margin: 6px 0 0;
  color: rgba(0,0,0,.6);
  font-size: 14px;
}

.lt-contact__side{
  display: grid;
  gap: 14px;
}

.lt-contact__mapCard{
  background: rgba(255,255,255,0.98);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 18px 60px rgba(0,0,0,0.07);
}

.lt-contact__map{
  width: 100%;
  height: 320px;
  background: #eaeef2;
}
.lt-contact__map iframe{
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.lt-contact__info{
  padding: 14px;
  display: grid;
  gap: 10px;
}

.lt-contact__infoRow{
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 12px;
  align-items: start;
  padding: 10px 10px;
  border-radius: 16px;
  background: rgba(0,0,0,0.02);
  border: 1px solid rgba(0,0,0,0.05);
}

.lt-contact__badge{
  font-weight: 800;
  font-size: 12px;
  color: rgba(0,0,0,.72);
  text-transform: uppercase;
  letter-spacing: .06em;
}

.lt-contact__infoText{
  color: rgba(0,0,0,.8);
  font-size: 14.5px;
  line-height: 1.45;
}

.lt-contact__infoText a{
  color: #111;
  text-decoration: none;
  border-bottom: 1px dashed rgba(255,106,0,.6);
}
.lt-contact__infoText a:hover{
  border-bottom-style: solid;
  border-bottom-color: rgba(255,106,0,.9);
}

.lt-contact__quick{
  background: rgba(255,255,255,0.98);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 22px;
  padding: 16px;
  box-shadow: 0 18px 60px rgba(0,0,0,0.07);
}

.lt-contact__quickTitle{
  margin: 0 0 10px;
  font-size: 16px;
  color: #111;
  letter-spacing: -0.01em;
}

.lt-contact__quickBtns{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* Buttons (ak už máš lt-btn, nechaj; toto je fallback) */
.lt-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 14px;
  font-weight: 800;
  text-decoration: none;
  border: 1px solid rgba(0,0,0,0.12);
  background: #fff;
  color: #111;
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}
.lt-btn:hover{
  transform: translateY(-1px);
  box-shadow: 0 14px 40px rgba(0,0,0,0.10);
}

.lt-btn--primary{
  background: #ff6a00;
  border-color: rgba(255,106,0,.35);
  color: #fff;
}
.lt-btn--primary:hover{
  box-shadow: 0 18px 55px rgba(255,106,0,.22);
}

.lt-btn--ghost{
  background: rgba(255,255,255,0.75);
}

/* Responsive */
@media (max-width: 980px){
  .lt-contact__grid{ grid-template-columns: 1fr; }
  .lt-contact__map{ height: 300px; }
}

@media (max-width: 650px){
  .lt-contact{ padding: 60px 0; }
  .lt-contact__card{ padding: 18px; }
  .lt-contact__row{ grid-template-columns: 1fr; }
  .lt-contact__infoRow{ grid-template-columns: 88px 1fr; }
}
















/* =========================
   LT PRODUCT PAGE (PDF + FORM)
   moderný layout ako zvyšok webu
========================= */

.lt-product{
  padding: 70px 0;
  background: #f4f6f8;
}

.lt-product__inner{
  width: min(1200px, 92vw);
  margin: 0 auto;
}

.lt-product__head{
  margin-bottom: 18px;
}

.lt-product__kicker{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(0,0,0,0.08);
  color: rgba(0,0,0,0.68);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-top: 6em;
}

.lt-product__title{
  margin: 12px 0 8px;
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: -0.03em;
  color: #111;
}

.lt-product__lead{
  margin: 0;
  max-width: 920px;
  color: rgba(0,0,0,.68);
  font-size: 16px;
  line-height: 1.7;
}

.lt-product__hero{
  margin-top: 16px;
  height: clamp(160px, 26vh, 260px);
  border-radius: 22px;
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 18px 60px rgba(0,0,0,0.08);
  position: relative;
  overflow: hidden;
}
.lt-product__hero::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(to top, rgba(0,0,0,.42), rgba(0,0,0,0));
}

.lt-product__alert{
  margin: 14px 0 0;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,0.08);
  background: rgba(255,255,255,0.98);
  box-shadow: 0 14px 50px rgba(0,0,0,0.07);
  font-weight: 800;
  color: #111;
}
.lt-product__alert--ok{ border-color: rgba(0,160,90,.25); }
.lt-product__alert--bad{ border-color: rgba(210,0,0,.22); }

.lt-product__grid{
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  gap: 18px;
  margin-top: 18px;
  align-items: start;
}

/* cards */
.lt-product__pdfCard,
.lt-product__formCard{
  background: rgba(255,255,255,0.98);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 22px;
  box-shadow: 0 18px 60px rgba(0,0,0,0.07);
  overflow: hidden;
}

.lt-product__pdfCard{ padding: 16px; }
.lt-product__formCard{ padding: 18px; }

.lt-product__pdfHead{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.lt-product__pdfHead h2,
.lt-product__formCard h2{
  margin: 0;
  font-size: 18px;
  letter-spacing: -0.01em;
  color: #111;
}

.lt-product__pdfActions{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* PDF viewer */
.lt-product__pdfWrap{
  border-radius: 18px;
  border: 1px solid rgba(0,0,0,0.06);
  overflow: hidden;
  background: #eef2f6;
  height: clamp(520px, 70vh, 860px);
}

.lt-product__pdf{
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  background: #fff;
}

.lt-product__pdfNote{
  margin: 10px 2px 0;
  color: rgba(0,0,0,.6);
  font-size: 13.5px;
}

/* FORM */
.lt-product__formLead{
  margin: 8px 0 14px;
  color: rgba(0,0,0,.65);
  font-size: 14.5px;
  line-height: 1.6;
}

.lt-product__form{
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lt-product__row{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.lt-product__field label{
  display: block;
  font-weight: 800;
  font-size: 13px;
  color: rgba(0,0,0,.72);
  margin: 0 0 6px;
}

.lt-product__field input,
.lt-product__field textarea{
  width: 100%;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,0.12);
  background: #fff;
  font-size: 15px;
  color: #111;
  outline: none;
  transition: box-shadow .18s ease, border-color .18s ease;
}

.lt-product__field textarea{
  resize: vertical;
  min-height: 120px;
}

.lt-product__field input:focus,
.lt-product__field textarea:focus{
  border-color: rgba(255,106,0,.55);
  box-shadow: 0 0 0 4px rgba(255,106,0,.12);
}

.lt-product__check{
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13.8px;
  line-height: 1.45;
  color: rgba(0,0,0,.75);
  margin-top: 2px;
}

.lt-product__check input{
  width: 18px;
  height: 18px;
  accent-color: #ff6a00;
  margin-top: 2px;
}

.lt-product__check a{
  color: #ff6a00;
  text-decoration: underline;
}
.lt-product__check a:hover{ text-decoration: none; }

.lt-product__actions{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.lt-product__note{
  margin: 6px 0 0;
  color: rgba(0,0,0,.6);
  font-size: 13.5px;
}

/* Responsive */
@media (max-width: 980px){
  .lt-product__grid{
    grid-template-columns: 1fr;
  }
  .lt-product__pdfWrap{
    height: min(72vh, 760px);
  }
}

@media (max-width: 650px){
  .lt-product{ padding: 60px 0; }
  .lt-product__row{ grid-template-columns: 1fr; }
}













/* ========== PDF mobile fallback ========== */

/* default: mobile fallback skrytý, iframe viditeľný */
.lt-product__pdfMobile{ display:none; }

@media (max-width: 980px){
  /* na mobile schováme iframe (je nespoľahlivý) a ukážeme fallback */
  .lt-product__pdf{ display:none; }
  .lt-product__pdfMobile{
    display:flex;
    flex-direction:column;
    gap:12px;
    padding:16px;
    height:100%;
    justify-content:center;
    background: linear-gradient(180deg, rgba(255,255,255,.9), rgba(244,246,248,.95));
  }

  .lt-product__pdfMobileText{
    margin:0;
    color: rgba(0,0,0,.7);
    font-size: 14px;
    line-height: 1.5;
  }

  .lt-product__pdfMobileBtns{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
  }
}

/* iOS Safari: aby sa kontajner nehral so scrollom */
.lt-product__pdfWrap{
  -webkit-overflow-scrolling: touch;
}








/* Na mobile skry horné tlačidlá "Otvoriť / Stiahnuť" v PDF hlavičke (aby neboli 2x) */
@media (max-width: 980px){
  .lt-product__pdfActions{
    display: none !important;
  }

  /* voliteľné: aby hlavička vyzerala čistejšie */
  .lt-product__pdfHead{
    justify-content: flex-start;
  }
}
