/* ===============================
   BANNER BLOK – univerzální styl
   =============================== */
.ban-top {
  position: relative;
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  aspect-ratio: 16 / 7;
  min-height: 220px;
  max-height: 480px;
  border-radius: 0;
  overflow: hidden;
}

/* celý banner jako odkaz */
.ban-top__link {
  display: block;
  width: 100%;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

/* obsahový box */
.ban-top__inner {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-end; /* zarovnání na stejnou spodní hranu */
  gap: 10px;
  padding: clamp(6px, 1.6vw, 14px); /* menší vnitřní odsazení, blíž ke krajům */
}

/* nadpis */
.ban-top__title {
  margin: 0;
  color: #fff;
  font-weight: 600;
  line-height: 1.05;
  font-size: clamp(17px, 2.2vw, 24px);
  text-shadow: none; /* odstraněný stín */
}

/* CTA tlačítko */
.ban-top__cta {
  display: inline-flex; /* zarovnání textu doprostřed */
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 4px 12px; /* menší padding, text víc do krajů */
  background: #007FCE; /* primární modrá */
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(11px, 1vw, 13px);
  line-height: 1;
  letter-spacing: 0.03em;
  border-radius: 0;
  transform-origin: center;
  transition: transform 0.2s ease, background-color 0.2s ease;
  box-shadow: none; /* bez stínu */
}

/* hover efekt */
.ban-top__cta:hover,
.ban-top__cta:focus {
  transform: scale(1.04);
  background: #0094F0; /* světlejší modrá při hoveru */
  outline: none;
  box-shadow: none;
}

/* mobilní doladění */
@media (max-width: 480px) {
  .ban-top {
    aspect-ratio: 16 / 9;
    min-height: 180px;
  }

  .ban-top__inner {
    padding: 6px 10px;
    gap: 8px;
  }

  .ban-top__title {
    font-size: 18px;
  }

  .ban-top__cta {
    min-height: 32px;
    padding: 4px 10px;
  }
}
@media (max-width: 768px) {
  .ban-top__inner {
padding: 10px 12px;
gap: 10px;
  }

  .ban-top__title {
    font-size: 18px;
  }

  .ban-top__cta {
    min-height: 32px;
    padding: 6px 16px;
  }
}
/* Zvýšení velikosti obrázků v benefitech */
.benefitBanner__picture {
  display: flex;
  justify-content: center;
  align-items: center;
}
.benefitBanner__img {
  width: 140% !important;
  height: auto !important;
  transform: scale(1);
  max-width: none;
}
@media (max-width: 768px) {
  .benefitBanner__img {
    width: 120% !important;
  }
}
.banners-content.body-banners > div, .banners-content.body-banners > div {
width: 100% !important;
    }
.col-sm-12 {
padding-left: 0px;
padding-right: 0px;
}
/* ==============================
   CAT SLIDER – dlaždice kategorií
   ============================== */
.cat-slider {
  position: relative;
  background: transparent;
  max-width: 100vw;
  margin: 0 auto;
  overflow: hidden;
}

.cat-slider__head {
 margin: 20px 0 0px;
  font-size: clamp(22px, 3.2vw, 32px);
  font-weight: 700;
  text-align: center;
}

.cat-slider__track {
  display: flex;
  gap: 20px;
  padding: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  scrollbar-width: none;
  box-sizing: border-box;
}
.cat-slider__track::-webkit-scrollbar { display: none; }

.cat-slider__tile {
  flex: 0 0 auto;
  width: 380px;
  height: 520px;
  border-radius: 0;           /* hranaté */
  overflow: hidden;
  position: relative;
  text-decoration: none;
  color: #fff;
  transform: translateZ(0);
  transition: transform .28s ease;
  will-change: transform;
}
.cat-slider__tile:hover { transform: scale(1.03); }

.cat-slider__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0;
}

.cat-slider__content {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 18px;
  pointer-events: none;
}

.cat-slider__title {
  margin: 0 0 8px;
  font-weight: 800;
  line-height: 1.1;
  font-size: 22px;
  color: #fff;
  text-shadow: none;
}

.cat-slider__text {
  margin: 0 0 48px;
  font-size: 14px;
  line-height: 1.45;
  color: #fff;
  font-weight: 400;
  opacity: 1;
}

/* CTA vpravo dole */
.cat-slider__cta {
  position: absolute;
  right: 16px;
  bottom: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 6px 14px;
  background: #007FCE;
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  line-height: 1;
  letter-spacing: .03em;
  border-radius: 0;
  box-shadow: none;
  transform: translateZ(0);
  transition: transform .2s ease, background-color .2s ease;
  pointer-events: none;
}


/* šipky */
.cat-slider__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  color: #e0e0e0 !important;
  background: rgba(0,0,0,0.35) !important;
    transition: background 0.3s ease, color 0.3s ease;
  width: 42px;
  height: 42px;
  cursor: pointer;
  z-index: 5;
  padding: 0;
}
.cat-slider__arrow:hover {
  background: rgba(0,0,0,0.55) !important;
  color: #ffffff !important;
}
.cat-slider__arrow svg { width: 100%; height: 100%; display: block; }
.cat-slider__prev { left: 8px; }
.cat-slider__next { right: 8px; }

/* Responsivita */
@media (max-width: 1024px) {
  .cat-slider__tile { width: 320px; height: 460px; }
}

@media (max-width: 768px) {
  .cat-slider__track { padding: 12px 16px 20px; gap: 14px; }
  .cat-slider__tile  { width: 82vw; height: 64vh; max-height: 520px; }
  .cat-slider__title { font-size: 20px; }
  .cat-slider__text  { font-size: 13px; margin-bottom: 44px; }
  .cat-slider__cta   { right: 14px; bottom: 14px; min-height: 32px; padding: 6px 12px; }
}
/* === Zruš bílé pozadí a stín rodičů okolo slideru (Shoptet boxy) === */
.banners-content.body-banners,
.banners-content.body-banners .container,
.banners-content.body-banners .banner-wrapper,
.banners-content.body-banners .banner-wrapper::before,
.banners-content.body-banners .banner-wrapper::after,
.homepage-box,
.homepage-box::before,
.homepage-box::after {
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
}

/* === Slider: žádné pozadí/stín na dráze ani na sekci === */
.cat-slider,
.cat-slider::before,
.cat-slider::after,
.cat-slider__track {
  background: transparent !important;
  box-shadow: none !important;
}

/* === Dlaždice a všechny stavy: bez stínů/efektů === */
.cat-slider__tile,
.cat-slider__tile:hover,
.cat-slider__tile:focus,
.cat-slider__tile:active {
  box-shadow: none !important;
  filter: none !important;
  outline: none !important;
  background: transparent !important;
}

/* Obrázek uvnitř: nikdy žádný drop-shadow/filtr */
.cat-slider__img {
  box-shadow: none !important;
  filter: none !important;
  background: transparent !important;
}

/* (volitelné) ponecháme jen jemné zvětšení; menší scale = menší „halo“ u zaoblených kontejnerů */
.cat-slider__tile:hover { transform: scale(1.02); }

/* Šipky bez pozadí/stínu (pro jistotu) */
.cat-slider__arrow {
  background: transparent !important;
  box-shadow: none !important;
}