<!-- UI / CSS – GREEN SMILE -->
<style>
/* ===================================================================
   0) NAVRHOVANÉ PROMĚNNÉ (můžeš využít později)
   =================================================================== */
/* :root {
  --gs-radius: 12px;
  --gs-gap: 12px;
  --gs-pink: #E7A6C3;
  --gs-shadow: 0 4px 12px rgba(0,0,0,.08);
  --gs-shadow-hover: 0 6px 18px rgba(0,0,0,.18);
} */





/* ===================================================================
   1) HEADER / MENU
   =================================================================== */



/* 🖥️ Desktop: hlavní menu v řádku + mezera 4px */
@media (min-width: 768px) {
  /* Udělej z 1. úrovně flex řádek a použij gap */
  #navigation .navigation-in > ul.menu-level-1 {
    display: flex !important;
    flex-wrap: nowrap !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 4px !important;         /* ✅ vodorovná mezera */
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
  }

  /* Zruš „dělicí“ rámečky, co dělají falešné mezery */
  #navigation .navigation-in > ul.menu-level-1 > li {
    border: 0 !important;
    border-left: 0 !important;
    border-top: 0 !important;
    border-bottom: 0 !important;
  }

  /* Pro jistotu zneškodni i případné pseudo-prvky */
  #navigation .navigation-in > ul.menu-level-1 > li::before,
  #navigation .navigation-in > ul.menu-level-1 > li::after {
    content: none !important;
  }

  /* Jemné vnitřní odsazení odkazů (volitelné) */
  #navigation .navigation-in > ul.menu-level-1 > li > a {
    padding: 8px 10px !important;
  }
}

/* 🧯 Fallback: kdyby nějaký skript/šablona stále bránila `gap`,
   vynutíme mezeru marginem od druhé položky dál.  */
@media (min-width: 768px) {
  #navigation .navigation-in > ul.menu-level-1 > li + li {
    margin-left: 4px !important;
  }
}

/* 🛠️ Oprava barvy položky "Blog" jen v header navigaci */
#header .navigation-in > ul > li.menu-item-822 > a,
#header .navigation-in > ul > li.menu-item-822 > a b,
#header .navigation-in a[href="/blog/"],
#header .navigation-in a[href="/blog/"] b,
#header .navigation-in a[href="/blog/"]:visited {
  color: #1a1a1a !important;       /* cílová barva textu */
}

/* ✅ Styl a HOVER jen pro karty článků */
.blog-wrapper .news-item > a {
  display: block;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: #fff !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.blog-wrapper .news-item > a:hover {
  box-shadow: 0 6px 18px rgba(0,0,0,0.18);
  transform: translateY(-2px);
}

/* 🧹 Odpoj efekt u menu položky “Blog” (bez vlivu na karty) */
#navigation .menu-level-1 > li > a[href^="/blog/"],
#navigation .menu-level-1 > li > a[href^="/blog/"]:hover {
  box-shadow: none !important;
  transform: none !important;
  transition: none !important;
}

/* 💥 Přepsání stylu jen pro odkazy /blog/ mimo .blog-wrapper */
body a[href^="/blog/"]:not(.blog-wrapper a),
body #navigation a[href^="/blog/"],
body #header a[href^="/blog/"] {
  color: #1a1a1a !important;     /* černý text */
  box-shadow: none !important;   /* bez stínu */
}

/* 💗 Hover efekt jen pro menu, ne pro karty */
body a[href^="/blog/"]:not(.blog-wrapper a):hover,
body #navigation a[href^="/blog/"]:hover,
body #header a[href^="/blog/"]:hover {
  color: #EEB109 !important; /* ✅ oranžová podle stylu webu */
  box-shadow: none !important;
  transform: none !important;
}

.menu-helper > ul > li a:hover {
  color: #EEB109 !important; /* ✅ oranžová podle stylu webu */
}




/* ===================================================================
   2) SUBMENU (úroveň 2) – rozvržení, hover, typografie
   =================================================================== */

/* UL: fluidní řazení – položky se mohou lámat na další řádek */
.navigation-in > ul > li.ext > ul.menu-level-2 {
  flex-wrap: wrap !important;
  white-space: nowrap;
}



/* LI: pevná šířka, obsah pod sebou, centrování */
.navigation-in > ul > li.ext > ul.menu-level-2 > li {
  display: inline-flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: flex-start !important;
  text-align: center !important;
  flex: 0 0 160px !important;   /* pevná šířka */
  width: 160px !important;
  box-sizing: border-box;
  white-space: normal;          /* text se může lámat */
  margin-right: 8px;
  transition: box-shadow 0.2s ease;
  border-radius: 8px;           /* volitelné zaoblení položek */
  overflow: hidden;             /* kvůli zoomu obrázku v rámci li */
}
.navigation-in > ul > li.ext > ul.menu-level-2 > li:last-child {
  margin-right: 0;
}

/* 🔹 Při hoveru nebo focusu se změní i barva textu */
.navigation-in > ul > li.ext > ul.menu-level-2 > li:hover > div > a > span,
.navigation-in > ul > li.ext > ul.menu-level-2 > li:focus-within > div > a > span {
  color: #81A7C3 !important;
  transition: color 0.3s ease;
}

/* Obrázek – zmenšený, centrovaný a s plynulým zoomem na hover */
.navigation-in > ul > li.ext > ul.menu-level-2 > li > a.menu-image img {
  display: block !important;
  width: 65% !important;
  height: auto !important;
  margin: 0 auto 16px !important;
  transition: transform 0.3s ease;
  transform: scale(1);
}
.navigation-in > ul > li.ext > ul.menu-level-2 > li:hover a.menu-image img {
  transform: scale(1.05);
}

/* Text pod obrázkem */
.navigation-in > ul > li.ext > ul.menu-level-2 > li > div {
  width: 100% !important;
  margin: 0 auto !important;
  padding: 0 !important;
  display: block !important;
  text-align: center !important;
  box-sizing: border-box;
}
.navigation-in > ul > li.ext > ul.menu-level-2 > li > div > a > span {
  display: block !important;
  font-size: 14px !important;
  line-height: 1.3 !important;
  font-weight: 500 !important;
  text-align: center !important;
}


/* ===================================================================
   3) HLAVNÍ CAROUSEL (HP)
   =================================================================== */

/* Výška + radius + ořez */
.wide-carousel,
.wide-carousel .carousel,
.wide-carousel .carousel-inner,
.wide-carousel .item,
.wide-carousel .item a {
  height: 50svh !important;   /* 50 % výšky viewportu */
  min-height: 300px;
  
  border-radius: 12px;
  overflow: hidden;
}




.carousel-inner .item>a>img, .carousel-inner .item>img {

height: 100% !important;
}

/* Obrázek – cover + zoom na hover (jen obraz) */
.wide-carousel img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.4s ease;
}
.wide-carousel:hover img { transform: scale(1.05); }

/* Textový overlay v karuselu (základ) */
.carousel .extended-banner-texts {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;

  min-height: 20%;
  padding: 20px 20px !important;

 background: rgba(129, 167, 195, 0.25) !important; /* jemný modrý závoj – čitelné, ne moc silné */
-webkit-backdrop-filter: blur(16px);
backdrop-filter: blur(16px);

  color: #fff;
  text-align: left;
  border-radius: 8px;
  box-sizing: border-box;

  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;

  transition: background 0.3s ease;
  z-index: 2;
}

/* 📱 Mobil a tablet – menší odsazení overlaye */
@media (max-width: 991px) {
  .carousel .extended-banner-texts {
    left: 8px !important;
    right: 8px !important;
    bottom: 8px !important;
    padding: 8px 6px 6px 10px !important; /* top | right | bottom | left */
  }
}

/* Hover na CELÝ banner – jen přebarvení overlaye */
.wide-carousel:hover .extended-banner-texts {
  background: rgba(129, 167, 195, 0.85) !important; /* #81A7C3 */
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

/* Titulek a text v overlayi */
.carousel .extended-banner-texts .extended-banner-title {
  color: #fff;
  font-size: clamp(24px, 3vw, 48px);
  font-weight: 600;
  line-height: 1.1;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.carousel .extended-banner-texts .extended-banner-text {
  color: #fff;
  font-size: clamp(14px, 1vw, 18px);
  line-height: 1.3;
  margin: 0;
}

/* Blur podpora – Safari apod. (progressive enhancement) */
@supports ((backdrop-filter: blur(8px)) or (-webkit-backdrop-filter: blur(16px))) {
  .carousel .extended-banner-texts {
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    background: rgba(255, 255, 255, 0.05);
  }
}


/* ===================================================================
   4) BANNERY POD CAROUSELEM (GRID 6 → 2)
   =================================================================== */

/* Svislá mezera mezi carousel a gridem */
.row.banners-row.banners-empty .wide-carousel + .next-to-carousel-banners {
  margin-top: 10px;
}

/* Desktop: dynamický počet sloupců, min 180px, max rovnoměrně */
.next-to-carousel-banners[data-testid="gridTopBanners"] {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)) !important;
  gap: 12px !important;
  justify-content: center !important; /* vycentrování, když je méně než celé řádky */
}

/* Tablet + mobil: 2 sloupce */
@media (max-width: 1200px) {
  .next-to-carousel-banners[data-testid="gridTopBanners"] {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

/* Buňka gridu vyplněná */
.next-to-carousel-banners[data-testid="gridTopBanners"] .banner-wrapper { width: 100%; }

/* Karta banneru */
.banner-wrapper[data-testid="bannerTop"] {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,.08);
  transition: box-shadow 0.4s ease;
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
}

/* Obrázek v kartě (+ počáteční posun/zoom) */
.banner-wrapper[data-testid="bannerTop"] img {
  display: block;
  width: 110%;
  height: 110%;
  object-fit: cover;
  transform: translateY(-5%) scale(1);
  transition: transform 0.4s ease;
}

/* Hover karty – stín + zoom obrázku */
.banner-wrapper[data-testid="bannerTop"]:hover { box-shadow: 0 6px 18px rgba(0,0,0,.18); }
.banner-wrapper[data-testid="bannerTop"]:hover img { transform: translateY(-5%) scale(1.05); }

/* 🔸 Overlay v kartě – desktop (výchozí) */
.next-to-carousel-banners .extended-banner-texts {
  position: absolute !important;
  left: 12px !important;
  right: 12px !important;
  bottom: 12px !important;
  background: rgba(231, 166, 195, 0.25) !important; /* jemný růžový závoj */
  -webkit-backdrop-filter: blur(16px) !important;
  backdrop-filter: blur(16px) !important;
  width: auto !important;
  height: auto !important;
  min-height: unset !important;
  max-height: none !important;
  padding: 10px 8px 8px 10px !important;
  border-radius: 8px;
  box-sizing: border-box;
  display: flex !important;
  align-items: flex-end !important;     /* text dole */
  justify-content: flex-start !important;/* horizontálně zleva (ne center) */
  text-align: left !important;
  z-index: 2;
  transition: background .3s ease, color .3s ease, transform .3s ease;
}

/* 📱 Mobil + tablet – stejné principy, menší odsazení po stranách */
@media (max-width: 991px) {
  .next-to-carousel-banners .extended-banner-texts {
    left: 8px !important;
    right: 8px !important;
    bottom: 8px !important;

    /* 👉 držíme logiku: top+left 10, right+bottom 8 */
    padding: 10px 8px 8px 10px !important;
  }
}

/* Hover overlaye v kartě */
.next-to-carousel-banners .banner-wrapper:hover .extended-banner-texts {
  background: rgb(231 166 195 / 85%) !important; /* #E7A6C3 */
  color: #1a1a1a !important;
}

/* Titulek v overlayi */
.next-to-carousel-banners .extended-banner-texts .extended-banner-title {
  
  line-height: 1.3 !important;
  font-weight: 600 !important;
  color: #fff !important;
  word-break: break-word;
  text-transform: uppercase;
  margin: 0 !important;
}

/* Výchozí – větší font (platí pro 1–4 bannery) */
.next-to-carousel-banners[data-testid="gridTopBanners"] .extended-banner-title {
  font-size: clamp(16px, 1.6vw, 28px) !important;
}

/* Pokud existuje 5. banner → zmenšíme font (pro 5+ bannerů) */
.next-to-carousel-banners[data-testid="gridTopBanners"]:has(.banner-wrapper:nth-child(5)) 
.extended-banner-title {
  font-size: clamp(12px, 1vw, 20px) !important;
}

/* Responsivní ladění titulku */
@media (max-width: 1200px) {
 .next-to-carousel-banners[data-testid="gridTopBanners"]:has(.banner-wrapper:nth-child(5)) .extended-banner-title {
    font-size: clamp(16px, 2vw, 28px) !important; /* ✅ větší font při 2 sloupcích */
    line-height: 1.25 !important;
  }
}
@media (max-width: 576px) {
  .next-to-carousel-banners .extended-banner-texts .extended-banner-title {
    font-size: clamp(13px, 2vw, 18px) !important;
    font-weight: 700;
    line-height: 1.25 !important;
  }
}

/* Zrušení implicitní mezery pod spanem */
.next-to-carousel-banners .extended-banner-texts > span { margin-bottom: 0 !important; }


/* ===========================================================
   🎯 PRODUKTOVÉ KARTY – zarovnání textu na střed + menší mezery
   =========================================================== */
/* 📦 Schovat filtry */
 #category-header, #filters-wrapper {
  display: none !important;
}


/* Základní vzhled karty */
.product .p {
  background: rgba(255, 255, 255, 0.02);  /* lehce světlý podklad */
  border-radius: 12px;                    /* kulaté rohy */
  overflow: hidden;                       /* ořez obrázku při zoomu */
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05); /* jemný stín */
   padding: 32px 16px 16px 16px;                         /* 🔹 přidán vnitřní padding */
  box-sizing: border-box;                 /* korektní výpočet šířky */
}

/* Hover efekt */
.product:hover .p {
  background: rgba(255, 255, 255, 0.15);     /* světlejší odstín bílé */
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15); /* větší stín */
  transform: translateY(-4px);               /* lehké nadzvednutí */
}

/* Obrázek v kartě – mírný zoom při hoveru */
.product .p .image {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.product .p .image img {
  width: 100%;
  height: auto;
  transition: transform 0.4s ease;
  border-radius: 8px;              /* sjednocení s kartou */
  transform-origin: center center; /* zajistí rovnoměrné zmenšení ze středu */
}

/* 💻 Desktop větší než 1200px – zmenšení obrázku v kartě produktu */
@media (min-width: 1400px) {
  .product .p .image img {
    transform: scale(0.8);
    transition: transform 0.4s ease;
  }

  .product:hover .p .image img {
    transform: scale(0.84);
  }
}

/* 🧩 Od 992px do 1199px – obrázek v plné velikosti (např. MacBook 13–14") */
@media (min-width: 992px) and (max-width: 1399px) {
  .product .p .image img {
    transform: scale(1) !important;
    transition: transform 0.4s ease;
  }

  .product:hover .p .image img {
    transform: scale(1.04);
  }
}

/* 📱 Mobilní zařízení – beze změny */
@media (max-width: 991px) {
  .product .p .image img {
    transform: scale(1) !important;
    transition: none !important;
  }
}

/* Název produktu – trochu prostoru nad textem */
.product .p .name {
  margin-top: 8px;
  display: block;
  text-align: left;
}

/* Tlačítko Do košíku – trochu dýchacího prostoru */
.product .p .p-tools {
  margin-top: 12px;
}

/* 🔹 Text na střed */
.product .p-in-in,
.product .p-in,
.product .prices,
.product .availability,
.product .ratings-wrapper,
.product .p-tools {
  text-align: center !important;
}

/* 🔹 Název produktu */
.products-block>div .p .p-in .p-in-in .name span {
  display: block;
  text-align: center !important;
  margin-top: 8px !important;
  margin-bottom: 2px !important;

}

.name[data-testid="productCardName"] span,
.name span[data-testid="productCardName"],
.product .p .name span {
  font-size: clamp(16px, 2vw, 20px) !important;  /* zmenší text */
  line-height: 1.3 !important;
}

.products-block>div .p .p-in .p-in-in .name {
height: auto;
}

.products-block>div .p .p-in {
padding-top: 4px;
}

/* 🔹 Ceny – menší rozestupy */
.product .prices {
  margin-top: 4px !important;
  margin-bottom: 0px !important;
  line-height: 1.2 !important;
}

.product .price-additional {
  margin-top: 4px !important;
  font-size: 13px !important;
  opacity: 0.8 !important;
}

.products-block>div .p .p-in .p-bottom>div .prices .price-final {
  margin-top: 4px !important;
 
}

.products-block>div .p .p-in .p-bottom>div .prices .price-final strong {
    font-size: 20px !important;
  font-weight: 700 !important;
}

.products-block>div .p .p-in .p-bottom>div .prices .price-standard {
  margin-top: 4px !important;
  font-size: 14px !important;
  opacity: 0.5 !important;
  text-decoration: line-through;
}

/* 🔹 Sleva (–%) */
.products-block>div .p .p-in .p-bottom>div .prices .price-save  {
  font-size: 14px;
  font-weight: 700 !important;
  color: #E7A6C3; /* ladí s růžovým akcentem */
}

/* 🔹 Dostupnost */
.product .availability {
  margin-top: 0px !important;
  font-size: 13px !important;
  opacity: 0.9;
}

/* 🔹 Hodnocení hvězdičkami */
.product .ratings-wrapper {
  margin-top: 2px;
  margin-bottom: 2px;
}

/* 🔹 Tlačítko „Do košíku“ */
.products-block>div .p .p-in .p-bottom>div .p-tools {
padding: 8px 0 0 !important;
}

.product .p .p-tools {
margin-top: 4px !important;
}

/* 🔹 Tlačítko koupit */
/* ===========================================================
🛒 Zarovnání tlačítka „Do košíku“ ve spodní části karty
=========================================================== */
.product .p {
  display: flex !important;
  flex-direction: column !important;
  height: 100% !important;           /* karta zabírá celou výšku */
  justify-content: space-between !important;
}

/* Vnitřní část s obsahem (název, cena...) */
.product .p .p-in {
  display: flex !important;
  flex-direction: column !important;
  flex: 1 1 auto !important;          /* roztáhne se na zbytek prostoru */
  justify-content: space-between !important;
}

/* Spodní sekce s tlačítkem */
.product .p .p-bottom {
  margin-top: auto !important;        /* 🔹 vytlačí ji ke spodku */
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-end !important;
}

/* Tlačítko samotné – centrování */
.product .p .p-tools {
  margin-top: auto !important;
  display: flex !important;
  justify-content: center !important;
  align-items: flex-end !important;
}


.btn, a.btn {
padding: 12px;
font-size: 16px;
text-transform: uppercase;
}

/* ===========================================================
   💊 Produktové štítky ("flags") – vzhled jako PILLS
   =========================================================== */

.flags-default {
  display: flex;
  flex-direction: column;   /* štítky pod sebou */
  align-items: flex-start;  /* zarovnání vlevo */
  gap: 4px;                 /* mezera mezi štítky */
  margin: 12px 0 0 28px;    /* 🔹 odsazení: nahoře 12px, vlevo 28px */
}

/* Jednotlivý štítek */
.flags-default .flag {
  display: inline-block;
  font-size: clamp(11px, 1vw, 13px) !important;
  font-weight: 600;
  line-height: 1.4;
  padding: 6px 12px 4px 12px; /* 🔹 padding */
  border-radius: 999px;       /* 💊 plně zaoblené rohy */
  text-transform: uppercase;
  letter-spacing: 0.4px;
  color: #fff;
  background: #81A7C3;
  transition: background 0.3s ease, transform 0.2s ease;
  margin: 0 !important;
  width: auto;                /* 🔹 šířka podle textu */
  min-width: unset !important;/* 🔹 zruší případné vynucené min-width */
  text-align: center;
  white-space: nowrap;        /* 🔹 text se nezalomí */
}

/* 💗 Sleva */
.flags-default .flag.flag-action {
  background: #E7A6C3;
}

/* 💛 Novinka */
.flags-default .flag.flag-new {
  background: #EEB109;
  color: #1a1a1a;
}

/* 💚 Tip */
.flags-default .flag.flag-tip {
  background: #3B873E;
}

/* 🩶 Doprodej */
.flags-default .flag.flag-last {
  background: #999;
}

/* 📱 Mobilní verze – menší padding */
@media (max-width: 768px) {
.flags-default {
    margin: 8px 0 0 20px !important; /* top | right | bottom | left */
  }

  .flags-default .flag {
    padding: 3px 10px 2px 10px !important; /* top | right | bottom | left */
  }
}

/* ===========================================================
🎯 Pagination jako 12px kuličky (přetluče původní styl)
=========================================================== */

.product-slider-pagination .pagination-button {
  width: 12px !important;
  height: 12px !important;
  border-radius: 50% !important;

  /* schovat čísla uvnitř */
  font-size: 0 !important;
  line-height: 0 !important;
  padding: 0 !important;

  /* vzhled kuličky */
  background-color: rgba(0, 0, 0, 0.25) !important;
  border: none !important;

  display: inline-block !important;
  cursor: pointer !important;
  transition: transform 0.2s ease, background-color 0.2s ease !important;
}

/* kontejner s tečkami */
.product-slider-pagination {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 8px !important;
  margin-top: 16px !important;
}

/* aktivní kulička */
.product-slider-pagination .pagination-button.active {
  background-color: #EEB109 !important;
  transform: scale(1.3) !important;
}

/* hover efekt */
.product-slider-pagination .pagination-button:hover {
  background-color: #F5C940 !important;
  transform: scale(1.2) !important;
}


/* ===========================================================
   🟡 MARQUEE – Běžící text v sekci footer-banners (CZ + SK)
   =========================================================== */

/* 🔹 Společný základ pro obě verze */
.full-width.homepage-banners-full-width.footer-banners .banners-content {
  position: relative;
  overflow: hidden;
  background: #E7A6C3;
 
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-top: 24px;
}

/* 🔹 Skrytí původního bannerového obrázku – funguje pro obě verze */
.full-width.homepage-banners-full-width.footer-banners .banner-wrapper img,
.full-width.homepage-banners-full-width.footer-banners .banner-wrapper a,
.full-width.homepage-banners-full-width.footer-banners .banner-wrapper picture {
  display: none !important;
}

/* ===========================================================
   🇨🇿 ČESKÁ VERZE
   =========================================================== */
html[lang="cs"] .full-width.homepage-banners-full-width.footer-banners .banners-content::before {
  content: "✨ Již 6000+ domácností má doma naše produkty ✨ Již 6000+ domácností má doma naše produkty ✨ Již 6000+ domácností má doma naše produkty ✨ Již 6000+ domácností má doma naše produkty ✨ Již 6000+ domácností má doma naše produkty";
  position: absolute;
  top: 50%;
  left: 0;
  white-space: nowrap;
  font-weight: 700;
  font-size: clamp(24px, 2vw, 40px);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transform: translateY(-50%) translateX(0);
  will-change: transform;
  animation: gs-marquee 30s linear infinite;
  padding-left: 24px;
}

/* ===========================================================
   🇸🇰 SLOVENSKÁ VERZE
   =========================================================== */
html[lang="sk"] .full-width.homepage-banners-full-width.footer-banners .banners-content::before {
  content: "✨ Už viac ako 6000 domácností má doma naše produkty ✨ Už viac ako 6000 domácností má doma naše produkty ✨ Už viac ako 6000 domácností má doma naše produkty ✨ Už viac ako 6000 domácností má doma naše produkty ✨ Už viac ako 6000 domácností má doma naše produkty";
  position: absolute;
  top: 50%;
  left: 0;
  white-space: nowrap;
  font-weight: 700;
  font-size: clamp(24px, 2vw, 40px);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transform: translateY(-50%) translateX(0);
  will-change: transform;
  animation: gs-marquee 30s linear infinite;
  padding-left: 24px;
}

/* 🔹 Hover = pozastavení animace */
.full-width.homepage-banners-full-width.footer-banners .banners-content:hover::before {
  animation-play-state: paused;
}

/* 🔹 Keyframes – horizontální pohyb textu */
@keyframes gs-marquee {
  0%   { transform: translateY(-50%) translateX(0%); }
  100% { transform: translateY(-50%) translateX(-50%); }
}

/* ===========================================================
   🟢 2️⃣ BENEFIT BANNERY – Přepínání layoutu (řádek → grid)
   =========================================================== */

/* 🟢 Desktop – výchozí řádkové zobrazení */
.benefitBanner.position--benefitHomepage {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 16px;
  flex-wrap: nowrap;
}

/* 🟡 Tablet a menší – přepnutí na mřížku 2x2 */
@media (max-width: 992px) {
  .benefitBanner.position--benefitHomepage {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    justify-items: center;
  }

  .benefitBanner__item {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }
}




/* ===========================================================
   💗 3️⃣ ČLÁNKY – Styl jako carousel bannery
   =========================================================== */






.content-wrapper.container {
width: 100% !important;

}



.blog-wrapper .news-item {

padding: 0 !important;

}


/* 🖥️ Desktop – 3 články vedle sebe */
@media (min-width: 1080px) {
  .homepage-blog-wrapper.row.blog-wrapper {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 16px !important; /* mezery mezi kartami */
    padding-left: 16px !important;
    
  }

  .homepage-blog-wrapper.row.blog-wrapper .news-item {
    flex: 0 0 calc(33.333% - 16px) !important;
    max-width: calc(33.333% - 16px) !important;
    box-sizing: border-box !important;
    margin: 0 !important;
  }

  /* 🟢 Skryj články po 3. – NADPIS se počítá, takže začni od pátého */
  .homepage-blog-wrapper.row.blog-wrapper > :nth-child(n+5) {
    display: none !important;
  }
}

/* 📱 Tablet a mobil – 1 článek pod sebou */
@media (max-width: 1079px) {
  .homepage-blog-wrapper.row.blog-wrapper {
    display: flex !important;
    flex-direction: column !important;
    gap: 16px !important;
    align-items: stretch !important;   /* 🧩 aby se roztáhly na 100 % */
    justify-content: flex-start !important;
    width: 100% !important;            /* 🟩 roztáhni celý wrapper */
    max-width: 100% !important;
    padding-left: 24px !important;
    padding-right: 8px !important;
  }

  .homepage-blog-wrapper.row.blog-wrapper .news-item {
    flex: 0 0 100% !important;
    width: 100% !important;            /* 💪 fix – přepíše zbylý flex z desktopu */
    max-width: 100% !important;
    margin: 0 !important;
    box-sizing: border-box !important;
  }

  /* 🟢 Stejné i na mobilu */
  .homepage-blog-wrapper.row.blog-wrapper > :nth-child(n+5) {
    display: none !important;
  }
}


/* 🖥️ Desktop – větší výška článků */
@media (min-width: 992px) {
  .homepage-blog-wrapper.row.blog-wrapper .news-item {
    height: 40svh !important; /* dvojnásobek aktuální výšky */
  }

  /* ať se obrázek roztáhne také */
  .homepage-blog-wrapper.row.blog-wrapper .news-item .image img {
    height: auto !important;
    object-fit: cover !important;
  }
}

/* 📱 Mobil – můžeš ponechat standardní výšku, ať nejsou moc vysoké */
@media (max-width: 991px) {
  .homepage-blog-wrapper.row.blog-wrapper .news-item {
    height: auto !important;
  }
}


/* 🔹 Hlavní obal článku */
.blog-wrapper a,
a[href^="/blog/"] {
  display: block;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: #fff !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}


@media (max-width: 768px) {
  .blog-wrapper a,
  .blog-wrapper .news-item {
    height: 40svh !important; /* 50 % výšky viewportu */
  }
}

/* 🔹 Obrázek článku */
.blog-wrapper .image {
  position: relative;
  overflow: hidden;
  height: 100%;
}

.blog-wrapper .image img {
  width: 100%;
  min-height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1);
  transition: transform 0.4s ease;
}

/* 🔹 Textový overlay (nadpis + popis + tlačítko) */
.blog-wrapper .text {
  position: absolute;
  bottom: 12px !important;
  left: 12px !important;
  right: 12px !important;
  padding: 16px !important;

background: rgba(238, 177, 9, 0.25) !important; /* jemný žlutý závoj – z barvy #EEB109 */
-webkit-backdrop-filter: blur(16px) !important;
backdrop-filter: blur(16px) !important;

  border-radius: 8px;
  box-sizing: border-box;

  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;

  color: #fff;
  text-align: left;
  z-index: 2;
  transition: background 0.3s ease, color 0.3s ease;
}

/* 🔹 Přizpůsobená výška boxu pro text */
.blog-wrapper .news-item .text {
  height: auto !important;
  top: auto !important;
  border-radius: 8px;
  overflow: hidden;
  padding: 16px;
  display: flex;
  flex-flow: column;
  justify-content: flex-start;
  transition: all 0.3s ease-out;
}

/* 🔹 Reset marginů uvnitř článku */
.read-article,
.one-column-body .homepage-blog-wrapper .news-item .description,
.one-column-body .homepage-blog-wrapper .news-item time {
  margin: 0;
}

/* 🔹 Titulek článku */
.blog-wrapper .text .title {
  font-size: clamp(16px, 2vw, 20px) !important;
  font-weight: 600;
  line-height: 1.25 !important;
color: #fff !important;
margin-top: 0px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

/* ✅ Popis článku – 2 řádky, korektní ořez */
.blog-wrapper .text .description {
  /* line-clamp logika */
  display: -webkit-box !important;
  -webkit-box-orient: vertical !important;
  -webkit-line-clamp: 2 !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  /* žádný max-height – ten dělal neplechu */
  max-height: none !important;

  /* vzhled textu */
  font-size: clamp(12px, 2vw, 14px) !important;
  line-height: 1.3 !important;
  color: #fff !important;
  letter-spacing: normal !important;
  margin: 0 !important;
  padding: 0 !important;
  text-align: left !important;
}

/* 🔹 Odkaz „Číst článek“ */
.blog-wrapper .text .read-article {
  font-weight: 500;
  font-size: 14px;
  margin: 8px 0 0;
}
/* 🔹 Schovat description na mobilu */

@media (max-width: 980px) {
  .blog-wrapper .text .description {
    display: none !important;
  }
}


.homepage-blog-wrapper.row.blog-wrapper {
  margin-bottom: 44px !important; /* přidá spodní mezeru */
}



/* ===========================================================
   💗 Hover efekty – sjednocené s bannery
   =========================================================== */

/* 🔹 Hover na celý článek */
.blog-wrapper a:hover {
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
}

/* 🔹 Růžový overlay při hoveru */
.blog-wrapper a:hover .text {
background: rgba(238, 177, 9, 0.85) !important; /* žlutý nádech – z barvy #EEB109 */
  color: #1a1a1a !important; /* tmavý text pro kontrast */
}

/* 🔹 Jemný zoom obrázku při hoveru */
.blog-wrapper a:hover .image img {
  transform: scale(1.05);
}

/* 🔹 Zrušení hoveru pouze na textovém overlayi */
.blog-wrapper .text:hover {
  background: transparent !important;
  color: inherit !important;
}

/* ===========================================================
   💬 3️⃣ POSLEDNÍ HODNOCENÍ – Nadpis nad oběma + 2 sloupce
   =========================================================== */

/* 🔹 Kontejner celé sekce */
.latest-contribution-wrapper {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 64px;
padding-top: 64px;
}

/* 🔹 Nadpis z prvního .latest-contribution vizuálně přesuneme nad oba */
.latest-contribution-wrapper > .latest-contribution:first-child > h2 {
  position: absolute;
  top: -20px;
  left: 0;
  right: 0;
  text-align: center;
  font-size: clamp(28px, 2vw, 36px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.4px;
 
  margin: 0;
}

.container-full-width.homepage-latest-contribution {
  margin-top: 44px !important;
  margin-bottom: 44px !important;
}

/* 🔹 Schovat placeholder h2 ve druhém bloku */
.latest-contribution-wrapper .latest-contribution:last-child h2.latest-contribution-placeholder {
  display: none !important;
}

/* 🔹 Základní styl bloků */
.latest-contribution.latest-contribution-rating {
  background: transparent;
  border-radius: 12px;
  padding: 0;
  box-shadow: none;
}

/* 🔹 Responsivita – od tabletu dolů pod sebe */
@media (max-width: 992px) {
  .latest-contribution-wrapper {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .latest-contribution-wrapper > .latest-contribution:first-child > h2 {
    top: -32px;
  }
}


/* ===========================================================
   🟩 Nejprodávanější produkty – max. 8 produktů (4×2)
   =========================================================== */

/* 🖥 Desktop – 4 produkty v řádku, max. 8 po rozkliknutí */
@media (min-width: 992px) {
  #productsTop.products-inline {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 16px !important;
    justify-content: center !important;
    align-items: stretch !important;
  }

  #productsTop .product {
    width: 100% !important;
    margin: 0 !important;
  }

  #productsTop .product.inactive {
    display: none !important;
  }

  #productsTop .product:nth-child(n+9) {
    display: none !important;
  }

  #productsTop .button-wrapper {
    grid-column: 1 / -1 !important;
    text-align: center !important;
    margin-top: 24px !important;
  }
}

/* 💻 Tablet – max. 3 produkty v řádku */
@media (max-width: 991px) and (min-width: 768px) {
  #productsTop.products-inline {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 12px !important;
  }

  #productsTop .product {
    width: 100% !important;
    margin: 0 !important;
  }

  #productsTop .button-wrapper {
    grid-column: 1 / -1 !important;
    text-align: center !important;
    margin-top: 20px !important;
  }
}

/* 🟩 Produktová karta */
#productsTop .product .p {
  width: 100% !important;
  padding: 12px !important;
}

/* 🟩 Horizontální rozložení (desktop default) */
.products-inline.products-top > .product .p {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 8px !important;
}

/* 🔹 Obrázek vlevo */
.products-inline.products-top > .product .p .image {
  width: 100px !important;
  height: 100px !important;
  flex-shrink: 0 !important;
  overflow: hidden;
  border: none !important;
  border-radius: 0 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent !important;
}

/* Obrázek uvnitř */
.products-inline.products-top > .product .p .image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  border: none !important;
  box-shadow: none !important;
  transition: none !important;
}

/* 🔸 Textová část */
.products-inline.products-top > .product .p .p-in {
  flex: 1 !important;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  text-align: left !important;
  align-items: flex-start !important;
  width: 100% !important;
}

.products-inline.products-top > .product .p .p-in .p-in-in {
  width: 100%;
  text-align: left !important;
}

/* Název produktu */
.products-inline.products-top > .product .p .p-in .name {
  font-weight: 600 !important;
  font-size: 16px !important;
  color: #1a1a1a !important;
  text-decoration: none !important;
  margin-bottom: 4px !important;
  display: block;
  text-align: left !important;
}

/* Dostupnost */
.products-inline.products-top > .product .p .availability {
  font-size: 14px !important;
  color: #009901 !important;
  text-align: left !important;
}

/* Cena vlevo (default) */
.products-inline.products-top > .product .p .p-bottom {
  width: 100% !important;
  text-align: left !important;
}

.products-inline.products-top > .product .p .price-final strong {
  font-size: 15px !important;
  color: #000 !important;
  font-weight: 700 !important;
  text-align: left !important;
}



/* 💻💡 14″ MacBook a menší – vertikální layout, vše na střed (do 1440 px) */
@media (max-width: 1440px) {
  .products-inline.products-top > .product .p {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 8px !important;
    width: 100% !important;
  }

  .products-inline.products-top > .product .p .image {
    width: 100px !important;
    height: 100px !important;
    aspect-ratio: 1 / 1 !important;
    justify-content: center !important;
  }

  .products-inline.products-top > .product .p .image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
  }

  /* 🔸 Texty, dostupnost, ceny, sleva, vše na střed */
  .products-inline.products-top > .product .p .p-in,
  .products-inline.products-top > .product .p .p-bottom,
  .products-inline.products-top > .product .p .ratings-wrapper,
  .products-inline.products-top > .product .p .availability,
  .products-inline.products-top > .product .p .price,
  .products-inline.products-top > .product .p .price-standard-wrapper,
  .products-inline.products-top > .product .p .price-save,
  .products-inline.products-top > .product .p .p-in .name,
  .products-inline.products-top>div .p .p-in .p-bottom>div,
  .products-inline.products-top > .product .p .price-final strong {
    width: 100% !important;
    align-items: center !important;
    text-align: center !important;
    justify-content: center !important;
  }
  .products-inline>div .p .p-in .p-in-in {

padding-right: 0px !important;
}
}

/* 🧯 Vypnutí hover efektu obrázku */
#productsTop .image img,
#productsTop .image:hover img {
  transform: none !important;
  transition: none !important;
}

/* ===========================================================
   💚 BLOG PODSTRÁNKA – rozložení článků + větší výška na desktopu
   =========================================================== */



   
/* 🖥️ Desktop – 3 články v řádku + větší výška */
@media (min-width: 1080px) {
  #newsWrapper.blog-wrapper {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    align-items: stretch !important;
    gap: 16px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  #newsWrapper.blog-wrapper .news-item {
    flex: 0 0 calc(33.333% - 16px) !important;
    max-width: calc(33.333% - 16px) !important;
    height: 480px !important; /* 🟢 větší výška článků */
    margin: 0 !important;
    box-sizing: border-box !important;
  }

  /* 🖼 Obrázek – roztáhnout a oříznout */
  #newsWrapper.blog-wrapper .news-item .image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  }
}

/* 💻 Tablet – 2 články v řádku */
@media (max-width: 1079px) and (min-width: 768px) {
  #newsWrapper.blog-wrapper {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    align-items: stretch !important;
    gap: 12px !important;
    width: 100% !important;
  }

  #newsWrapper.blog-wrapper .news-item {
    flex: 0 0 calc(50% - 12px) !important;
    max-width: calc(50% - 12px) !important;
    height: 380px !important; /* mírně menší výška pro tablet */
  }

  #newsWrapper.blog-wrapper .news-item .image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  }
}

/* 📱 Mobil – 1 článek pod sebou */
@media (max-width: 767px) {
  #newsWrapper.blog-wrapper {
    display: flex !important;
    flex-direction: column !important;
    gap: 16px !important;
    width: 100% !important;
    align-items: stretch !important;
  }

  #newsWrapper.blog-wrapper .news-item {
    flex: 0 0 100% !important;
    max-width: 100% !important;
    height: auto !important; /* výška podle obsahu */
    margin: 0 !important;
  }

  #newsWrapper.blog-wrapper .news-item .image img {
    width: 100% !important;
    height: auto !important;
    object-fit: cover !important;
  }
}

#hodnoceniobchodu {
padding-bottom: 36px;

}

#footer .container.footer-rows .custom-footer {
  padding: 24px 24px 48px 24px !important; /* top | right | bottom | left */
}


</style>