﻿/* === KATEGORIE === */


/* === CTA tlačítko modré === */




.cta-center{
  width: 100%;
  display: flex;
  justify-content: center; /* střed vodorovně */
}




/* === CTA tlačítko === */
.cta-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;




  background-color: #239ceb; /* základní modrá */
  color: #ffffff;




  /* Zrušení podtržení odkazu */
  text-decoration: none;




  border-radius: 4px; /* jemný radius jako na obrázku */
  padding: 18px 34px;




  /* Font se přebírá z webu */
  font: inherit;
  font-weight: 600;
  line-height: 1;




  border: 0;
  cursor: pointer;




  transition: background-color .15s ease, transform .05s ease;
}




/* I kdyby web globálně podtrhával odkazy, tady to vypneme i na hover/focus */
.cta-btn:hover,
.cta-btn:focus,
.cta-btn:focus-visible,
.cta-btn:active,
.cta-btn:visited{
  text-decoration: none;
}




/* Velmi jemné ztmavení po najetí myši */
.cta-btn:hover{
  background-color: #1f93df;
}




/* Jemné „kliknutí“ */
.cta-btn:active{
  transform: translateY(1px);
}




/* Přístupný focus pro klávesnici */
.cta-btn:focus-visible{
  outline: 3px solid rgba(35, 156, 235, .35);
  outline-offset: 3px;
}
















/* === Mini buttony s TOP tématy === */




 .top-topics-wrap{
    display:flex;
    flex-wrap:wrap;
    align-items:center;
    gap:6px;              /* „nalepené“ jako na screenu */
    margin: 0 0 16px;
    font-family:"Nunito Sans", sans-serif;
  }




  .top-topics-wrap a.top-topic{
    padding:6px 14px;
    background:#ecf6fd;
    color:#0f405d !important;
    text-decoration:none !important;
    border-radius:999px;
    font-size:14px;
    line-height:1.2;
    font-weight:400;      /* NENÍ TUČNÉ */
    display:inline-flex;
    align-items:center;
    white-space:nowrap;
    transition: background-color .2s ease;
  }




  .top-topics-wrap a.top-topic:hover{
    background:#d6ebf9;
    text-decoration:none !important;
  }




  .top-topics-wrap a.top-topic:focus-visible{
    outline: 3px solid rgba(15,64,93,.25);
    outline-offset: 2px;
  }




/* === USP bloky === */
.usp-grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr)); /* 4 vedle sebe */
  gap: 16px;
  width: 100%;
}




.usp-card{
  background: #ecf6fd;
  border-radius: 4px;
  padding: 18px 16px;




  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;




  text-align: center;




  /* Font se dědí z webu */
  font: inherit;
}




.usp-icon{
  width: 44px;
  height: 44px;
  object-fit: contain;
  display: block;
  margin: 0 0 10px 0;
}




.usp-text{
  font: inherit;         /* dědí font z webu */
  font-weight: 600;
  font-size: 15px;
  line-height: 1.15;
  color: #24242E;
}




/* Tablet / menší obrazovky (volitelné zjemnění) */
@media (max-width: 1024px){
  .usp-grid{
    gap: 12px;
  }
}




/* Mobil: 2 vedle sebe */
@media (max-width: 640px){
  .usp-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr)); /* 2 vedle sebe */
    gap: 10px;
  }




  .usp-card{
    padding: 16px 12px;
  }




  .usp-text{
    font-size: 14px;
  }
}












/* === Tip box === */








.tip-note{
  background: #f8fbfe;
  border: 1px solid #239ceb;   /* výrazné, ale sedí na brand */
  border-radius: 4px;          /* pokud chcete přesně 4px, změňte na 4px */
  padding: 14px 16px;
  margin: 16px 0;




  font: inherit;               /* font se dědí z webu */
  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: #0f2a3a;
  white-space: nowrap;
}




/* Text */
.tip-note__text{
  font: inherit;
  font-weight: 500;
  line-height: 1.5;
}




/* Odkaz uvnitř */
.tip-note__link{
  color: #239ceb;
  text-decoration: underline; /* u tipů je fajn, aby bylo jasné, že je to odkaz */
  text-underline-offset: 2px;
}




.tip-note__link:hover{
  color: #1f93df;             /* jemně tmavší */
}




/* Přístupný focus */
.tip-note__link:focus-visible{
  outline: 3px solid rgba(35,156,235,.25);
  outline-offset: 2px;
  border-radius: 2px;
}




/* === FAQ často kladené otázky/dotazy === */




.faq{
  width: 100%;
}




/* Jedna položka */
.faq-item{
  margin: 0 0 12px 0;
  border: 1px solid #b9cfe3;
  border-radius: 4px;
  background: #ffffff;
  overflow: hidden;
}




/* Klikací hlavička (summary) */
.faq-item > summary{
  list-style: none;                 /* schovat default marker */
  cursor: pointer;




  display: flex;
  align-items: center;
  justify-content: flex-start;      /* obsah vlevo */
  gap: 12px;




  padding: 14px 16px;




  font: inherit;                    /* font z webu */
  color: #0f405d;




  background: #f3f8fd;              /* jemný tint (ladí s tabulkou) */
  border-bottom: 1px solid rgba(185,207,227,.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;                   /* text zabere zbytek řádku */
  min-width: 0;
}




/* Ikona vlevo (kroužek se šedým okrajem + chevron) */
.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 #d5dde6;        /* neutrální šedý okraj jako na obrázku */
  color: #2d3b45;                   /* chevron tmavší (ne brand modrá) */




  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: #0f405d;
  line-height: 1.55;
  background: #ffffff;
}




/* Odkazy uvnitř odpovědi */
.faq-a a{
  color: #239ceb;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.faq-a a:hover{
  color: #1f93df;
}




/* Stav otevřeno */
.faq-item[open] > summary{
  background: #f5f9fd;              /* o chlup světlejší při otevření */
  border-bottom-color: rgba(185,207,227,.65);
}




/* Otevřeno: šipka se otočí nahoru */
.faq-item[open] .faq-icon{
  transform: rotate(180deg);
  background: #fbfdff;
  border-color: #cfe0f0;            /* jemně do šedomodra při otevření */
}




/* Hover */
.faq-item > summary:hover{
  background: #eef6fe;
}




/* Focus pro klávesnici */
.faq-item > summary:focus-visible{
  outline: 3px solid rgba(35,156,235,.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 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 #c8dbec;
  border-radius:6px;
  overflow:hidden;
  box-shadow:0 1px 0 rgba(15,64,93,.05);
  width:100%;
}




/* Hlavička */
.step-guide__head{
  padding:14px 18px !important;
  background:#f3f8fd;
  border-bottom:1px solid #b9cfe3;
}




/* Hlavní nadpis: bere font/velikost/barvu ze šablony,
   ale na blogu ho vynutíme jako tučný */
.step-guide__title{
  margin:0 !important;
  padding:0 !important;
  font-weight:700 !important; /* fix: blog někdy dává h2 normal */
}




.step-guide__subtitle{
  margin:6px 0 0 !important;
  font-size:14px;
  line-height:1.45;
  color:#5f758b;
}




/* 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; /* ochranná zóna */
  border-bottom:1px solid #eef3f8;
  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:#ecf6fd;
  border:1px solid #d9ecfb;
  color:#0f405d;
  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:#eef3f8;
}




.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; /* aby to vypadalo jako na obrázku */
  color:#0f405d;
}




.step__tag{
  display:inline-flex;
  align-items:center;
  padding:4px 10px;
  border-radius:999px;
  background:#ecf6fd;
  color:#0f405d;
  font-size:12px;
  line-height:1.2;
  border:1px solid #d9ecfb;
  white-space:nowrap;
  text-decoration:none;
}




.step__text{
  margin:6px 0 0 !important;
  font-size:14px;
  line-height:1.5;
  color:#0f405d;
}




/* Hover */
.step-guide__list > .step:hover{
  background:#f9fcff;
}




/* Volitelně “hotovo” */
.step-guide__list > .step.is-done .step__badge{
  background:#f3f8fd;
  border-color:#b9cfe3;
}




/* 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;
  }
}




/* === Jednoduchá tabulka === */












.table-wrap{
  width: 100%;
  border: 1px solid #c8dbec;
  border-radius: 6px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 1px 0 rgba(15,64,93,.05);
}




.ui-table{
  width: 100%;
  min-width: 620px;
  border-collapse: separate;
  border-spacing: 0;
  table-layout: fixed;
  font: inherit;
  background: #ffffff;
  color: #0f405d;
}




.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: #0f405d;
  background: #f3f8fd;
  border-bottom: 1px solid #b9cfe3;
}




/* Buňky */
.ui-table tbody td{
  padding: 16px 18px;
  font: inherit;
  font-size: 14px;
  line-height: 1.45;
  border-bottom: 1px solid #eef3f8;
  color: #0f405d;
  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: #0f405d;
  background: #fbfdff;
}




/* první sloupec jen na desktopu bez zalamování */
@media (min-width: 768px){
  .ui-table tbody td:first-child{
    white-space: nowrap;
  }
}




/* hover */
.ui-table tbody tr:hover td{
  background: #f9fcff;
}




.ui-table tbody tr:hover td:first-child{
  background: #fbfdff;
}




/* === 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 #c8dbec;
    border-radius: 8px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 1px 0 rgba(15,64,93,.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 #eef3f8;
    background: #ffffff;
    white-space: normal;
    word-break: normal;
    overflow-wrap: normal;
    hyphens: none;
  }




  .table-mobile-cards .ui-table tbody tr td:first-child{
    background: #f3f8fd;
    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: #0f405d;
    line-height: 1.4;
  }
}




/* === Jednoduché odrážky === */




.pk-bullets--dot{
  --pk:#239ceb;      /* barva tečky */
  --lh:1.65;         /* line-height */
  --dot:8px;         /* velikost tečky */
  --dot-offset:0px;  /* jemné doladění */
  list-style:none;
  margin:0;
  padding:0 0 0 20px; /* odsazení celého seznamu o 20 px */
}




.pk-bullets--dot li{
  position:relative;
  margin:1px 0 12px;   /* menší mezera nad, větší pod */
  padding-left:18px;   /* místo pro tečku */
  line-height:var(--lh);
}




.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);
}




/* === Číselný seznam === */




ol.pk-steps{
  --pk:#239ceb;
  --num-size:26px;
  --num-gap:12px;




  counter-reset:i;
  list-style:none;
  padding:0;
  margin:16px 0;
}




ol.pk-steps > li{
  counter-increment:i;
  position:relative;
  margin:10px 0;
  line-height:1.6;
  padding-left:calc(var(--num-size) + var(--num-gap));
  min-height:var(--num-size);
}




ol.pk-steps > li::before{
  content:counter(i);
  position:absolute;
  left:0;
  top:0;




  width:var(--num-size);
  height:var(--num-size);
  border-radius:50%;
  background:var(--pk);
  color:#fff;




  display:grid;
  place-items:center;




  padding:0;
  box-sizing:border-box;




  font-weight:700;
  font-size:13px;
  line-height:1;
  text-align:center;




  font-variant-numeric:tabular-nums lining-nums;
  font-feature-settings:"tnum" 1, "lnum" 1;
}




/* === Srovnávací tabulka (2 produkty) === */




.pk-compare{
  --pk-text:var(--color-text,#0f172a);
  --pk-muted:var(--color-muted,#475569);
  --pk-border:var(--color-border,#e5e7eb);
  --pk-bg:var(--color-bg,#fff);




  --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,.06));




  /* + / − parametry */
  --pk-sign-size:12px;
  --pk-sign-thickness:3px;




  margin:22px 0;
  color:var(--pk-text);
  font-family:inherit;
}




.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;
}




.pk-compare__col+.pk-compare__col{
  border-left:1px solid var(--pk-border);
}




.pk-compare__head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:6px;
  margin:0 0 14px;
}




.pk-compare__title{
  margin:0;
  padding-left:0;
  color:#0f405d;
  font-weight:700;
  font-size:18px;
  line-height:1.2;
  letter-spacing:-.01em;
}




.pk-compare__tag{
  align-self:flex-start;
  margin:2px 0 0 12px;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(15,23,42,.10);
  background:#ecf6fd;
  color:var(--pk-text);
  font-weight:700;
  font-size:14px;
  line-height:1;
  letter-spacing:-.01em;
  white-space:nowrap;
}




.pk-compare__list{
  list-style:none;
  margin:0;
  padding:0;
  display:grid;
  gap:10px;
}
.pk-compare__col .pk-compare__list+.pk-compare__list{
  margin-top:14px;
}




.pk-compare__item{
  display:flex;
  align-items:flex-start;
  gap:12px;
}




.pk-compare__text{
  color:var(--pk-muted);
  font-size:16px;
  line-height:1.5;
  background:transparent;
}




/* === ikonka kolečka === */
.pk-compare__icon{
  width:28px;
  height:28px;
  border-radius:999px;
  flex:0 0 auto;
  display:grid;
  place-items:center;
  position:relative;
}




/* tinty jako dřív */
.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);
}




/* === + / − kreslené čarami === */
.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;
    gap:6px;
    margin:0 0 10px;
  }




  .pk-compare__tag{
    order:-1;
    align-self:flex-start;
    margin:0;
  }




  .pk-compare__title{
    padding-left:0;
  }
}






/* === Trust box s USP === */




.trust-box-wrap {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  width: 100%;
  padding: 1.5rem 1.75rem;
  background: #ecf6fd;
  border-radius: 10px;
  box-sizing: border-box;
}


.trust-box-text {
  font-size: 14px;
  line-height: 1.75;
  color: #0f405d;
  margin: 0 0 1.5rem;
}


.trust-box-text strong {
  font-weight: 700;
}


.trust-box-usps {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border-top: 1px solid #c2dff0;
  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 #c2dff0;
}


.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: #0f405d;
  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;
  }
}