﻿/* ============================================================
   lk-trustbox — trust / USP pás pro homepage a kategorie
   Vlevo: pozicování značky (label, nadpis, text)
   Vpravo: 6 USP ikon ve 3×2 mřížce
   ============================================================ */
.lk-trustbox {
  width: 100%;
  margin: 32px 0;
  padding: 32px 40px;
  background: linear-gradient(180deg, rgba(131,190,65,0.06), rgba(131,190,65,0.02));
  border-top: 1px solid rgba(131,190,65,0.35);
  border-bottom: 1px solid rgba(131,190,65,0.35);
  box-sizing: border-box;
  font-family: inherit;
  color: #1D1D1D;
}

.lk-trustbox__inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 48px;
  align-items: center;
}

/* Levá strana — text */
.lk-trustbox__intro { min-width: 0; }
.lk-trustbox__tag {
  display: inline-block;
  margin: 0 0 12px;
  padding: 5px 12px;
  background: rgba(131,190,65,0.14);
  color: #006d01;
  font-family: inherit;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 4px;
  line-height: 1.4;
}
.lk-trustbox__title {
  margin: 0 0 10px;
  font-family: inherit;
  font-size: 20px;
  font-weight: 700;
  color: #1D1D1D;
  line-height: 1.3;
}
.lk-trustbox__text {
  margin: 0;
  font-family: inherit;
  font-size: 14px;
  line-height: 1.65;
  color: #1D1D1D;
}
.lk-trustbox__text strong {
  display: inline;
  font: inherit;
  font-weight: 700;
  color: #006d01;
}

/* Pravá strana — USP grid */
.lk-trustbox__usps {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 18px 16px;
}
.lk-trustbox__usp {
  display: flex;
  gap: 12px;
  align-items: center;
}
.lk-trustbox__usp-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(131,190,65,0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #006d01;
  transition: background 0.2s ease, transform 0.2s ease;
}
.lk-trustbox__usp-icon img,
.lk-trustbox__usp-icon svg {
  width: 20px;
  height: 20px;
  display: block;
}
.lk-trustbox__usp:hover .lk-trustbox__usp-icon {
  background: rgba(131,190,65,0.26);
  transform: translateY(-2px);
}
.lk-trustbox__usp-label {
  font-family: inherit;
  font-size: 12.5px;
  line-height: 1.35;
  color: #1D1D1D;
}
.lk-trustbox__usp-label strong {
  display: block;
  font: inherit;
  font-weight: 700;
  color: #1D1D1D;
}
.lk-trustbox__usp-label span {
  color: #555;
}

@media (max-width: 980px) {
  .lk-trustbox__inner {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .lk-trustbox__usps {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(131,190,65,0.30);
  }
}
@media (max-width: 768px) {
  .lk-trustbox { padding: 26px 22px; margin: 24px 0; }
  .lk-trustbox__tag { font-size: 10.5px; margin-bottom: 10px; }
  .lk-trustbox__title { font-size: 19px; margin-bottom: 8px; }
  .lk-trustbox__text { font-size: 13.5px; }
  .lk-trustbox__usps { grid-template-columns: 1fr 1fr; gap: 14px 12px; margin-top: 18px; padding-top: 18px; }
}
@media (max-width: 480px) {
  .lk-trustbox { padding: 22px 18px; }
  .lk-trustbox__title { font-size: 18px; }
  .lk-trustbox__text { font-size: 13.5px; line-height: 1.6; }
  .lk-trustbox__usps { grid-template-columns: 1fr 1fr; gap: 14px 10px; margin-top: 16px; padding-top: 16px; }
  .lk-trustbox__usp { gap: 10px; }
  .lk-trustbox__usp-icon { width: 36px; height: 36px; border-radius: 8px; }
  .lk-trustbox__usp-icon img,
  .lk-trustbox__usp-icon svg { width: 18px; height: 18px; }
  .lk-trustbox__usp-label { font-size: 12px; }
}

/* ============================================================
   lk-faq — sbalovací FAQ (čisté CSS přes <details>/<summary>)
   Defaultně všechny otázky zavřené, bez JS
   ============================================================ */
.lk-faq {
  width: 100%;
  margin: 0 0 12px;
}
.lk-faq__item {
  border-bottom: 1px solid #F1F1F1;
}
.lk-faq__item:first-child {
  border-top: 1px solid #F1F1F1;
}

/* summary = klikací řádek; reset defaultní šipky */
.lk-faq__trigger {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 16px 0;
  cursor: pointer;
  text-align: left;
  font: inherit;
  font-weight: 700;
  color: inherit;
  list-style: none;
  transition: color 0.2s ease;
}
.lk-faq__trigger::-webkit-details-marker { display: none; }
.lk-faq__trigger::marker { content: none; }
.lk-faq__trigger:hover { color: #006d01; }

.lk-faq__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  border: 1px solid rgba(131,190,65,0.55);
  background: rgba(131,190,65,0.12);
  color: #006d01;
  position: relative;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.lk-faq__icon::before,
.lk-faq__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: currentColor;
  border-radius: 1px;
}
.lk-faq__icon::before { width: 10px; height: 2px; transform: translate(-50%, -50%); }
.lk-faq__icon::after { width: 2px; height: 10px; transform: translate(-50%, -50%); transition: opacity 0.2s ease; }

.lk-faq__trigger-text { flex: 1; }

.lk-faq__body {
  padding: 4px 0 18px 38px;
  font: inherit;
  line-height: 1.75;
  color: inherit;
}
.lk-faq__body a { color: #006d01; text-decoration: underline; }
.lk-faq__body a:hover { color: #83BE41; }
.lk-faq__body a:focus-visible { outline: 2px solid rgba(131,190,65,0.35); outline-offset: 2px; border-radius: 2px; }
.lk-faq__body strong { font: inherit; font-weight: 700; }

/* otevřený stav (details[open]) */
.lk-faq__item[open] .lk-faq__icon { background: #006d01; border-color: #006d01; color: #ffffff; }
.lk-faq__item[open] .lk-faq__icon::after { opacity: 0; }
.lk-faq__item[open] .lk-faq__trigger-text { color: #006d01; }

@media (max-width: 480px) {
  .lk-faq__trigger { padding: 14px 0; gap: 12px; }
  .lk-faq__body { padding-left: 0; }
}

/* ============================================================
   lk-table — datová / porovnávací tabulka
   Desktop: klasická tabulka, mobil (≤640px): stacked karty
   ============================================================ */
.lk-table {
  width: 100%;
  margin: 0 0 20px;
  overflow: hidden;
  border: 1px solid rgba(131,190,65,0.30);
  border-radius: 4px;
  box-sizing: border-box;
  font-family: inherit;
}
.lk-table table {
  width: 100%;
  border-collapse: collapse;
  font: inherit;
  margin: 0;
}
.lk-table thead {
  background: rgba(131,190,65,0.10);
}
.lk-table th {
  text-align: left;
  padding: 14px 18px;
  font-weight: 700;
  color: #006d01;
  border-bottom: 1px solid rgba(131,190,65,0.30);
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.4;
}
.lk-table td {
  padding: 14px 18px;
  border-bottom: 1px solid #F1F1F1;
  vertical-align: top;
  line-height: 1.6;
  font: inherit;
  color: #1D1D1D;
  overflow-wrap: anywhere;
}
.lk-table tbody tr {
  transition: background 0.15s ease;
}
.lk-table tbody tr:nth-child(even) {
  background: rgba(131,190,65,0.04);
}
.lk-table tbody tr:hover {
  background: #F6F6F6;
}
.lk-table tbody tr:last-child td {
  border-bottom: none;
}
.lk-table td strong {
  display: inline;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  font-weight: 700;
  color: #006d01;
}

/* mobil — stacked karty s popisky sloupců */
@media (max-width: 640px) {
  .lk-table {
    border: none;
    border-radius: 0;
    overflow: visible;
  }
  .lk-table table,
  .lk-table thead,
  .lk-table tbody,
  .lk-table tr,
  .lk-table td {
    display: block;
    width: 100%;
  }
  .lk-table thead {
    display: none;
  }
  .lk-table tbody tr {
    margin: 0 0 12px;
    border: 1px solid rgba(131,190,65,0.30);
    border-radius: 4px;
    background: #ffffff;
    overflow: hidden;
  }
  .lk-table tbody tr:nth-child(even),
  .lk-table tbody tr:hover {
    background: #ffffff;
  }
  .lk-table td {
    border-bottom: 1px solid #F1F1F1;
    padding: 12px 14px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 14px;
    text-align: right;
  }
  .lk-table td:last-child {
    border-bottom: none;
  }
  .lk-table td::before {
    content: attr(data-label);
    font-weight: 700;
    color: #006d01;
    font-size: 11.5px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    flex-shrink: 0;
    max-width: 45%;
    text-align: left;
    line-height: 1.4;
  }
}

/* ============================================================
   lk-quote — citace / výrok odborníka
   Velká uvozovka vlevo, kurzíva, podpis autora
   ============================================================ */
.lk-quote {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 18px;
  align-items: start;
  margin: 24px 0;
  padding: 0;
  font-family: inherit;
}
.lk-quote::before {
  content: "„";
  font-family: Georgia, "Times New Roman", serif;
  font-size: 80px;
  line-height: 0.8;
  color: #83BE41;
  grid-row: span 2;
  margin-top: -28px;
  align-self: start;
}
.lk-quote__text {
  font: inherit;
  font-style: italic;
  line-height: 1.65;
  color: #1D1D1D;
  margin: 0;
}
.lk-quote__text p { margin: 0 0 8px; }
.lk-quote__text p:last-child { margin-bottom: 0; }
.lk-quote__text strong {
  display: inline;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  font-style: inherit;
  font-weight: 700;
  color: #006d01;
}
.lk-quote__author {
  font: inherit;
  font-weight: 600;
  color: #006d01;
  margin: 8px 0 0;
}

@media (max-width: 480px) {
  .lk-quote { gap: 2px 12px; }
  .lk-quote::before { font-size: 60px; margin-top: -20px; }
}


/* ============================================================
   lk-infobox — informační boxy (tip / varování / poznámka)
   Modifikátory: --tip (zelená), --warning (oranžová), --note (šedá)
   Ikony jako <img src=".../ikonky/icon-tip.svg" />
   ============================================================ */
.lk-infobox {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin: 20px 0;
  padding: 18px 20px;
  border-radius: 4px;
  box-sizing: border-box;
  font: inherit;
  color: #1D1D1D;
  line-height: 1.6;
}
.lk-infobox__icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  margin-top: 1px;
  line-height: 0;
}
.lk-infobox__icon img {
  width: 22px;
  height: 22px;
  display: block;
}
.lk-infobox__body {
  flex: 1;
  min-width: 0;
}
.lk-infobox__title {
  display: block;
  font: inherit;
  font-weight: 700;
  color: #1D1D1D;
  margin: 0 0 2px;
  line-height: 1.4;
}
.lk-infobox__text {
  font: inherit;
  color: #1D1D1D;
}
.lk-infobox__body strong {
  display: inline;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
  font-weight: 700;
}
.lk-infobox__link {
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity 0.2s ease;
}
.lk-infobox__link:hover { opacity: 0.75; }
.lk-infobox__link:focus-visible {
  outline: 3px solid rgba(131,190,65,0.25);
  outline-offset: 2px;
  border-radius: 2px;
}

.lk-infobox--tip { background: rgba(131,190,65,0.09); }
.lk-infobox--tip .lk-infobox__link { color: #006d01; }

.lk-infobox--warning { background: rgba(242,100,48,0.09); }
.lk-infobox--warning .lk-infobox__link { color: #c44e1f; }

.lk-infobox--note { background: #F6F6F6; }
.lk-infobox--note .lk-infobox__link { color: #006d01; }

@media (max-width: 480px) {
  .lk-infobox { padding: 14px 16px; gap: 12px; margin: 16px 0; }
  .lk-infobox__icon,
  .lk-infobox__icon img { width: 20px; height: 20px; }
}

/* ============================================================
   lk-bullets--dot — barevné odrážky s tečkou v brand zelené
   Tečka se vždy zarovná na první řádek textu i u dlouhých odrážek
   ============================================================ */
.lk-bullets--dot {
  --lk: #83BE41;
  --lh: 1.65;
  --dot: 8px;
  --dot-offset: 0px;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 0 0 20px !important;
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}
.lk-bullets--dot li {
  position: relative;
  margin: 1px 0 12px !important;
  padding-left: 18px !important;
  line-height: var(--lh);
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  overflow-wrap: anywhere;
}
.lk-bullets--dot li::before {
  content: "";
  position: absolute;
  left: 0;
  top: calc((1em * var(--lh) - var(--dot)) / 2 + var(--dot-offset));
  width: var(--dot);
  height: var(--dot);
  border-radius: 50%;
  background: var(--lk);
}
.lk-bullets--dot li::marker { content: none; }
.lk-bullets--dot li:last-child {
  margin-bottom: 0 !important;
}
.lk-bullets--dot li strong {
  display: inline;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
  font-weight: 700;
}
.lk-bullets--dot li a {
  color: #006d01;
  text-decoration: underline;
  text-underline-offset: 2px;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  transition: color 0.2s ease;
}
.lk-bullets--dot li a:hover {
  color: #83BE41;
}
.lk-bullets--dot li a:focus-visible {
  outline: 2px solid rgba(131, 190, 65, 0.35);
  outline-offset: 2px;
  border-radius: 2px;
}
.lk-bullets--dot ul.lk-bullets--dot {
  margin-top: 8px !important;
}

/* Konzistence napříč typy Shoptet stránek (kategorie / článek / stránka) */
.category__secondDescription .lk-bullets--dot,
.detail-description .lk-bullets--dot,
.bottomDescr .lk-bullets--dot {
  list-style: none !important;
  padding-left: 20px !important;
}
.category__secondDescription .lk-bullets--dot li,
.detail-description .lk-bullets--dot li,
.bottomDescr .lk-bullets--dot li {
  background: none !important;
  padding-left: 18px !important;
}

/* ============================================================
   lk-perex — úvodní odstavec článku / stránky / kategorie
   Větší tmavý text + spodní brand-tintovaná čára
   ============================================================ */
.lk-perex,
body.type-post .lk-perex,
body.blog-detail .lk-perex,
body.article-detail .lk-perex,
.blog-article-detail .lk-perex,
.article-detail .lk-perex,
.post-detail .lk-perex,
body.type-page .lk-perex,
.page-detail .lk-perex,
.content-page .lk-perex,
.page-content .lk-perex {
  margin: 0 0 28px !important;
  padding: 0 0 22px !important;
  border-bottom: 1px solid rgba(131, 190, 65, 0.35) !important;
  border-left: none !important;
  border-top: none !important;
  background: none !important;
}
.lk-perex p {
  font-family: inherit;
  font-size: 19px !important;
  font-weight: 500 !important;
  color: #1D1D1D !important;
  line-height: 1.6 !important;
  margin: 0 0 0.8em !important;
}
.lk-perex p:last-child {
  margin-bottom: 0 !important;
}
.lk-perex strong {
  display: inline;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  font-weight: 700 !important;
  color: #006d01 !important;
}
.lk-perex a {
  color: #006d01 !important;
  text-decoration: none !important;
  border-bottom: 1px solid rgba(0, 109, 1, 0.35) !important;
  transition: border-color 0.2s ease !important;
}
.lk-perex a:hover {
  border-bottom-color: #006d01 !important;
}
.lk-perex a:focus-visible {
  outline: 2px solid rgba(131, 190, 65, 0.35);
  outline-offset: 2px;
}

@media (max-width: 768px) {
  .lk-perex {
    margin-bottom: 22px !important;
    padding-bottom: 18px !important;
  }
  .lk-perex p {
    font-size: 17px !important;
  }
}

/* ============================================================
   lk-split — sekce s obrázkem a textem vedle sebe
   Modifikátor --reverse pro obrázek vlevo
   ============================================================ */
.lk-split {
  display: flex;
  align-items: center;
  gap: 36px;
  width: 100%;
  margin: 28px 0;
  font-family: inherit;
  box-sizing: border-box;
}
.lk-split *,
.lk-split *::before,
.lk-split *::after { box-sizing: border-box; }

.lk-split--reverse {
  flex-direction: row-reverse;
}

.lk-split__text {
  flex: 1 1 55%;
  min-width: 0;
}
.lk-split__title {
  margin: 0 0 16px;
  line-height: 1.25;
  color: #1D1D1D;
  font-weight: 700;
  font-family: inherit;
}
.lk-split__text p,
.lk-split__text ul,
.lk-split__text ol {
  margin: 0 0 12px;
}
.lk-split__text > *:last-child {
  margin-bottom: 0;
}
.lk-split__text strong {
  display: inline;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
  font-weight: 700;
}

.lk-split__media {
  flex: 1 1 45%;
  min-width: 0;
  margin: 0;
}
.lk-split__box {
  width: 100%;
}
.lk-split__img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: 4px;
}
.lk-split__caption {
  margin: 10px 2px 0;
  font-size: 13px;
  line-height: 1.5;
  color: #555;
  font-style: italic;
}
.lk-split__caption strong,
.lk-split__caption b {
  display: inline;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  font-weight: 700;
  color: #006d01;
  font-style: normal;
}
.lk-split__caption a {
  color: inherit;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}
.lk-split__caption a:hover {
  color: #006d01;
}

@media (max-width: 768px) {
  .lk-split,
  .lk-split--reverse {
    flex-direction: column;
    gap: 18px;
  }
  .lk-split__text,
  .lk-split__media {
    flex: 1 1 auto;
    width: 100%;
  }
  .lk-split__caption {
    margin-top: 8px;
  }
}
@media (max-width: 480px) {
  .lk-split {
    margin: 20px 0;
  }
}

/* ============================================================
   lk-image — samostatný obrázek v článku s popiskem
   ============================================================ */
.lk-image {
  margin: 28px 0;
  font-family: inherit;
  box-sizing: border-box;
}
.lk-image img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: 4px;
}
.lk-image figcaption {
  margin: 10px 2px 0;
  font-family: inherit;
  font-size: 13px;
  line-height: 1.5;
  color: #555;
  font-style: italic;
  text-align: left;
}
.lk-image figcaption strong,
.lk-image figcaption b {
  display: inline;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  font-weight: 700;
  color: #006d01;
  font-style: normal;
}
.lk-image figcaption a {
  color: inherit;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
  transition: color 0.2s ease;
}
.lk-image figcaption a:hover {
  color: #006d01;
}

@media (max-width: 480px) {
  .lk-image {
    margin: 20px 0;
  }
  .lk-image figcaption {
    font-size: 12.5px;
  }
}


/* ============================================================
   lk-sources — seznam odborných zdrojů pod článkem
   ============================================================ */
.lk-sources {
  margin: 40px 0 24px;
  padding: 20px 0 0;
  border-top: 1px solid rgba(131, 190, 65, 0.35);
  font-family: inherit;
  box-sizing: border-box;
}
.lk-sources__title {
  margin: 0 0 14px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  color: #006d01;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.lk-sources__list {
  margin: 0 !important;
  padding: 0 0 0 22px !important;
  list-style: decimal !important;
  background: none;
}
.lk-sources__list li {
  margin: 0 0 10px !important;
  padding-left: 4px !important;
  font-family: inherit;
  font-size: 13px;
  line-height: 1.6;
  color: #555;
  font-style: italic;
  background: none;
}
.lk-sources__list li:last-child {
  margin-bottom: 0 !important;
}
.lk-sources__list li::marker {
  color: #006d01;
  font-weight: 700;
}
.lk-sources__list li strong {
  display: inline;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
  font-weight: 700;
  font-style: normal;
}
.lk-sources__link {
  color: #006d01;
  font-style: normal;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
  transition: color 0.2s ease;
}
.lk-sources__link:hover {
  color: #83BE41;
}
.lk-sources__link:focus-visible {
  outline: 2px solid rgba(131, 190, 65, 0.35);
  outline-offset: 2px;
  border-radius: 2px;
}

/* Konzistence napříč typy Shoptet stránek */
.category__secondDescription .lk-sources__list,
.detail-description .lk-sources__list,
.bottomDescr .lk-sources__list {
  list-style: decimal !important;
  padding-left: 22px !important;
}
.category__secondDescription .lk-sources__list li,
.detail-description .lk-sources__list li,
.bottomDescr .lk-sources__list li {
  background: none !important;
  padding-left: 4px !important;
}

@media (max-width: 480px) {
  .lk-sources {
    margin: 32px 0 20px;
    padding-top: 16px;
  }
  .lk-sources__title {
    margin-bottom: 12px;
  }
  .lk-sources__list {
    padding-left: 20px !important;
  }
  .lk-sources__list li {
    font-size: 12.5px;
  }
}

/* ============================================================
   lk-guide — průvodce nákupem (sbalovací, krokový, s vnořenými prvky)
   Defaultně rozbalený. Toggle běží přes <details>/<summary>
   ============================================================ */
.lk-guide {
  width: 100%;
  margin: 28px 0;
  padding: 28px 32px;
  background: #ffffff;
  border: 1px solid rgba(131,190,65,0.30);
  border-radius: 4px;
  box-sizing: border-box;
  box-shadow: 0 1px 2px rgba(0,109,1,0.04), 0 8px 18px rgba(0,109,1,0.05);
  font-family: inherit;
}
.lk-guide__intro { margin: 0 0 20px; }
.lk-guide__title {
  margin: 0 0 10px;
  font-family: inherit;
  font-weight: 700;
  color: #1D1D1D;
  line-height: 1.25;
  font-size: 22px;
}
.lk-guide__lead {
  margin: 0;
  font-family: inherit;
  font-size: 15px;
  line-height: 1.65;
  color: #1D1D1D;
}
.lk-guide__lead strong {
  display: inline;
  font: inherit;
  font-weight: 700;
  color: #006d01;
}
.lk-guide__lead a {
  color: #006d01;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: opacity 0.2s ease;
}
.lk-guide__lead a:hover { opacity: 0.75; }

/* Toggle — <details> + <summary> */
.lk-guide__details { width: 100%; margin: 16px 0 0; }

.lk-guide__toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  background: #006d01;
  color: #ffffff;
  border-radius: 6px;
  cursor: pointer;
  list-style: none;
  font-family: inherit;
  font-weight: 600;
  font-size: 14px;
  line-height: 1;
  transition: background 0.2s ease;
}
.lk-guide__toggle::-webkit-details-marker { display: none; }
.lk-guide__toggle::marker { content: none; }
.lk-guide__toggle:hover { background: #83BE41; }

.lk-guide__toggle::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  margin-top: -3px;
  transition: transform 0.25s ease;
}
.lk-guide__details[open] .lk-guide__toggle::after {
  transform: rotate(-135deg);
  margin-top: 3px;
}

.lk-guide__toggle-label--hide { display: none; }
.lk-guide__details[open] .lk-guide__toggle-label--show { display: none; }
.lk-guide__details[open] .lk-guide__toggle-label--hide { display: inline; }

/* Kroky */
.lk-guide__steps {
  margin: 24px 0 0;
  padding: 24px 0 0;
  border-top: 1px solid #F1F1F1;
}
.lk-guide__step { margin: 0 0 32px; }
.lk-guide__step:last-child { margin-bottom: 0; }

.lk-guide__step-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 14px;
}
.lk-guide__step-num {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(131,190,65,0.14);
  border: 1px solid rgba(131,190,65,0.40);
  color: #006d01;
  font-family: inherit;
  font-weight: 700;
  font-size: 13px;
  line-height: 1;
}
.lk-guide__step-title {
  margin: 0;
  font-family: inherit;
  font-weight: 700;
  color: #006d01;
  font-size: 16px;
  line-height: 1.4;
}

.lk-guide__step-body {
  padding-left: 40px;
}
.lk-guide__step-body p {
  margin: 0 0 12px;
  font-family: inherit;
  line-height: 1.65;
  color: #1D1D1D;
}
.lk-guide__step-body p:last-child { margin-bottom: 0; }
.lk-guide__step-body strong {
  display: inline;
  font: inherit;
  font-weight: 700;
  color: #006d01;
}
.lk-guide__step-body a {
  color: #006d01;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: opacity 0.2s ease;
}
.lk-guide__step-body a:hover { opacity: 0.75; }

/* Vnořené komponenty dostanou jen vertikální rytmus */
.lk-guide__step-body .lk-bullets--dot,
.lk-guide__step-body .lk-table,
.lk-guide__step-body .lk-infobox {
  margin: 12px 0;
}

@media (max-width: 768px) {
  .lk-guide { padding: 22px 20px; }
  .lk-guide__title { font-size: 20px; }
  .lk-guide__step-body { padding-left: 0; }
}
@media (max-width: 480px) {
  .lk-guide { padding: 18px 16px; margin: 20px 0; }
  .lk-guide__step-header { gap: 10px; margin-bottom: 12px; }
  .lk-guide__step-num { width: 26px; height: 26px; font-size: 12.5px; }
  .lk-guide__step-title { font-size: 15px; }
}


/* ============================================================
   lk-explainer — kontextový blok / vysvětlení tématu v článku
   Label nahoře (volitelný), titulek + body s odstavci a linky
   ============================================================ */
.lk-explainer {
  width: 100%;
  margin: 32px 0;
  padding: 28px 32px;
  background: rgba(131,190,65,0.07);
  border: 1px solid rgba(131,190,65,0.25);
  border-radius: 4px;
  box-sizing: border-box;
  font-family: inherit;
  color: #1D1D1D;
}
.lk-explainer__label {
  display: block;
  margin: 0 0 6px;
  font-family: inherit;
  font-size: 12px;
  font-weight: 700;
  color: #006d01;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.4;
}
.lk-explainer__title {
  margin: 0 0 16px;
  font-family: inherit;
  font-weight: 700;
  color: #1D1D1D;
  font-size: 22px;
  line-height: 1.3;
}
.lk-explainer__body {
  font-family: inherit;
}
.lk-explainer__body p {
  margin: 0 0 14px;
  font-family: inherit;
  line-height: 1.7;
  color: #1D1D1D;
}
.lk-explainer__body p:last-child {
  margin-bottom: 0;
}
.lk-explainer__body strong {
  display: inline;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  font-weight: 700;
  color: #006d01;
}
.lk-explainer__body a {
  color: #006d01;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: opacity 0.2s ease;
}
.lk-explainer__body a:hover {
  opacity: 0.75;
}
.lk-explainer__body a:focus-visible {
  outline: 2px solid rgba(131, 190, 65, 0.35);
  outline-offset: 2px;
  border-radius: 2px;
}

/* Vnořené bullety dostanou jemný vertikální rytmus */
.lk-explainer__body .lk-bullets--dot {
  margin: 14px 0 !important;
}

@media (max-width: 768px) {
  .lk-explainer {
    padding: 22px 20px;
    margin: 24px 0;
  }
  .lk-explainer__title {
    font-size: 20px;
  }
}
@media (max-width: 480px) {
  .lk-explainer {
    padding: 18px 16px;
  }
  .lk-explainer__title {
    font-size: 18px;
  }
  .lk-explainer__label {
    font-size: 11.5px;
  }
}

/* ============================================================
   lk-chip — mini odkazy na související kategorie (soft tint)
   Hranaté chipy bez ikony, brand zelená na tintovaném pozadí
   ============================================================ */
.lk-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0;
  padding: 0 !important;
  list-style: none !important;
}
.lk-chips li {
  margin: 0 !important;
  padding: 0 !important;
  background: none !important;
  list-style: none !important;
}
.lk-chips li::before,
.lk-chips li::marker { content: none !important; }

.lk-chip,
.lk-chips a.lk-chip,
.lk-chips li a.lk-chip {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
  color: #006d01 !important;
  background: rgba(131,190,65,0.14);
  border: 1px solid transparent;
  border-bottom: 1px solid transparent !important;
  border-radius: 4px;
  text-decoration: none !important;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.lk-chip:hover,
.lk-chips a.lk-chip:hover,
.lk-chips li a.lk-chip:hover {
  background: rgba(131,190,65,0.26);
  color: #006d01 !important;
  text-decoration: none !important;
  border-bottom-color: transparent !important;
}
.lk-chip:focus,
.lk-chip:active,
.lk-chip:visited {
  text-decoration: none !important;
  color: #006d01 !important;
}
.lk-chip:focus-visible {
  outline: 2px solid rgba(131,190,65,0.45);
  outline-offset: 2px;
}

/* Konzistence napříč typy Shoptet stránek (kategorie / článek / stránka) */
.category__secondDescription .lk-chips,
.detail-description .lk-chips,
.bottomDescr .lk-chips {
  list-style: none !important;
  padding: 0 !important;
}
.category__secondDescription .lk-chips li,
.detail-description .lk-chips li,
.bottomDescr .lk-chips li {
  background: none !important;
  padding: 0 !important;
}
.category__secondDescription .lk-chip,
.detail-description .lk-chip,
.bottomDescr .lk-chip {
  text-decoration: none !important;
  border-bottom: 1px solid transparent !important;
}

@media (max-width: 480px) {
  .lk-chip {
    font-size: 12.5px;
    padding: 7px 12px;
  }
}

/* ============================================================
   lk-pros-cons — dvousloupcový seznam pro/proti (editorial styl)
   Bez krabice, středová svislá čára, hlavička s kolečkem + label
   ============================================================ */
.lk-pros-cons {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin: 28px 0;
  padding: 8px 0;
  font-family: inherit;
  box-sizing: border-box;
}
.lk-pros-cons *,
.lk-pros-cons *::before,
.lk-pros-cons *::after { box-sizing: border-box; }

.lk-pros-cons__col {
  padding: 4px 28px 4px 0;
}
.lk-pros-cons__col--cons {
  padding: 4px 0 4px 28px;
  border-left: 1px solid #F1F1F1;
}

.lk-pros-cons__header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
}

.lk-pros-cons__icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  color: #ffffff;
  font-family: inherit;
  font-weight: 700;
  font-size: 13px;
  line-height: 1;
}
.lk-pros-cons__col--pros .lk-pros-cons__icon { background: #006d01; }
.lk-pros-cons__col--cons .lk-pros-cons__icon { background: #c44e1f; font-size: 15px; padding-bottom: 1px; }

.lk-pros-cons__title {
  margin: 0;
  font-family: inherit;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.2;
}
.lk-pros-cons__col--pros .lk-pros-cons__title { color: #006d01; }
.lk-pros-cons__col--cons .lk-pros-cons__title { color: #c44e1f; }

.lk-pros-cons__list {
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}
.lk-pros-cons__list li {
  position: relative;
  margin: 0 0 8px !important;
  padding: 0 0 0 18px !important;
  font-family: inherit;
  font-size: 14px;
  line-height: 1.55;
  color: #1D1D1D;
  background: none !important;
  list-style: none !important;
  overflow-wrap: anywhere;
}
.lk-pros-cons__list li:last-child {
  margin-bottom: 0 !important;
}
.lk-pros-cons__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
}
.lk-pros-cons__list li::marker { content: none; }
.lk-pros-cons__col--pros .lk-pros-cons__list li::before { background: #83BE41; }
.lk-pros-cons__col--cons .lk-pros-cons__list li::before { background: #c44e1f; }

.lk-pros-cons__list li strong {
  display: inline;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
  font-weight: 700;
}
.lk-pros-cons__col--pros .lk-pros-cons__list li strong { color: #006d01; }
.lk-pros-cons__list li a {
  color: #006d01;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: opacity 0.2s ease;
}
.lk-pros-cons__col--cons .lk-pros-cons__list li a { color: #c44e1f; }
.lk-pros-cons__list li a:hover { opacity: 0.75; }

/* Konzistence napříč typy Shoptet stránek */
.category__secondDescription .lk-pros-cons__list,
.detail-description .lk-pros-cons__list,
.bottomDescr .lk-pros-cons__list {
  list-style: none !important;
  padding: 0 !important;
}
.category__secondDescription .lk-pros-cons__list li,
.detail-description .lk-pros-cons__list li,
.bottomDescr .lk-pros-cons__list li {
  background: none !important;
  padding: 0 0 0 18px !important;
}

@media (max-width: 640px) {
  .lk-pros-cons {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .lk-pros-cons__col {
    padding: 0 0 24px;
  }
  .lk-pros-cons__col--cons {
    padding: 24px 0 0;
    border-left: none;
    border-top: 1px solid #F1F1F1;
  }
}

/* ============================================================
   lk-versus — porovnání dvou produktů/látek vedle sebe
   Editorial split layout se středovou čárou a VS odznakem
   ============================================================ */
.lk-versus {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin: 28px 0;
  padding: 8px 0;
  font-family: inherit;
  box-sizing: border-box;
}
.lk-versus *,
.lk-versus *::before,
.lk-versus *::after { box-sizing: border-box; }

.lk-versus__side {
  padding: 4px 28px 4px 0;
}
.lk-versus__side--right {
  padding: 4px 0 4px 28px;
  border-left: 1px solid rgba(131,190,65,0.30);
  position: relative;
}

.lk-versus__badge {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid rgba(131,190,65,0.30);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
  font-weight: 700;
  font-size: 12px;
  color: #006d01;
  letter-spacing: 0.04em;
}

.lk-versus__header {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 16px;
}
.lk-versus__title {
  margin: 0;
  font-family: inherit;
  font-size: 28px;
  font-weight: 700;
  color: #006d01;
  line-height: 1;
}
.lk-versus__subtitle {
  font-family: inherit;
  font-size: 12px;
  font-weight: 600;
  color: #555;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.lk-versus__lead {
  margin: 0 0 14px;
  font-family: inherit;
  font-size: 15px;
  line-height: 1.65;
  color: #1D1D1D;
}
.lk-versus__lead strong {
  display: inline;
  font: inherit;
  font-weight: 700;
  color: #006d01;
}
.lk-versus__lead a {
  color: #006d01;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: opacity 0.2s ease;
}
.lk-versus__lead a:hover { opacity: 0.75; }

.lk-versus__list {
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
  font-size: 14px;
}
.lk-versus__list li {
  position: relative;
  margin: 0 0 6px !important;
  padding: 0 0 0 18px !important;
  line-height: 1.5;
  font-family: inherit;
  color: #1D1D1D;
  background: none !important;
  list-style: none !important;
  overflow-wrap: anywhere;
}
.lk-versus__list li:last-child {
  margin-bottom: 0 !important;
}
.lk-versus__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #83BE41;
}
.lk-versus__list li::marker { content: none; }
.lk-versus__list li strong {
  display: inline;
  font: inherit;
  font-weight: 700;
  color: #006d01;
}

/* Konzistence napříč typy Shoptet stránek */
.category__secondDescription .lk-versus__list,
.detail-description .lk-versus__list,
.bottomDescr .lk-versus__list {
  list-style: none !important;
  padding: 0 !important;
}
.category__secondDescription .lk-versus__list li,
.detail-description .lk-versus__list li,
.bottomDescr .lk-versus__list li {
  background: none !important;
  padding: 0 0 0 18px !important;
}

@media (max-width: 640px) {
  .lk-versus {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .lk-versus__side {
    padding: 0 0 24px;
  }
  .lk-versus__side--right {
    padding: 24px 0 0;
    border-left: none;
    border-top: 1px solid rgba(131,190,65,0.30);
  }
  .lk-versus__badge {
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .lk-versus__title {
    font-size: 24px;
  }
}