/* Fluidní velikost loga + stabilní layout */
a[data-testid="linkWebsiteLogo"] {
  display: inline-flex;
  align-items: center;
  max-height: 100%;
}
a[data-testid="linkWebsiteLogo"] img {
  display: block;
  height: auto !important;
  width: auto;
  max-height: clamp(2rem, 6vw, 4rem) !important;
  object-fit: contain;
}
.header-logo,
.site-header .header-inner,
#header .header-inner {
  align-items: center !important;
}
.header-logo {
  overflow: hidden;
}

/* Decentní, responzivní mezera mezi header-bottom a content-wrapper */
.header-bottom + .content-wrapper,
.header-bottom + .container .content-wrapper,
#header + .content-wrapper {
  margin-top: clamp(8px, 1.2vw, 16px);
}

/* Header nad obsahem + fix propadávání na mobilu */
@media (max-width: 767px) {
  .header-top,
  #header,
  .site-header {
    position: relative;
    z-index: 1000;
    overflow: visible !important;
  }
  .content-wrapper,
  .aside-indented,
  .container.content {
    position: relative;
    z-index: 1;
  }
  .site-header.is-sticky,
  .site-header.sticky,
  #header.sticky,
  #header.is-fixed {
    position: sticky;
    top: 0;
    z-index: 1000;
  }

  /* Zmenšit horní odsazení pouze na mobilech */
  .header-top,
  #header,
  .site-header {
    margin-top: 0 !important;
    padding-top: 4px !important;
  }
  .site-header .header-inner,
  #header .header-inner {
    padding-top: 4px !important;
  }

  /* Jemně menší mezera pod header-bottom na mobilech */
  .header-bottom + .content-wrapper,
  .header-bottom + .container .content-wrapper,
  #header + .content-wrapper {
    margin-top: clamp(6px, 2.5vw, 12px);
  }
}

.top-banner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 420px; /* uprav výšku banneru */
  overflow: hidden;
}

.top-banner .half {
  position: relative;
}

.top-banner .half img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* vyplní, zachová kompozici */
  object-position: center; /* případně 'left center' / 'right center' */
}

/* Responsivní úprava – na mobil stacked */
@media (max-width: 768px) {
  .top-banner {
    grid-template-columns: 1fr;
    height: 560px; /* vyšší pro dvě fotky nad sebou */
  }
}

.buddy-hp-star-white {
    color: white !important; /* nastaví hvězdy na bílou */
    margin: 0 0.5rem; /* volitelné, aby hvězdy měly odstup */
    font-size: 1.2rem; /* případně uprav velikost hvězd */
}



/* Odkaz uvnitř hl-red */
.hl-red a {
    color: #e60000 !important; /* červená i pro odkaz */
    text-decoration: underline; /* podtržení */
}




 

  .sb-footer-wrap {
    width: 100vw;
    margin: 0;
    padding: 0;
  }

  .sb-footer {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(16px, 5vw, 48px);
    padding: clamp(16px, 3vw, 48px);
    align-items: start;
    line-height: 1.6;
    box-sizing: border-box;
  }

  .sb-footer__col {
    text-align: left;
  }

  .sb-footer__title {
    font-weight: bold;
    font-size: clamp(14px, 1.3vw, 16px);
    margin-bottom: 0.6rem;
    text-transform: uppercase;
    color: #000;
  }

  .sb-footer__list {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .sb-footer__list li {
    margin: 0.5rem 0;
    font-size: clamp(15px, 1.1vw, 16px);
    font-weight: normal;
    color: #333;
  }

  .sb-footer a {
    color: inherit;
    text-decoration: none;
  }
  .sb-footer a:hover {
    text-decoration: underline;
  }

  /* Ikony plateb – zvětšeno cca o 25 % */
  .sb-footer__payments {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-top: 12px;
    flex-wrap: wrap;
  }

  .pay-icon {
    height: 32px; /* základ (původně ~26px) */
    width: auto;
    display: block;
    background: #fff;
    border-radius: 6px;
    padding: 4px 8px;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.06) inset;
  }



  @media (min-width: 900px) {
    .pay-icon {
      height: 38px;
    }
    .pay-icon--gpay {
      height: 48px;
    }
  }

  @media (max-width: 900px) {
    .sb-footer {
      grid-template-columns: 1fr 1fr;
    }
  }

  @media (max-width: 600px) {
    .sb-footer {
      grid-template-columns: 1fr;
    }
  }




