/* =========================================================
   ERGESHOP – základní globální CSS
   ========================================================= */

/* =========================================================
   Kategorie – zrušení centrování a technická sazba
   ========================================================= */

.category-top,
.category-top .category-title,
.category-top .category-perex,
.category-top .category-perex * {
    text-align: left !important;
}

.category-perex.empty-content,
.category-perex.empty-content *,
.empty-content-category,
.empty-content-category * {
    text-align: left !important;
}

.category-perex.empty-content .btn,
.empty-content-category .btn {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    margin: 10px 0 0 0 !important;
}

.category__secondDescription,
.category__secondDescription * {
    text-align: left !important;
}

.category-top {
    margin-bottom: 26px;
}

.category-top .category-title {
    margin: 0 0 18px 0 !important;
    font-size: 42px;
    line-height: 1.15;
    font-weight: 800;
    color: #111;
}

.category-top .category-perex,
.category__secondDescription,
.category-perex.empty-content {
    max-width: 900px;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.category-top .category-perex p,
.category__secondDescription p,
.category-perex.empty-content p {
    margin: 0 0 14px 0;
    line-height: 1.75;
    color: #222;
}

.category-top .category-perex ul,
.category__secondDescription ul,
.category-perex.empty-content ul {
    margin: 0 0 16px 22px;
    padding: 0;
}

.category-top .category-perex li,
.category__secondDescription li,
.category-perex.empty-content li {
    margin: 6px 0;
    line-height: 1.7;
}

.category__secondDescription h2,
.category__secondDescription h3,
.category-perex.empty-content h2,
.category-perex.empty-content h3 {
    text-align: left !important;
    margin: 28px 0 12px 0;
    line-height: 1.25;
    font-weight: 800;
    color: #111;
}

.category-perex.empty-content h2 {
    font-size: 38px;
}

.category__secondDescription h3 {
    font-size: 30px;
}

main#content.narrow,
.category-content-wrapper,
.category-content-wrapper * {
    text-align: inherit;
}

main#content.narrow .category-top,
main#content.narrow .category-content-wrapper,
main#content.narrow .category__secondDescription,
main#content.narrow .empty-content-category {
    text-align: left !important;
}

/* =========================================================
   ERGESHOP FAQ HUB – finální technická verze bez ikonek
   ========================================================= */

.faq-intro{
  margin: 0 0 24px 0;
}

.faq-intro h1{
  margin: 0 0 10px 0;
  font-size: 30px;
  line-height: 1.18;
  font-weight: 800;
  color: #111;
  letter-spacing: -0.3px;
}

.faq-intro h2{
  margin: 0 0 16px 0;
  font-size: 20px;
  line-height: 1.3;
  font-weight: 700;
  color: #111;
}

.faq-intro p{
  margin: 0 0 11px 0;
  font-size: 16px;
  line-height: 1.72;
  color: #222;
  max-width: 980px;
}

.ergeshop-faq-hub{
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 24px 0 8px 0;
}

.ergeshop-faq-hub-card{
  width: calc(50% - 7px);
  min-height: 88px;
  display: flex;
  align-items: center;
  padding: 16px 18px;
  border: 1px solid #dfe6ec;
  border-radius: 10px;
  background: #fff;
  text-decoration: none;
  box-sizing: border-box;
  transition: border-color .18s ease, background .18s ease, box-shadow .18s ease, transform .18s ease;
}

.ergeshop-faq-hub-card:hover{
  border-color: #00AEEF;
  background: #fcfeff;
  box-shadow: 0 6px 18px rgba(0,0,0,0.04);
  transform: translateY(-1px);
  text-decoration: none;
}

.ergeshop-faq-hub-thumb{
  display: none !important;
}

.ergeshop-faq-hub-text{
  display: flex;
  flex-direction: column;
  min-width: 0;
  width: 100%;
}

.ergeshop-faq-hub-title{
  display: block;
  margin: 0 0 4px 0;
  font-size: 16px;
  line-height: 1.25;
  font-weight: 800;
  color: #111;
  text-transform: uppercase;
  letter-spacing: -0.15px;
  word-break: break-word;
}

.ergeshop-faq-hub-desc{
  display: block;
  font-size: 14px;
  line-height: 1.55;
  color: #444;
  word-break: break-word;
}

.page-faq .ergeshop-faq-hub-card,
#content .ergeshop-faq-hub-card,
.content .ergeshop-faq-hub-card{
  float: none !important;
}

/* =========================================================
   ERGESHOP FAQ accordion – globální styly pro všechny FAQ stránky
   ========================================================= */

.ergeshop-faq{
  margin-top: 12px;
  border-top: 1px solid #e6e6e6;
}

.ergeshop-faq-item{
  border-bottom: 1px solid #e6e6e6;
}

.ergeshop-faq-question{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: #fff;
  border: 0;
  padding: 18px 0;
  text-align: left;
  font-size: 19px;
  line-height: 1.4;
  font-weight: 700;
  color: #111;
  cursor: pointer;
}

.ergeshop-faq-question::after{
  content: "+";
  flex: 0 0 auto;
  font-size: 28px;
  line-height: 1;
  font-weight: 400;
  color: #00AEEF;
  transition: transform 0.2s ease;
}

.ergeshop-faq-item.is-open .ergeshop-faq-question::after{
  content: "−";
}

.ergeshop-faq-answer{
  display: none;
  padding: 0 0 20px 0;
}

.ergeshop-faq-item.is-open .ergeshop-faq-answer{
  display: block;
}

.ergeshop-faq-answer p{
  margin: 0 0 12px 0;
  line-height: 1.8;
  color: #222;
}

.ergeshop-helpful-categories{
  margin-top: 36px;
}

.ergeshop-helpful-categories h2{
  margin: 0 0 18px 0;
  font-size: 28px;
  line-height: 1.2;
  font-weight: 800;
  color: #111;
}

.ergeshop-helpful-categories p{
  margin: 0 0 14px 0;
  line-height: 1.75;
  color: #222;
}

.ergeshop-helpful-links{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin:18px 0 0 0;
}

.ergeshop-helpful-links a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:56px;
  padding:0 18px;
  border:1px solid #dbe7ef;
  border-radius:12px;
  background:#f8fbfe;
  color:#2f7faa;
  text-decoration:none;
  font-size:15px;
  font-weight:600;
  line-height:1.4;
  transition:border-color .18s ease, background .18s ease, color .18s ease, box-shadow .18s ease;
}

.ergeshop-helpful-links a:hover{
  border-color:#b9dff0;
  background:#eef7fc;
  color:#1f6f99;
  text-decoration:none;
  box-shadow:0 4px 14px rgba(0,0,0,0.04);
}

/* =========================================================
   Trust bar
   ========================================================= */

.trust-bar{
  display:flex;
  justify-content:space-between;
  gap:20px;
  padding:30px 0;
  border-top:1px solid #eee;
  border-bottom:1px solid #eee;
  margin-top:40px;
}

.trust-item{
  flex:1;
  text-align:center;
  font-size:14px;
}

.trust-item strong{
  display:block;
  font-size:15px;
  margin-bottom:4px;
}

/* =========================================================
   Sidebar – blok znacek Marken
   ========================================================= */

/* oddeleni bloku znacek od kategorii – linka nahore */
.sidebar-inner .banner {
  margin-top: 6px;
  padding-top: 10px;
  border-top: 1px solid #e8e8e8;
}

/* linka dole pod blokem znacek */
.sidebar-inner .banner {
  padding-bottom: 10px;
  border-bottom: 1px solid #e8e8e8;
  margin-bottom: 6px;
}

/* zvetseni log */
.sidebar-inner .banner img {
  height: 32px !important;
  max-width: 80px !important;
}

/* hover efekt pro znacky */
.sidebar-inner .banner a[href*="ersatzteile"]:hover,
.sidebar-inner .banner a[href*="reparatur"]:hover {
  background: #f4fbff;
}

.sidebar-inner .banner a[href*="ersatzteile"]:hover span,
.sidebar-inner .banner a[href*="reparatur"]:hover span {
  color: #00AEEF;
}

/* =========================================================
   Responzivní úpravy
   ========================================================= */

@media (max-width: 1100px){
  .ergeshop-faq-hub-card{
    width: 100%;
  }
}

@media (max-width: 768px){

  .faq-intro h1{
    font-size: 26px;
    line-height: 1.2;
  }

  .faq-intro h2{
    font-size: 18px;
    margin: 0 0 14px 0;
  }

  .faq-intro p{
    font-size: 15px;
    line-height: 1.68;
  }

  .ergeshop-faq-hub{
    gap: 12px;
    margin-top: 20px;
  }

  .ergeshop-faq-hub-card{
    width: 100%;
    min-height: auto;
    padding: 14px 15px;
    border-radius: 9px;
  }

  .ergeshop-faq-hub-title{
    font-size: 15px;
  }

  .ergeshop-faq-hub-desc{
    font-size: 13px;
    line-height: 1.5;
  }

  .ergeshop-faq-question{
    font-size: 17px;
    padding: 16px 0;
  }

  .ergeshop-helpful-categories h2{
    font-size: 24px;
  }

  .ergeshop-helpful-links{
    gap:10px;
  }

  .ergeshop-helpful-links a{
    width:100%;
    justify-content:flex-start;
    min-height:50px;
    padding:0 14px;
    border-radius:10px;
    font-size:14px;
  }

  .trust-bar{
    flex-direction:column;
    gap:15px;
  }

}