/* ===== PREMENNÉ ===== */
:root {
  --c-primary: #3d7c47;
  --c-primary-dark: #2c5a34;
  --c-accent: #7ab648;
  --c-bg: #faf9f6;
  --c-bg-alt: #f3f1ec;
  --c-text: #2d2d2d;
  --c-text-light: #6b6b6b;
  --c-white: #ffffff;
  --c-border: #e0ddd5;
  --c-footer-bg: #1a2e1c;
  --c-footer-text: #b0c4b0;
  --f-heading: "Lora", Georgia, serif;
  --f-body: "Open Sans", system-ui, sans-serif;
  --r: 8px;
  --r-lg: 16px;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-btn: 0 4px 15px rgba(61, 124, 71, 0.3);
  --max-w: 1200px;
  --tr: 0.3s ease;
}

/* ===== RESET ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: var(--f-body);
  color: var(--c-text);
  background: var(--c-bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}

/* ===== HORNÁ LIŠTA ===== */
.sc-horna-lista {
  background: var(--c-primary-dark);
  color: var(--c-white);
  font-size: 0.85rem;
}
.sc-horna-lista__kontajner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 8px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.sc-horna-lista__lava {
  display: flex;
  gap: 12px;
  align-items: center;
}
.sc-horna-lista__polozka {
  color: rgba(255, 255, 255, 0.85);
}
a.sc-horna-lista__polozka:hover {
  color: #fff;
}
.sc-horna-lista__delic {
  opacity: 0.3;
}
.sc-horna-lista__prava {
  display: flex;
  gap: 12px;
}
.sc-horna-lista__social {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.5px;
}
.sc-horna-lista__social:hover {
  color: #fff;
}

/* ===== HLAVIČKA ===== */
.sc-hlavicka {
  background: var(--c-white);
  border-bottom: 1px solid var(--c-border);
  position: sticky;
  top: 0;
  z-index: 100;
}
.sc-hlavicka__kontajner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}
.sc-hlavicka__logo {
  display: flex;
  align-items: center;
}
.sc-hlavicka__logo-img {
  height: 48px;
  width: auto;
}
.sc-hlavicka__navigacia {
  display: flex;
  gap: 32px;
}
.sc-hlavicka__odkaz {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--c-text-light);
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: all var(--tr);
}
.sc-hlavicka__odkaz:hover {
  color: var(--c-primary);
}
.sc-hlavicka__odkaz--aktivny {
  color: var(--c-primary);
  border-bottom-color: var(--c-primary);
}
.sc-hlavicka__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.sc-hlavicka__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--c-text);
  transition: var(--tr);
}

/* ===== ÚVODNÁ SEKCIA ===== */
.sc-uvodna-sekcia {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.sc-uvodna-sekcia__pozadie {
  position: absolute;
  inset: 0;
}
.sc-uvodna-sekcia__pozadie-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sc-uvodna-sekcia__prekrytie {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(45, 90, 52, 0.85) 0%,
    rgba(61, 124, 71, 0.7) 100%
  );
}
.sc-uvodna-sekcia__obsah {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 80px 20px;
  color: var(--c-white);
}
.sc-uvodna-sekcia__nadpis {
  font-family: var(--f-heading);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}
.sc-uvodna-sekcia__podnadpisom {
  font-size: 1.15rem;
  line-height: 1.7;
  max-width: 600px;
  margin-bottom: 32px;
  opacity: 0.9;
}
.sc-uvodna-sekcia__tlacidlo {
  display: inline-block;
  background: var(--c-white);
  color: var(--c-primary-dark);
  font-weight: 700;
  font-size: 1rem;
  padding: 16px 40px;
  border-radius: 50px;
  transition: all var(--tr);
}
.sc-uvodna-sekcia__tlacidlo:hover {
  background: var(--c-accent);
  color: var(--c-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-btn);
}

/* ===== O NÁS ===== */
.sc-o-nas {
  padding: 80px 20px;
  background: var(--c-white);
}
.sc-o-nas__kontajner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.sc-o-nas__nadpis {
  font-family: var(--f-heading);
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--c-primary-dark);
  line-height: 1.3;
  margin-bottom: 20px;
}
.sc-o-nas__popis {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 16px;
}
.sc-o-nas__obrazok {
  border-radius: var(--r-lg);
  box-shadow: var(--shadow);
}

/* ===== SLUŽBY ===== */
.sc-sluzby {
  padding: 80px 20px;
  background: var(--c-bg-alt);
}
.sc-sluzby__kontajner {
  max-width: var(--max-w);
  margin: 0 auto;
  text-align: center;
}
.sc-sluzby__nadpis {
  font-family: var(--f-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--c-primary-dark);
  margin-bottom: 40px;
}
.sc-sluzby__mriezka {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.sc-sluzby__karta {
  background: var(--c-white);
  padding: 32px 24px;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow);
  text-align: left;
  transition: transform var(--tr);
}
.sc-sluzby__karta:hover {
  transform: translateY(-4px);
}
.sc-sluzby__ikona {
  font-size: 2rem;
  margin-bottom: 16px;
}
.sc-sluzby__karta-nadpis {
  font-family: var(--f-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--c-primary-dark);
  margin-bottom: 10px;
}
.sc-sluzby__karta-popis {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--c-text-light);
}

/* ===== VÝHODY ===== */
.sc-vyhody {
  padding: 80px 20px;
  background: var(--c-primary);
  color: var(--c-white);
  text-align: center;
}
.sc-vyhody__kontajner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.sc-vyhody__nadpis {
  font-family: var(--f-heading);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 40px;
}
.sc-vyhody__mriezka {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}
.sc-vyhody__polozka {
  padding: 24px;
}
.sc-vyhody__cislo {
  font-family: var(--f-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--c-accent);
  margin-bottom: 8px;
}
.sc-vyhody__znak {
  font-size: 0.95rem;
  opacity: 0.9;
  line-height: 1.5;
}
.sc-vyhody__poznamka {
  font-size: 1rem;
  opacity: 0.85;
  max-width: 700px;
  margin: 0 auto;
}

/* ===== ČLÁNKY ===== */
.sc-clanky {
  padding: 80px 20px;
  background: var(--c-white);
}
.sc-clanky__kontajner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.sc-clanky__nadpis {
  font-family: var(--f-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--c-primary-dark);
  text-align: center;
  margin-bottom: 40px;
}
.sc-clanky__mriezka {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}
.sc-clanky__karta {
  display: block;
  background: var(--c-bg);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--tr);
}
.sc-clanky__karta:hover {
  transform: translateY(-4px);
}
.sc-clanky__karta-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.sc-clanky__karta-telo {
  padding: 24px;
}
.sc-clanky__karta-nadpis {
  font-family: var(--f-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--c-primary-dark);
  margin-bottom: 10px;
  line-height: 1.4;
}
.sc-clanky__karta-vypisok {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--c-text-light);
  margin-bottom: 12px;
}
.sc-clanky__karta-odkaz {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--c-primary);
}
.sc-clanky__dalsie {
  text-align: center;
  margin-top: 32px;
}
.sc-clanky__dalsie-tlacidlo {
  display: inline-block;
  background: var(--c-primary);
  color: var(--c-white);
  font-weight: 700;
  padding: 14px 36px;
  border-radius: 50px;
  transition: all var(--tr);
}
.sc-clanky__dalsie-tlacidlo:hover {
  background: var(--c-primary-dark);
  transform: translateY(-2px);
}

/* ===== RECENZIE ===== */
.sc-recenzie {
  padding: 80px 20px;
  background: var(--c-bg-alt);
}
.sc-recenzie__kontajner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.sc-recenzie__nadpis {
  font-family: var(--f-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--c-primary-dark);
  text-align: center;
  margin-bottom: 40px;
}
.sc-recenzie__mriezka {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.sc-recenzie__karta {
  background: var(--c-white);
  padding: 28px;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow);
}
.sc-recenzie__hviezdicky {
  color: #f5a623;
  font-size: 1.2rem;
  margin-bottom: 12px;
  letter-spacing: 2px;
}
.sc-recenzie__text {
  font-size: 0.95rem;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 16px;
}
.sc-recenzie__autor {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--c-primary);
}

/* ===== VYZVANIE ===== */
.sc-vyzvanie {
  padding: 60px 20px;
  background: var(--c-primary-dark);
  color: var(--c-white);
  text-align: center;
}
.sc-vyzvanie__kontajner {
  max-width: 700px;
  margin: 0 auto;
}
.sc-vyzvanie__nadpis {
  font-family: var(--f-heading);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.sc-vyzvanie__text {
  font-size: 1rem;
  opacity: 0.9;
  margin-bottom: 24px;
}
.sc-vyzvanie__kontakty {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.sc-vyzvanie__telefon,
.sc-vyzvanie__email {
  display: inline-block;
  background: var(--c-white);
  color: var(--c-primary-dark);
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 50px;
  font-size: 0.95rem;
  transition: all var(--tr);
}
.sc-vyzvanie__telefon:hover,
.sc-vyzvanie__email:hover {
  background: var(--c-accent);
  color: var(--c-white);
}

/* ===== PÄTIČKA ===== */
.sc-paticka {
  background: var(--c-footer-bg);
  color: var(--c-footer-text);
  padding: 50px 20px 24px;
}
.sc-paticka__kontajner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-bottom: 32px;
}
.sc-paticka__nadpis {
  font-family: var(--f-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--c-white);
  margin-bottom: 16px;
}
.sc-paticka__text {
  font-size: 0.85rem;
  line-height: 1.7;
  margin-bottom: 8px;
}
.sc-paticka__odkaz {
  display: block;
  font-size: 0.85rem;
  line-height: 2;
  color: var(--c-footer-text);
  transition: color var(--tr);
}
.sc-paticka__odkaz:hover {
  color: var(--c-white);
}
.sc-paticka__spodok {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  text-align: center;
}
.sc-paticka__copyright {
  font-size: 0.8rem;
  opacity: 0.7;
}
.sc-paticka__zdroje {
  display: flex;
  gap: 16px;
}
.sc-paticka__zdroj {
  font-size: 0.8rem;
  opacity: 0.7;
  transition: opacity var(--tr);
}
.sc-paticka__zdroj:hover {
  opacity: 1;
}

/* ===== STRÁNKA ČLÁNKU ===== */
.sc-clanok {
  padding: 60px 20px;
  background: var(--c-white);
}
.sc-clanok__kontajner {
  max-width: 800px;
  margin: 0 auto;
}
.sc-clanok__nadpis {
  font-family: var(--f-heading);
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 700;
  color: var(--c-primary-dark);
  line-height: 1.3;
  margin-bottom: 16px;
}
.sc-clanok__meta {
  font-size: 0.85rem;
  color: var(--c-text-light);
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--c-border);
}
.sc-clanok__telo {
  font-size: 1rem;
  line-height: 1.8;
}
.sc-clanok__telo p {
  margin-bottom: 20px;
}
.sc-clanok__telo h2 {
  font-family: var(--f-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--c-primary-dark);
  margin: 40px 0 20px;
}
.sc-clanok__telo h3 {
  font-family: var(--f-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--c-primary-dark);
  margin: 30px 0 14px;
}
.sc-clanok__telo img {
  border-radius: var(--r);
  margin: 24px 0;
}
.sc-clanok__telo blockquote {
  margin: 24px 0;
  padding: 20px 24px;
  background: var(--c-bg-alt);
  border-left: 4px solid var(--c-primary);
  border-radius: 0 var(--r) var(--r) 0;
  font-style: italic;
}
.sc-clanok__telo ul,
.sc-clanok__telo ol {
  margin: 16px 0;
  padding-left: 24px;
}
.sc-clanok__telo li {
  margin-bottom: 8px;
  list-style: disc;
}
.sc-clanok__telo ol li {
  list-style: decimal;
}

/* ===== HERO STRÁNKY ===== */
.sc-clanok__uvodna {
  position: relative;
  min-height: 350px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.sc-clanok__uvodna-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sc-clanok__uvodna-prekrytie {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 40%, rgba(0, 0, 0, 0.7) 100%);
}
.sc-clanok__uvodna-obsah {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px 40px;
  width: 100%;
  color: var(--c-white);
}
.sc-clanok__uvodna-nadpis {
  font-family: var(--f-heading);
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 700;
  line-height: 1.3;
}

/* ===== BLOK PRODUKTU ===== */
.sc-produkt {
  display: flex;
  gap: 30px;
  align-items: center;
  margin: 30px 0;
  padding: 30px;
  background: var(--c-bg-alt);
  border-radius: var(--r-lg);
}
.sc-produkt__obrazok {
  flex-shrink: 0;
  width: 250px;
}
.sc-produkt__obrazok img {
  border-radius: var(--r);
  width: 100%;
}
.sc-produkt__info {
  flex: 1;
}
.sc-produkt__info p {
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ===== TLACIDLO CTA ===== */
.sc-cta-wrap {
  text-align: center;
  margin: 40px 0;
}
.sc-cta-btn {
  display: inline-block;
  background: var(--c-primary);
  color: var(--c-white);
  font-weight: 700;
  padding: 16px 44px;
  border-radius: 50px;
  font-size: 1rem;
  transition: all var(--tr);
}
.sc-cta-btn:hover {
  background: var(--c-primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-btn);
}

/* ===== PRIPOMNUTKÉ CTA ===== */
.sc-pripomnutkove {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--c-white);
  padding: 12px 20px;
  text-align: center;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
  z-index: 100;
  display: none;
}
.sc-pripomnutkove.viditelne {
  display: block;
}
.sc-pripomnutkove__tlacidlo {
  display: inline-block;
  background: var(--c-primary);
  color: var(--c-white);
  font-weight: 700;
  padding: 12px 32px;
  border-radius: 50px;
  font-size: 0.95rem;
}

/* ===== KOMENTÁRE ===== */
.sc-komentare {
  margin-top: 50px;
  padding-top: 40px;
  border-top: 1px solid var(--c-border);
}
.sc-komentare__nadpis {
  font-family: var(--f-heading);
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 8px;
}
.sc-komentare__vyhliadka {
  text-align: center;
  font-size: 0.85rem;
  color: var(--c-text-light);
  margin-bottom: 30px;
}
.sc-komentare__mriezka {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.sc-komentare__stlpec {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.sc-komentar {
  background: var(--c-bg);
  padding: 18px;
  border-radius: var(--r);
}
.sc-komentar__vrch {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.sc-komentar__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.sc-komentar__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sc-komentar__meno {
  font-size: 0.85rem;
  font-weight: 600;
}
.sc-komentar__datum {
  font-size: 0.72rem;
  color: var(--c-text-light);
}
.sc-komentar__hviezdicky {
  display: flex;
  gap: 2px;
  margin-bottom: 8px;
}
.sc-komentar__hviezdicka {
  width: 14px;
  height: 14px;
}
.sc-komentar__text {
  font-size: 0.85rem;
  line-height: 1.6;
}

/* ===== TRASY ===== */
.sc-trasy__zoznam {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.sc-trasa {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 24px;
  padding: 24px;
  background: var(--c-bg);
  border-radius: var(--r-lg);
}
.sc-trasa__info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.sc-trasa__nazov {
  font-family: var(--f-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--c-primary-dark);
}
.sc-trasa__tagy {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.sc-trasa__tag {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  background: var(--c-primary);
  color: var(--c-white);
}
.sc-trasa__tag--lahka {
  background: #4caf50;
}
.sc-trasa__tag--stredna {
  background: #ff9800;
}
.sc-trasa__tag--tazka {
  background: #f44336;
}
.sc-trasa__popis {
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ===== TIM ===== */
.sc-tim {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 32px;
}
.sc-tim__karta {
  background: var(--c-bg);
  padding: 32px;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow);
}
.sc-tim__foto {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 20px;
  border: 3px solid var(--c-primary);
}
.sc-tim__foto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sc-tim__meno {
  font-family: var(--f-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--c-primary-dark);
  text-align: center;
  margin-bottom: 6px;
}
.sc-tim__rola {
  font-size: 0.85rem;
  color: var(--c-text-light);
  text-align: center;
  margin-bottom: 16px;
}
.sc-tim__bio {
  font-size: 0.9rem;
  line-height: 1.7;
}
.sc-tim__kontakt {
  margin-top: 12px;
  font-size: 0.85rem;
}
.sc-tim__kontakt a {
  color: var(--c-primary);
  font-weight: 600;
}

/* ===== KONTAKTNÁ STRÁNKA ===== */
.sc-kontakt__mriezka {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.sc-kontakt__info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.sc-kontakt__polozka {
  padding: 20px;
  background: var(--c-bg);
  border-radius: var(--r);
}
.sc-kontakt__znak {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--c-primary);
  margin-bottom: 8px;
}
.sc-kontakt__hodnota {
  font-size: 1rem;
  font-weight: 600;
}
.sc-kontakt__hodnota a {
  color: var(--c-primary);
}
.sc-kontakt__mapa {
  border-radius: var(--r-lg);
  overflow: hidden;
  min-height: 300px;
}
.sc-kontakt__mapa img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--c-white);
  box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  padding: 20px;
}
.cookie-banner__content {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.cookie-banner__text {
  flex: 1;
  font-size: 0.9rem;
  line-height: 1.6;
}
.cookie-banner__buttons {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.cookie-btn {
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  font-family: var(--f-body);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--tr);
}
.cookie-btn--accept {
  background: var(--c-primary);
  color: var(--c-white);
}
.cookie-btn--essential {
  background: var(--c-bg-alt);
  color: var(--c-text);
  border: 1px solid var(--c-border);
}
.cookie-btn--settings {
  background: transparent;
  color: var(--c-text-light);
  border: 1px solid var(--c-border);
}

/* ===== COOKIE MODAL ===== */
.cookie-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1001;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cookie-modal {
  background: var(--c-white);
  border-radius: var(--r-lg);
  max-width: 600px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
}
.cookie-modal__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid var(--c-border);
}
.cookie-modal__header h2 {
  font-family: var(--f-heading);
  font-size: 1.3rem;
}
.cookie-modal__close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--c-text-light);
}
.cookie-modal__body {
  padding: 24px;
}
.cookie-modal__body > p {
  margin-bottom: 20px;
  font-size: 0.95rem;
}
.cookie-category {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--c-border);
}
.cookie-category:last-child {
  border-bottom: none;
}
.cookie-category__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.cookie-category__title {
  font-weight: 600;
  font-size: 0.95rem;
}
.cookie-category__desc {
  font-size: 0.85rem;
  color: var(--c-text-light);
}
.cookie-switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
}
.cookie-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-switch__slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background: #ccc;
  transition: var(--tr);
  border-radius: 24px;
}
.cookie-switch__slider::before {
  content: "";
  position: absolute;
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background: white;
  transition: var(--tr);
  border-radius: 50%;
}
.cookie-switch input:checked + .cookie-switch__slider {
  background: var(--c-primary);
}
.cookie-switch input:checked + .cookie-switch__slider::before {
  transform: translateX(20px);
}
.cookie-modal__footer {
  padding: 20px 24px;
  border-top: 1px solid var(--c-border);
  text-align: right;
}

/* ===== TESTIMONIÁLE ===== */
.sc-odporucenia {
  display: flex;
  gap: 30px;
  margin: 40px 0;
}
.sc-odporucenia__delic {
  width: 1px;
  background: var(--c-border);
  flex-shrink: 0;
}
.sc-odporucenie {
  flex: 1;
}
.sc-odporucenie__osoba {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
.sc-odporucenie__foto {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--c-primary);
  flex-shrink: 0;
}
.sc-odporucenie__foto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sc-odporucenie__meno {
  font-size: 0.85rem;
  font-weight: 600;
}
.sc-odporucenie__titul {
  font-family: var(--f-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--c-primary-dark);
  margin-bottom: 10px;
}
.sc-odporucenie__text {
  font-size: 0.9rem;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 8px;
}

/* ===== ZOZNAM VÝHOD ===== */
.sc-vyhody-zoznam {
  padding: 32px;
  border-radius: var(--r-lg);
  margin: 30px 0;
}
.sc-vyhody-zoznam--tmavy {
  background: var(--c-primary);
  color: var(--c-white);
}
.sc-vyhody-zoznam__uvod {
  font-size: 1.05rem;
  margin-bottom: 12px;
}
.sc-vyhody-zoznam__nadpis {
  font-family: var(--f-heading);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 24px;
}
.sc-vyhody-zoznam__polozky {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.sc-vyhody-zoznam__polozka {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.sc-vyhody-zoznam__ikona {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  margin-top: 2px;
}
.sc-vyhody-zoznam__text {
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ===== RESPONZÍVNE ===== */
@media (max-width: 960px) {
  .sc-vyhody__mriezka {
    grid-template-columns: repeat(2, 1fr);
  }
  .sc-paticka__kontajner {
    grid-template-columns: repeat(2, 1fr);
  }
  .sc-o-nas__kontajner {
    grid-template-columns: 1fr;
  }
  .sc-o-nas__obrazok {
    order: -1;
  }
  .sc-kontakt__mriezka {
    grid-template-columns: 1fr;
  }
  .sc-trasa {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .sc-horna-lista__lava {
    font-size: 0.75rem;
  }
  .sc-horna-lista__prava {
    display: none;
  }
  .sc-hlavicka__navigacia {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--c-white);
    flex-direction: column;
    padding: 20px;
    gap: 16px;
    box-shadow: var(--shadow);
    z-index: 99;
  }
  .sc-hlavicka__navigacia--otvorene {
    display: flex !important;
  }
  .sc-hlavicka__burger {
    display: flex;
  }
  .sc-hlavicka__burger--aktivne span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .sc-hlavicka__burger--aktivne span:nth-child(2) {
    opacity: 0;
  }
  .sc-hlavicka__burger--aktivne span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  .sc-uvodna-sekcia {
    min-height: 400px;
  }
  .sc-uvodna-sekcia__nadpis {
    font-size: 1.8rem;
  }
  .sc-uvodna-sekcia__podnadpisom {
    font-size: 0.95rem;
  }
  .sc-sluzby__mriezka {
    grid-template-columns: 1fr;
  }
  .sc-vyhody__mriezka {
    grid-template-columns: 1fr 1fr;
  }
  .sc-clanky__mriezka {
    grid-template-columns: 1fr;
  }
  .sc-recenzie__mriezka {
    grid-template-columns: 1fr;
  }
  .sc-komentare__mriezka {
    grid-template-columns: 1fr;
  }
  .sc-odporucenia {
    flex-direction: column;
  }
  .sc-odporucenia__delic {
    width: 100%;
    height: 1px;
  }
  .sc-produkt {
    flex-direction: column;
    text-align: center;
  }
  .sc-produkt__obrazok {
    width: 100%;
    max-width: 250px;
    margin: 0 auto;
  }
  .sc-cta-btn {
    width: 100%;
    display: block;
    text-align: center;
  }
  .cookie-banner__content {
    flex-direction: column;
    text-align: center;
  }
  .cookie-banner__buttons {
    flex-direction: column;
    width: 100%;
  }
  .cookie-btn {
    width: 100%;
  }
  .sc-pripomnutkove.viditelne {
    display: block;
  }
  .sc-paticka__kontajner {
    grid-template-columns: 1fr;
  }
  .sc-tim {
    grid-template-columns: 1fr;
  }
}
