﻿/* === FAQ === */








.faq{
  width: 100%;
}








/* Jedna položka */
.faq-item{
  margin: 0 0 12px 0;
  border: 1px solid #6b34c5;
  border-radius: 4px;
  background: #ffffff;
  overflow: hidden;
}








/* Klikací hlavička (summary) */
.faq-item > summary{
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  padding: 14px 16px;
  font: inherit;
  color: #24242e;
  background: #f7f2fc;
  border-bottom: 1px solid rgba(107,52,197,0);
  transition: background-color .15s ease;
}








/* Skrytí markeru v Safari/Chromu */
.faq-item > summary::-webkit-details-marker{
  display: none;
}








/* Text otázky */
.faq-q{
  font: inherit;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.35;
  flex: 1 1 auto;
  min-width: 0;
}








/* Ikona vlevo */
.faq-icon{
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid #6b34c5;
  color: #4e2d78;
  transition: transform .15s ease, background-color .15s ease, border-color .15s ease;
}








/* SVG chevron */
.faq-chevron{
  width: 16px;
  height: 16px;
  display: block;
}








/* Odpověď */
.faq-a{
  padding: 14px 16px 16px 16px;
  font: inherit;
  color: #24242e;
  line-height: 1.55;
  background: #ffffff;
}








/* Odkazy uvnitř odpovědi */
.faq-a a{
  color: #61309a;
  text-decoration: underline;
  text-underline-offset: 2px;
}








.faq-a a:hover{
  color: #4f2780;
}








/* Stav otevřeno */
.faq-item[open] > summary{
  background: #f3ebfb;
  border-bottom-color: rgba(107,52,197,.35);
}








/* Otevřeno: šipka se otočí nahoru */
.faq-item[open] .faq-icon{
  transform: rotate(180deg);
  background: #fbf8fe;
  border-color: #6b34c5;
}








/* Hover */
.faq-item > summary:hover{
  background: #ede2f8;
}








/* Focus pro klávesnici */
.faq-item > summary:focus-visible{
  outline: 3px solid rgba(107,52,197,.22);
  outline-offset: 2px;
}








/* Mobil */
@media (max-width: 640px){
  .faq-item > summary{
    padding: 12px 14px;
    gap: 10px;
  }








  .faq-a{
    padding: 12px 14px 14px 14px;
  }








  .faq-q{
    font-size: 14px;
  }
}












/* === Průvodce výběrem === */




.pk-guide {
  font-family: inherit;
  background: #f8f5fb;
  border: 1px solid #ebe5f5;
  border-radius: 12px;
  padding: 1.5rem 1.75rem;
  margin: 1.5rem 0;
  box-sizing: border-box;
}




/* Hlavní nadpis */
.pk-guide__title {
  margin: 0 0 0.75rem 0;
  font-size: 20px;
  font-weight: 700;
  color: #1a0f3d;
  line-height: 1.3;
}




/* Úvodní odstavec */
.pk-guide__intro {
  margin: 0 0 1.25rem 0;
  font-size: 15px;
  line-height: 1.7;
  color: #374151;
}




/* Tlačítko summary (zobrazit/sbalit) */
.pk-guide details > summary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  list-style: none;
  user-select: none;
  background: #6b4fc4;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  padding: 0.625rem 1.125rem;
  border-radius: 8px;
  transition: background 0.15s ease;
}




.pk-guide details > summary:hover {
  background: #5a3fb0;
}




.pk-guide details > summary::-webkit-details-marker {
  display: none;
}
.pk-guide details > summary::marker {
  display: none;
}




/* Šipka v summary */
.pk-guide__chevron {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}




.pk-guide details[open] .pk-guide__chevron {
  transform: rotate(180deg);
}




/* Přepínání popisků v summary */
.pk-guide__btn-label--less {
  display: none;
}
.pk-guide details[open] .pk-guide__btn-label--more {
  display: none;
}
.pk-guide details[open] .pk-guide__btn-label--less {
  display: inline;
}




/* Obsah po rozbalení */
.pk-guide__content {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #ebe5f5;
}




/* Seznam kroků */
.pk-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: pk-step;
}




.pk-steps > li {
  counter-increment: pk-step;
  position: relative;
  padding: 1.5rem 0 1.5rem 3.25rem;
  border-bottom: 1px solid #ebe5f5;
}




.pk-steps > li:first-child {
  padding-top: 0;
}




.pk-steps > li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}




.pk-steps > li::before {
  content: counter(pk-step);
  position: absolute;
  left: 0;
  top: 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f1ebf7;
  color: #6b4fc4;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
}




.pk-steps > li:first-child::before {
  top: 0;
}




/* Nadpis kroku */
.pk-guide__stepTitle {
  margin: 0 0 0.5rem 0;
  font-size: 17px;
  font-weight: 600;
  color: #1f2937;
  line-height: 1.35;
}




/* Lead text pod nadpisem */
.pk-guide__stepLead {
  margin: 0 0 1rem 0;
  font-size: 14.5px;
  line-height: 1.65;
  color: #374151;
}




/* Odrážkový seznam */
.pk-bullets--dot {
  list-style: none;
  margin: 0 0 1rem 0;
  padding: 0;
}




.pk-bullets--dot li {
  position: relative;
  padding: 0.375rem 0 0.375rem 1.25rem;
  font-size: 14.5px;
  line-height: 1.6;
  color: #374151;
}




.pk-bullets--dot li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.875rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #6b4fc4;
}




.pk-bullets--dot strong {
  color: #1a0f3d;
  font-weight: 600;
}




/* Tip rámeček */
.pk-tip {
  display: flex;
  gap: 12px;
  background: #ffffff;
  border-left: 3px solid #6b4fc4;
  padding: 0.875rem 1.125rem;
  border-radius: 0 8px 8px 0;
  margin: 1rem 0 0 0;
  font-size: 13.5px;
  line-height: 1.6;
  color: #374151;
}




.pk-tip__icon {
  flex-shrink: 0;
  font-size: 18px;
  line-height: 1.4;
}




.pk-tip__text strong {
  color: #1a0f3d;
  font-weight: 600;
}




/* Obal pro tabulku (responzivní scroll) */
.table-wrap {
  overflow-x: auto;
  margin: 1rem 0;
  border: 1px solid #ebe5f5;
  border-radius: 8px;
  background: #ffffff;
}




/* Tabulka */
.ui-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13.5px;
}




.ui-table thead {
  background: #f1ebf7;
}




.ui-table th {
  text-align: left;
  padding: 11px 14px;
  font-weight: 600;
  color: #1a0f3d;
  border-bottom: 1px solid #ebe5f5;
  white-space: nowrap;
}




.ui-table td {
  padding: 11px 14px;
  color: #374151;
  border-bottom: 1px solid #f1f1f4;
  line-height: 1.5;
  vertical-align: top;
}




.ui-table tbody tr:last-child td {
  border-bottom: none;
}




/* ============================================
   RESPONZIVITA
   ============================================ */




@media (max-width: 760px) {
  .pk-guide {
    padding: 1.25rem;
  }
  .pk-guide__title {
    font-size: 18px;
  }
  .pk-guide__intro {
    font-size: 14px;
  }
  .pk-steps > li {
    padding-left: 2.75rem;
  }
  .pk-steps > li::before {
    width: 30px;
    height: 30px;
    font-size: 13px;
  }
  .pk-guide__stepTitle {
    font-size: 16px;
  }
  .pk-guide__stepLead,
  .pk-bullets--dot li {
    font-size: 14px;
  }
  .ui-table {
    font-size: 13px;
  }
  .ui-table th,
  .ui-table td {
    padding: 10px 12px;
  }
}




/* Mobilní zobrazení tabulek jako karty */
@media (max-width: 540px) {
  .table-mobile-table .ui-table thead {
    display: none;
  }
  .table-mobile-table .ui-table,
  .table-mobile-table .ui-table tbody,
  .table-mobile-table .ui-table tr,
  .table-mobile-table .ui-table td {
    display: block;
    width: 100%;
  }
  .table-mobile-table .ui-table tr {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #ebe5f5;
  }
  .table-mobile-table .ui-table tr:last-child {
    border-bottom: none;
  }
  .table-mobile-table .ui-table td {
    padding: 0.25rem 0;
    border: none;
  }
  .table-mobile-table .ui-table td:first-child {
    font-weight: 600;
    color: #1a0f3d;
    font-size: 14px;
  }
}




@media (max-width: 480px) {
  .pk-guide {
    border-radius: 8px;
    padding: 1.125rem;
  }
  .pk-guide details > summary {
    font-size: 13px;
    padding: 0.5rem 1rem;
  }
}








/* === TRUST BOX === */
.trust-box-wrap {
  font-family: inherit;
  width: 100%;
  padding: 1.5rem 1.75rem;
  background: #f8f5fb;
  border-radius: 10px;
  box-sizing: border-box;
}
.trust-box-text {
  font-size: 14px;
  line-height: 1.75;
  color: #2d1b5e;
  margin: 0 0 1.5rem;
}
.trust-box-text strong {
  font-weight: 700;
  color: #1a0f3d;
}
.trust-box-usps {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border-top: 1px solid #ebe5f5;
  padding-top: 1.25rem;
}
.trust-box-usp {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 8px;
  gap: 10px;
}
/* Čáry pouze na desktopu */
.trust-box-usp + .trust-box-usp {
  border-left: 1px solid #ebe5f5;
}
.trust-box-usp-icon {
  font-size: 24px;
  line-height: 1;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.trust-box-usp-label {
  font-size: 12px;
  font-weight: 500;
  color: #2d1b5e;
  line-height: 1.4;
}
/* Tablet – 3 sloupce, bez čar */
@media (max-width: 760px) {
  .trust-box-usps {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 1.5rem;
  }
  .trust-box-usp + .trust-box-usp {
    border-left: none;
  }
}
/* Mobil – 2 sloupce, bez čar */
@media (max-width: 480px) {
  .trust-box-wrap {
    padding: 1.25rem;
    border-radius: 8px;
  }
  .trust-box-text {
    font-size: 13px;
  }
  .trust-box-usps {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 1.5rem;
  }
  .trust-box-usp + .trust-box-usp {
    border-left: none;
  }
  .trust-box-usp-icon {
    font-size: 20px;
    height: 30px;
  }
  .trust-box-usp-label {
    font-size: 11.5px;
  }
}




















/* === MINI BUTTONY === */
.mini-buttons {
display: flex;
flex-wrap: wrap;
gap: 8px;
}
a.mini-button,
a.mini-button:link,
a.mini-button:visited,
a.mini-button:active {
display: inline-block;
padding: 8px 14px;
background: #f8f8f8;
color: inherit !important;
border: 1px solid #61309a;
border-radius: 999px;
text-decoration: none !important;
font: inherit;
line-height: 1.2;
box-sizing: border-box;
transition: background-color 0.2s ease, border-color 0.2s ease;
}
a.mini-button:hover,
a.mini-button:focus,
a.mini-button:focus-visible {
background: #e3e6f2;
border-color: #61309a;
text-decoration: none !important;
outline: none;
}




/* === Tip box === */




.tip-note{
  background: #F8F5FB;
  border: 1px solid #612f99;
  border-radius: 4px;
  padding: 14px 16px;
  margin: 16px 0;




  font-family: inherit;
  font-size: 16px;
  line-height: 1.5;
  color: #24242E;




  /* Jemné odlišení od okolí bez toho, aby to splývalo s USP */
  box-shadow: 0 8px 20px rgba(0,0,0,.03);
}




/* „TIP →“ */
.tip-note__label{
  font: inherit;
  font-weight: 700;
  margin-right: 6px;
  color: #612f99;
  white-space: nowrap;
}




/* Text */
.tip-note__text{
  font: inherit;
  font-weight: 500;
}




/* Odkaz uvnitř */
.tip-note__link{
  color: #6b34c5;
  text-decoration: underline;
  text-underline-offset: 2px;
}




.tip-note__link:hover{
  color: #6b34c5;
}




/* Přístupný focus */
.tip-note__link:focus-visible{
  outline: 3px solid rgba(35,156,235,.25);
  outline-offset: 2px;
  border-radius: 2px;
}




/* === Jednoduchá tabulka === */




.table-wrap{
  width: 100%;
  border: 1px solid #d7cbe8;
  border-radius: 6px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 1px 0 rgba(97,48,154,.05);
}




.ui-table{
  width: 100%;
  min-width: 620px;
  border-collapse: separate;
  border-spacing: 0;
  table-layout: fixed;
  font: inherit;
  background: #ffffff;
  color: #4d287b;
}




.ui-table th,
.ui-table td{
  vertical-align: middle;
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
}




/* Hlavička */
.ui-table thead th{
  text-align: left;
  padding: 12px 18px;
  font: inherit;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: #4d287b;
  background: #f5f1fa;
  border-bottom: 1px solid #cdbce3;
}




/* Buňky */
.ui-table tbody td{
  padding: 16px 18px;
  font: inherit;
  font-size: 14px;
  line-height: 1.45;
  border-bottom: 1px solid #eee8f5;
  color: #4d287b;
  background: #ffffff;
}




/* poslední řádek bez linky */
.ui-table tbody tr:last-child td{
  border-bottom: 0;
}




/* první sloupec */
.ui-table tbody td:first-child{
  font-weight: 600;
  color: #4d287b;
  background: #faf8fc;
  white-space: normal;
}




/* hover */
.ui-table tbody tr:hover td{
  background: #f8f5fb;
}




.ui-table tbody tr:hover td:first-child{
  background: #faf8fc;
}




/* === Mobil: 2–3 sloupce zůstávají tabulkou === */
@media (max-width: 767px){
  .table-mobile-table{
    overflow: hidden;
  }




  .table-mobile-table .ui-table{
    width: 100%;
    min-width: 0;
    table-layout: fixed;
  }




  .table-mobile-table .ui-table thead th,
  .table-mobile-table .ui-table tbody td{
    padding: 12px 10px;
    font-size: 14px;
    line-height: 1.45;
  }




  .table-mobile-table .ui-table tbody td:first-child{
    white-space: normal;
    word-break: normal;
    overflow-wrap: normal;
    hyphens: none;
  }
}




/* === Mobil: 4+ sloupců jako kartičky === */
@media (max-width: 767px){
  .table-mobile-cards{
    border: none;
    background: transparent;
    box-shadow: none;
    overflow: visible;
  }




  .table-mobile-cards .ui-table,
  .table-mobile-cards .ui-table thead,
  .table-mobile-cards .ui-table tbody,
  .table-mobile-cards .ui-table tr,
  .table-mobile-cards .ui-table th,
  .table-mobile-cards .ui-table td{
    display: block;
    width: 100%;
  }




  .table-mobile-cards .ui-table{
    min-width: 0;
    table-layout: auto;
    background: transparent;
  }




  .table-mobile-cards .ui-table thead{
    display: none;
  }




  .table-mobile-cards .ui-table tbody tr{
    margin-bottom: 14px;
    border: 1px solid #d7cbe8;
    border-radius: 8px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 1px 0 rgba(97,48,154,.05);
  }




  .table-mobile-cards .ui-table tbody td{
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 10px;
    align-items: start;
    padding: 12px 14px;
    font-size: 15px;
    line-height: 1.5;
    border-bottom: 1px solid #eee8f5;
    background: #ffffff;
    white-space: normal;
    word-break: normal;
    overflow-wrap: normal;
    hyphens: none;
  }




  .table-mobile-cards .ui-table tbody tr td:first-child{
    background: #f5f1fa;
    font-weight: 700;
  }




  .table-mobile-cards .ui-table tbody tr td:last-child{
    border-bottom: none;
  }




  .table-mobile-cards .ui-table tbody td::before{
    content: attr(data-label);
    font-weight: 700;
    color: #4d287b;
    line-height: 1.4;
  }
}




/* === Srovnávací tabulka (2 produkty) === */




.pk-compare{
  --pk-text: var(--color-text,#2f2f35);
  --pk-muted: #5f5f68;
  --pk-border: #e7e7eb;
  --pk-bg: var(--color-bg,#ffffff);




  --pk-plus: var(--color-success,#15803d);
  --pk-minus: var(--color-danger,#b91c1c);




  --pk-radius: var(--radius-card,6px);
  --pk-shadow: var(--shadow-card,0 1px 2px rgba(15,23,42,.04));




  --pk-sign-size: 12px;
  --pk-sign-thickness: 3px;




  margin: 22px 0;
  color: var(--pk-text);
  font-family: inherit;
  font-size: 14px;
}




.pk-compare__table{
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  border: 1px solid var(--pk-border);
  border-radius: var(--pk-radius);
  background: var(--pk-bg);
  box-shadow: var(--pk-shadow);
  overflow: hidden;
}




.pk-compare__col{
  padding: 18px 18px 16px;
  background: #ffffff;
}




.pk-compare__col + .pk-compare__col{
  border-left: 1px solid var(--pk-border);
}




.pk-compare__head{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  margin: 0 0 14px;
}




.pk-compare__title{
  margin: 0;
  padding-left: 0;
  color: #2f2f35;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -.01em;
}




.pk-compare__tag{
  order: -1;
  align-self: flex-start;
  margin: 0;
  padding: 4px 8px;
  border-radius: 999px;
  border: 1px solid #e4e4e8;
  background: #f8f8f8;
  color: #4a4a52;
  font-weight: 700;
  font-size: 12px;
  line-height: 1.15;
  letter-spacing: -.01em;
  white-space: normal;
  max-width: 100%;
}




.pk-compare__list{
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}




.pk-compare__head + .pk-compare__list{
  margin-top: 0;
}




.pk-compare__col .pk-compare__list + .pk-compare__list{
  margin-top: 14px;
}




.pk-compare__item{
  display: grid;
  grid-template-columns: 28px 1fr;
  column-gap: 10px;
  align-items: start;
}




.pk-compare__text{
  color: #5f5f68;
  font-size: 14px;
  line-height: 1.5;
  background: transparent;
}




.pk-compare__icon{
  width: 28px;
  height: 28px;
  border-radius: 999px;
  position: relative;
  margin-top: -1px;
}




.pk-compare__item--plus .pk-compare__icon{
  color: var(--pk-plus);
  background: rgba(21,128,61,.08);
  border: 1.5px solid rgba(21,128,61,.25);
}




.pk-compare__item--minus .pk-compare__icon{
  color: var(--pk-minus);
  background: rgba(185,28,28,.08);
  border: 1.5px solid rgba(185,28,28,.25);
}




.pk-compare__icon::before,
.pk-compare__icon::after{
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  background: currentColor;
  border-radius: 999px;
}




.pk-compare__icon::before{
  width: var(--pk-sign-size);
  height: var(--pk-sign-thickness);
}




.pk-compare__item--plus .pk-compare__icon::after{
  width: var(--pk-sign-thickness);
  height: var(--pk-sign-size);
}




.pk-compare__item--minus .pk-compare__icon::after{
  display: none;
}




@media (max-width:860px){
  .pk-compare__table{
    grid-template-columns: 1fr;
  }




  .pk-compare__col + .pk-compare__col{
    border-left: 0;
    border-top: 1px solid var(--pk-border);
  }




  .pk-compare__head{
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin: 0 0 10px;
  }




  .pk-compare__tag{
    order: -1;
    margin: 0;
    align-self: flex-start;
  }




  .pk-compare__title{
    padding-left: 0;
  }
}






/* === Video karta === */




.sp-videoCard{
  font-family: inherit;
  color: #111;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 8px;
  box-shadow:
    0 1px 2px rgba(0,0,0,0.06),
    0 10px 22px rgba(0,0,0,0.06);
  overflow: hidden;
  max-width: 100%;
  margin: 16px 40px;
}




/* Poměr 16:9 */
.sp-videoCard__media{
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}




/* Iframe vyplní celý media box */
.sp-videoCard__iframe{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}




/* Textová část */
.sp-videoCard__body{
  padding: 18px 28px 20px;
}




/* Nadpis */
.sp-videoCard__heading{
  margin: 0;
  font-family: "Grenze", serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.25;
}




/* Odkaz v nadpisu */
.sp-videoCard__heading a{
  font-family: "Grenze", serif;
  color: #111;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 2px;
  white-space: normal;
  overflow: visible;
  text-overflow: clip;
  overflow-wrap: anywhere;
  word-break: normal;
}




.sp-videoCard__heading a:hover{
  text-decoration-thickness: 3px;
}




/* Text – defaultně jen 4 řádky */
.sp-videoCard__text{
  margin: 10px 0 0;
  font-family: inherit;
  font-size: 15px;
  line-height: 1.55;
  color: rgba(17,17,17,0.78);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
}




/* Desktop */
.sp-videoCard:hover .sp-videoCard__text{
  display: block;
  -webkit-line-clamp: unset;
  overflow: visible;
}




/* Mobil / tablet / klávesnice */
.sp-videoCard:focus .sp-videoCard__text,
.sp-videoCard:focus-within .sp-videoCard__text,
.sp-videoCard:active .sp-videoCard__text{
  display: block;
  -webkit-line-clamp: unset;
  overflow: visible;
}




/* Viditelný focus */
.sp-videoCard:focus{
  outline: 2px solid rgba(0,0,0,0.2);
  outline-offset: 2px;
}




/* Mobil */
@media (max-width: 860px){
  .sp-videoCard{
    margin-left: 0;
    margin-right: 0;
    border-radius: 8px;
  }




  .sp-videoCard__body{
    padding: 14px 16px 16px;
  }
}




/* === Jednoduché odrážky === */




.pk-bullets--dot{
  --pk:#6b34c5;
  --lh:1.65;
  --dot:8px;
  --dot-offset:0px;
  --dot-gap:10px;




  list-style:none;
  margin:0;
  padding:0 0 0 20px; /* odsazení seznamu o 20 px */
}




.pk-bullets--dot li{
  position:relative;
  margin:0 0 12px; /* menší mezera nad, větší pod */
  padding-left:calc(var(--dot) + var(--dot-gap));
  font-size:1rem;
  line-height:var(--lh);
}




.pk-bullets--dot li:last-child{
  margin-bottom:0;
}




.pk-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(--pk);
}




/* menší mezera mezi textem nad seznamem a seznamem */
p + .pk-bullets--dot{
  margin-top:1px;
}






/* === Info bloky 3 vedle sebe | jemnější pozadí === */




.pk-tiles{
  --t:#17181d;
  --m:#4f5868;
  --b:#6b33c4;
  --bg:#f3f0f6;
  --a:#6b33c4;
  --ibg:#ffffff;
  --ibl:#ccb8ef;




  display:grid;
  gap:10px;
  margin:18px 0;
  font-family:inherit;
}




@media (min-width:900px){
  .pk-tiles{
    grid-template-columns:repeat(3,1fr);
    gap:14px;
  }
}




.pk-tile{
  border:1px solid var(--b);
  border-radius:12px;
  background:var(--bg);
  padding:18px 18px 16px;
  box-shadow:none;
  color:var(--t);
  margin:0 !important;
  font-family:inherit;
}




.pk-tile__icon{
  width:42px;
  height:42px;
  display:grid;
  place-items:center;
  border-radius:9px;
  background:var(--ibg);
  color:var(--a);
  font-size:20px;
  line-height:1;
  margin:0 0 14px;
  border:1px solid var(--ibl);
  box-shadow:0 2px 8px rgba(17,24,39,0.05);
  font-family:inherit;
}




.pk-tiles .pk-tile > .pk-tile__title{
  margin:0 0 12px !important;
  font-family:"Grenze", serif !important;
  color:var(--t) !important;
}




.pk-tile__text{
  margin:0;
  color:var(--m);
  line-height:1.5;
  font-size:1.02rem;
  font-family:inherit;
}
/* === USP bloky s emotikony === */




.pk-usp{
  --pk:#6b34c5;
  --bd:#ddd6eb;
  --txt:#2a2533;
  --muted:#625c70;
  --bg:#f7f5fb;




  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:16px;
  margin:16px 0;
}




.pk-usp__item{
  background:var(--bg);
  border:1px solid var(--bd);
  border-radius:5px;
  padding:16px 14px;
  text-align:center;
  box-shadow:none;
  box-sizing:border-box;
  flex:0 0 calc((100% - 48px) / 4);
  max-width:calc((100% - 48px) / 4);
}




/* Když jsou přesně 3 bloky, udělej z nich 3 sloupce na střed */
.pk-usp > .pk-usp__item:first-child:nth-last-child(3),
.pk-usp > .pk-usp__item:first-child:nth-last-child(3) ~ .pk-usp__item{
  flex:0 0 calc((100% - 32px) / 3);
  max-width:calc((100% - 32px) / 3);
}




/* Ikona bez kolečka */
.pk-usp__icon{
  width:auto;
  height:auto;
  margin:0 auto 10px;
  border:0;
  border-radius:0;
  color:var(--pk);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:20px;
  line-height:1;
}




.pk-usp__title{
  font-family:inherit;
  font-weight:800;
  color:var(--txt);
  font-size:16px;
  line-height:1.25;
}




.pk-usp__text{
  margin-top:6px;
  color:var(--muted);
  font-size:15px;
  line-height:1.45;
}




@media (max-width: 900px){
  .pk-usp__item,
  .pk-usp > .pk-usp__item:first-child:nth-last-child(3),
  .pk-usp > .pk-usp__item:first-child:nth-last-child(3) ~ .pk-usp__item{
    flex:0 0 calc((100% - 16px) / 2);
    max-width:calc((100% - 16px) / 2);
  }
}




@media (max-width: 520px){
  .pk-usp__item,
  .pk-usp > .pk-usp__item:first-child:nth-last-child(3),
  .pk-usp > .pk-usp__item:first-child:nth-last-child(3) ~ .pk-usp__item{
    flex:0 0 100%;
    max-width:100%;
  }
}






/* === Průvodce krok za krokem === */




.step-guide,
.step-guide *{
  box-sizing:border-box;
}








/* Reset jen toho, co Shoptet často rozhází v blogu */
.step-guide ol,
.step-guide ul{
  margin:0 !important;
  padding:0 !important;
  list-style:none !important;
}








.step-guide li{
  margin:0 !important;
  list-style:none !important;
  /* POZOR: žádné padding:0 na li – to by zabilo "ochrannou zónu" u .step */
}








.step-guide p{
  margin:0 !important;
}








/* Karta */
.step-guide__card{
  background:#ffffff;
  border:1px solid #e3dcef;
  border-radius:6px;
  overflow:hidden;
  box-shadow:0 1px 0 rgba(80, 80, 80, .05);
  width:100%;
}








/* Hlavička */
.step-guide__head{
  padding:14px 18px !important;
  background:#f5f1fa;
  border-bottom:1px solid #ddd3ec;
}








/* Hlavní nadpis */
.step-guide__title{
  margin:0 !important;
  padding:0 !important;
  font-weight:700 !important;
  color:#4f4f57;
}








.step-guide__subtitle{
  margin:6px 0 0 !important;
  font-size:14px;
  line-height:1.45;
  color:#7a7a84;
}








/* Seznam kroků */
.step-guide__list{
  margin:0 !important;
  padding:0 !important;
  list-style:none !important;
}








/* Krok */
.step-guide__list > .step{
  display:grid;
  grid-template-columns:34px 1fr;
  gap:12px;
  padding:16px 18px !important;
  border-bottom:1px solid #efe8f7;
  position:relative;
  background:#ffffff;
}








.step-guide__list > .step:last-child{
  border-bottom:0;
}








/* Číslo + linka */
.step__index{
  position:relative;
  display:flex;
  align-items:flex-start;
  justify-content:center;
}








.step__badge{
  width:28px;
  height:28px;
  border-radius:999px;
  background:#f5f1fa;
  border:1px solid #ddd3ec;
  color:#5f6068;
  font-weight:700;
  font-size:13px;
  display:flex;
  align-items:center;
  justify-content:center;
}








/* Svislá spojnice */
.step__index:after{
  content:"";
  position:absolute;
  top:34px;
  left:50%;
  transform:translateX(-50%);
  width:2px;
  height:calc(100% - 34px);
  background:#efe8f7;
}








.step-guide__list > .step:last-child .step__index:after{
  display:none;
}








/* Obsah kroku */
.step__topline{
  display:flex;
  align-items:baseline;
  gap:10px;
  flex-wrap:wrap;
}








.step__heading{
  margin:0 !important;
  font-size:14px;
  line-height:1.35;
  font-weight:700;
  color:#4f4f57;
}








.step__tag{
  display:inline-flex;
  align-items:center;
  padding:4px 10px;
  border-radius:999px;
  background:#f5f1fa;
  color:#666670;
  font-size:12px;
  line-height:1.2;
  border:1px solid #ddd3ec;
  white-space:nowrap;
  text-decoration:none;
}








.step__text{
  margin:6px 0 0 !important;
  font-size:14px;
  line-height:1.5;
  color:#666670;
}








/* Hover */
.step-guide__list > .step:hover{
  background:#faf7fd;
}








/* Volitelně “hotovo” */
.step-guide__list > .step.is-done .step__badge{
  background:#ede6f7;
  border-color:#d2c4e6;
  color:#565660;
}








/* Mobil */
@media (max-width:640px){
  .step-guide__head{
    padding:12px 14px !important;
  }
  .step-guide__list > .step{
    padding:14px 14px !important;
    grid-template-columns:32px 1fr;
    gap:10px;
  }
}