.top-navigation-menu{
  display:none;
}
/* HERO banner – obal slideru */
.wide-carousel {
  position: relative;
  max-width: 1180px;
  margin: 32px auto 40px !important;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

/* vnitřek slideru */
.wide-carousel .carousel-inner {
  border-radius: inherit;
  overflow: hidden;
}

/* reset výšek – aby tam nebyl bílý spodek */
.wide-carousel,
.wide-carousel .carousel-inner,
.wide-carousel .carousel-item,
.wide-carousel .item {
  height: auto !important;
  min-height: 0 !important;
}

/* obrázek */
.wide-carousel img {
  display: block;
  width: 100% !important;
  height: 420px !important; 
  object-fit: cover;
}

/* jemný přechod přes obrázek */
.wide-carousel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(255, 247, 240, 0.9) 0%,
    rgba(255, 247, 240, 0.45) 45%,
    rgba(0, 0, 0, 0) 80%
  );
  pointer-events: none;
}

/* text + tlačítko NA obrázku */
.wide-carousel .carousel-inner {
  position: relative;      /* kvůli absolutnímu umístění textu */
}

/* box s textem */
.hero-text {
  position: absolute;
  left: 48px;
  bottom: 48px;
  max-width: 420px;
  z-index: 10;
  color: #23423a;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Nunito", sans-serif;
}

/* nadpis */
.hero-text h1 {
  margin: 0 0 12px;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.15;
}

/* podnadpis */
.hero-text p {
  margin: 0 0 18px;
  font-size: 16px;
  line-height: 1.5;
  color: #54696a;
}

/* tlačítko */
.hero-btn {
  display: inline-block;
  padding: 10px 22px;
  border-radius: 999px;
  background-color: #ffb48c;
  color: #23423a;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(255, 144, 81, 0.35);
  transition: 0.15s ease;
}

.hero-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(255, 144, 81, 0.5);
}


/* === ZÁKLADNÍ NASTAVENÍ BLOKU TVOŘÍK === */

.tworik {
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  padding: 40px 16px 80px;
}

.tworik * {
  box-sizing: border-box;
}

.tworik__inner {
  max-width: 1200px;
  margin: 0 auto;
}

/* === GRID KATEGORIÍ (6 KARET NAHOŘE) === */

.tworik-categories {
 display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin-bottom: 56px;
    background: #fdf1e7; 
    padding: 40px;        
    border-radius: 26px;  
}

@media (max-width: 900px) {
  .tworik-categories {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .tworik-categories {
    grid-template-columns: 1fr;
  }
}

.tworik-cat-card {
  border-radius: 24px;
  padding: 24px 22px;
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 170px;
}

.tworik-cat-card--green {
  background: #d6f0df;
}

.tworik-cat-card--yellow {
  background: #ffe1b3;
}

.tworik-cat-card--peach {
  background: #ffd4c5;
}

.tworik-cat-icon {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 16px;
}

.tworik-cat-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #243528;
}

.tworik-cat-text {
  font-size: 14px;
  color: #6e7a72;
  line-height: 1.4;
}

.tworik-cat-link {
  margin-top: 14px;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #2e7c5b;
  font-weight: 500;
}

/* === NEJOBLÍBENĚJŠÍ SADY – NADPIS === */

.tworik-popular {
  margin-bottom: 64px;
}

.tworik-popular-title {
  text-align: center;
  font-size: 26px;
  font-weight: 700;
  color: #163021;
  margin-bottom: 32px;
}

/* === KARTY PRODUKTŮ === */

.tworik-popular-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

@media (max-width: 1024px) {
  .tworik-popular-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .tworik-popular-grid {
    grid-template-columns: 1fr;
  }
}

.tworik-product-card {
  background: #f8f5f1;
  border-radius: 24px;
  padding: 16px 16px 20px;
  text-align: center;
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.05);
}

.tworik-product-img {
  width: 100%;
  border-radius: 18px;
  margin-bottom: 16px;
  object-fit: cover;
  aspect-ratio: 4 / 5;
}

.tworik-product-name {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
  color: #243528;
}

.tworik-product-price {
  font-size: 14px;
  color: #6e7a72;
  margin-bottom: 14px;
}

.tworik-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.tworik-btn--outline {
  background: #ffffff;
  color: #2e7c5b;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.tworik-btn--outline:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.12);
}

/* === JARNÍ TVOŘENÍ – VELKÝ BANNER === */

.tworik-spring {
  background: #ffd3b7;
  border-radius: 32px;
  padding: 32px 32px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 26px;
  align-items: center;
  box-shadow: 0 22px 45px rgba(0, 0, 0, 0.08);
}

@media (max-width: 900px) {
  .tworik-spring {
    grid-template-columns: 1fr;
  }
}

.tworik-spring-text-title-main {
  font-size: 32px;
  font-weight: 800;
  color: #163021;
  margin-bottom: 8px;
}

.tworik-spring-text-title-sub {
  font-size: 24px;
  font-weight: 700;
  color: #163021;
  margin-bottom: 20px;
}

.tworik-spring-text-body {
  font-size: 15px;
  color: #4f5a54;
  margin-bottom: 22px;
  max-width: 360px;
}

.tworik-btn--primary {
  background: #2e7c5b;
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(26, 107, 76, 0.4);
}

.tworik-btn--primary:hover {
  background: #285f46;
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(26, 107, 76, 0.5);
}

.tworik-spring-img-wrap {
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
}

.tworik-spring-img {
  width: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

/* Viditelná oblast */
.tworik-carousel-window {
  overflow: hidden;
  width: 100%;
}

/* Pás se slidery */
.tworik-carousel-track {
  display: flex;
  transition: transform 0.35s ease;
  gap:24px;
}

/* Jeden slide = 1/3 šířky */
.tworik-product-card {
    flex: 0 0 calc((100% - 2 * 24px) / 3);
    box-sizing: border-box;
}

/* Mobil – 1 produkt */
@media (max-width: 768px) {
  .tworik-product-card {
    flex: 0 0 100%;
    padding: 0 0.5rem;
  }
}

/* Tlačítka */
.tworik-carousel {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.tworik-carousel-btn {
  border: none;
  background: #fff;
  border-radius: 999px;
  width: 3rem;
  height: 3rem;
  font-size: 1.8rem;
  cursor: pointer;
  box-shadow: 0 0.1rem 0.4rem rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Sekce: Co si děti vytvoří? */
.tworik-created {
  padding: 64px 0 80px;
  background: #ffffff;
}

.tworik-created__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 16px;
  text-align: center;
}

/* === 3 SLOUPCE: Tvořík / Překližky / Sádra === */
.row.banners-row {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 24px;
  align-items: stretch;
}

/* zrušit bootstrap clearovací pseudo-elementy,
   které dělají „prázdný“ první sloupec */
.row.banners-row::before,
.row.banners-row::after {
  content: none !important;
  display: none !important;
}

/* nechceme, aby col-* byly samostatné grid položky */
.row.banners-row > .col-sm-8,
.row.banners-row > .col-sm-4,
.row.banners-row > .col-sm-4 > .next-to-carousel-banners {
  display: contents !important;
  padding: 0 !important;
}

/* === TVOŘÍK VLEVO – obrázek jako první grid item === */
.row.banners-row img[src*="tvorik"] {
  width: 100%;
  height: 260px;          /* jednotná výška všech tří */
  object-fit: contain;
  border-radius: 20px;
  background: #fff;
  padding: 8px 12px;
}

/* === PRAVÉ BANNERY – PŘEKLIŽKY + SÁDRA === */
.next-to-carousel-banners .banner-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}

.next-to-carousel-banners .banner-wrapper img {
  width: 100%;
  height: 260px;          /* stejná výška jako Tvořík */
  object-fit: cover;
  display: block;
}

/* overlay kvůli čitelnosti textu */
.next-to-carousel-banners .extended-banner-link::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(1.5px);
  z-index: 0;
  transition: background 0.25s ease;
}

.next-to-carousel-banners .banner-wrapper:hover .extended-banner-link::before {
  background: rgba(0, 0, 0, 0.6);
}

/* text přes bannery */
.next-to-carousel-banners .extended-banner-text {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.4rem;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 600;
  text-align: center;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.7);
}

/* === Prostřední banner větší === */

/* === 3 sloupce s poměry: Tvořík – větší prostředek – Sádra === */
.row.banners-row {
  display: grid !important;
  grid-template-columns: 1fr 1.32fr 1fr !important;
  column-gap: 24px;
  align-items: stretch;
}

/* === Silnější overlay pro čitelnost textu === */
.next-to-carousel-banners .extended-banner-link::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
      rgba(0, 0, 0, 0.60),
      rgba(0, 0, 0, 0.35)
  );
  backdrop-filter: blur(2px);
  z-index: 0;
  transition: background 0.25s ease;
}

.next-to-carousel-banners .banner-wrapper:hover .extended-banner-link::before {
  background: linear-gradient(
      rgba(0, 0, 0, 0.75),
      rgba(0, 0, 0, 0.45)
  );
}


/* === Zvýrazněný text === */
.next-to-carousel-banners .extended-banner-text {
  position: absolute;
  inset: 0;
  z-index: 1;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #fff;
  font-size: 2rem;          /* větší text */
  font-weight: 700;         /* silný font */
  text-align: center;

  text-shadow:
      0 0 6px rgba(0, 0, 0, 0.8),
      0 0 12px rgba(0, 0, 0, 0.6);  /* glow pro čitelnost */
}



/* === MOBIL – vše pod sebou === */
@media (max-width: 767px) {
  .row.banners-row {
    grid-template-columns: 1fr;
    row-gap: 16px;
  }

  .row.banners-row img[src*="tvorik"],
  .next-to-carousel-banners .banner-wrapper img {
    height: 200px;
  }

  .next-to-carousel-banners .extended-banner-text {
    font-size: 1.3rem;
  }
}


.tworik-created__title {
  font-size: 28px;
  font-weight: 700;
  color: #204331;
  margin-bottom: 12px;
}

.tworik-created__subtitle {
  max-width: 640px;
  margin: 0 auto 40px;
  font-size: 15px;
  line-height: 1.6;
  color: #555555;
}

.tworik-created__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.tworik-created__card {
  background: #ffffff;
  border-radius: 24px;
  padding: 20px 20px 24px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06);
  text-align: left;
}

.tworik-created__img {
  display: block;
  width: 100%;
  border-radius: 20px;
  margin-bottom: 16px;
  object-fit: cover;
}

/* název a text */
.tworik-created__name {
  font-size: 16px;
  font-weight: 600;
  color: #204331;
  margin-bottom: 6px;
}

.tworik-created__text {
  font-size: 14px;
  line-height: 1.6;
  color: #555555;
}

/* Responsivita – na mobilu pod sebe */
@media (max-width: 900px) {
  .tworik-created__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .tworik-created__card {
    padding: 16px 16px 20px;
  }
}


/* === TVORIK / sekce v popisu produktu === */
.tvorik-section{
  --ink:#2e5649;
  --muted:#6a7b74;
  --bg1:#f7f2ea;
  --bg2:#fbf7f1;
  --mint:#dfe6d6;
  --peach:#f3d9cf;
  --cardShadow: 0 12px 28px rgba(0,0,0,.08);
  --softShadow: 0 10px 22px rgba(0,0,0,.07);

  margin: 22px 0;
  padding: 28px 0 34px;
  border-radius: 22px;
  background:
    radial-gradient(1200px 600px at 50% 0%, #ffffff 0%, var(--bg2) 40%, var(--bg1) 100%);
  position: relative;
  overflow: hidden;
}

/* jemný “floral” feeling bez obrázků */
.tvorik-section:before,
.tvorik-section:after{
  content:"";
  position:absolute;
  inset:-60px;
  opacity:.18;
  pointer-events:none;
  background:
    radial-gradient(circle at 12% 30%, #d7e6d8 0 14px, transparent 15px),
    radial-gradient(circle at 18% 38%, #f2dccf 0 10px, transparent 11px),
    radial-gradient(circle at 88% 20%, #d7e6d8 0 14px, transparent 15px),
    radial-gradient(circle at 82% 28%, #f2dccf 0 10px, transparent 11px),
    radial-gradient(circle at 86% 78%, #d7e6d8 0 14px, transparent 15px),
    radial-gradient(circle at 80% 86%, #f2dccf 0 10px, transparent 11px);
  filter: blur(1px);
}
.tvorik-section:after{
  opacity:.10;
  filter: blur(2px);
  transform: rotate(2deg);
}

.tvorik-wrap{
  max-width: 860px;
  margin: 0 auto;
  padding: 0 18px;
  position: relative;
  z-index: 1;
}

.tvorik-title{
  margin: 6px 0 18px;
  text-align: center;
  color: var(--ink);
  font-weight: 800;
  letter-spacing: .2px;
  font-size: 34px;
  line-height: 1.15;
}
.tvorik-title--spaced{ margin-top: 26px; }

.tvorik-sub{
  margin: 0 auto 14px;
  text-align: center;
  color: var(--muted);
  max-width: 640px;
  font-size: 15px;
  line-height: 1.6;
}

/* --- karty --- */
.tvorik-cards{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 10px 0 26px;
}
.tvorik-card{
  border-radius: 18px;
  padding: 18px 18px 16px;
  box-shadow: var(--cardShadow);
  border: 1px solid rgba(46,86,73,.08);
  text-align: center;
  background: #fff;
}
.tvorik-card--mint{ background: var(--mint); }
.tvorik-card--peach{ background: var(--peach); }

.tvorik-ico{
  width: 44px;
  height: 44px;
  margin: 2px auto 10px;
  color: var(--ink);
}
.tvorik-ico svg{
  width: 100%;
  height: 100%;
}

.tvorik-card__title{
  color: var(--ink);
  font-weight: 800;
  font-size: 18px;
  margin-bottom: 6px;
}
.tvorik-card__text{
  color: rgba(46,86,73,.85);
  font-size: 14px;
  line-height: 1.55;
}

/* --- použití (list + fotka) --- */
.tvorik-use{
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 18px;
  align-items: center;
  margin-top: 14px;
}

.tvorik-list{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}
.tvorik-li{
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  align-items: start;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.55;
}
.tvorik-dot{
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  box-shadow: 0 10px 18px rgba(0,0,0,.06);
  position: relative;
}
.tvorik-dot:after{
  content:"";
  width: 10px;
  height: 6px;
  border-left: 3px solid #fff;
  border-bottom: 3px solid #fff;
  transform: rotate(-45deg);
  margin-top: -1px;
}

/* barvy puntíků */
.tvorik-li--mint .tvorik-dot{ background:#bcd7c1; }
.tvorik-li--peach .tvorik-dot{ background:#f1b48f; }
.tvorik-li--rose .tvorik-dot{ background:#e7b3b3; }
.tvorik-li--blue .tvorik-dot{ background:#9fd1d8; }

.tvorik-photo{
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--softShadow);
  border: 1px solid rgba(46,86,73,.10);
  background: rgba(255,255,255,.6);
}
.tvorik-photo img{
  display:block;
  width:100%;
  height:auto;
}

/* první blok “na čistém” */
.tvorik-use--plain{
  padding: 8px 6px 4px;
}

/* druhý blok v rounded boxu */
.tvorik-box{
  margin-top: 50px;
  padding: 18px 18px 16px;
  border-radius: 22px;
  background:
    radial-gradient(900px 460px at 15% 0%, rgba(215,230,216,.55), transparent 60%),
    radial-gradient(900px 460px at 90% 30%, rgba(242,220,207,.55), transparent 62%),
    rgba(255,255,255,.55);
  border: 1px solid rgba(46,86,73,.08);
  box-shadow: 0 18px 36px rgba(0,0,0,.08);
  width:900px;
}
.tvorik-box__title{
  margin: 0 0 10px;
  color: var(--ink);
  font-weight: 800;
  font-size: 26px;
  line-height: 1.2;
}

/* “měkčí” fotka v boxu */
.tvorik-photo--soft{
  border-radius: 18px;
}

/* --- responsive --- */
@media (max-width: 820px){
  .tvorik-title{ font-size: 30px; }
  .tvorik-cards{ grid-template-columns: 1fr; }
  .tvorik-use{ grid-template-columns: 1fr; }
  .tvorik-photo{ order: 2; }
}
/* ==== SHOPTET OVERRIDE pro TVORIK sekci (vloz uplne dolu) ==== */
.tvorik-section, 
.tvorik-section *{
  box-sizing: border-box !important;
}

/* zruseni shoptet "sipky" a default list stylu */
.tvorik-section .tvorik-list{
  list-style: none !important;
  padding-left: 0 !important;
  margin: 0 !important;
  column-count: 1 !important;
}

.tvorik-section .tvorik-list li{
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* shoptet casto dava pseudo-elementy do li */
.tvorik-section .tvorik-list li::before,
.tvorik-section .tvorik-list li::after{
  content: none !important;
  display: none !important;
}

/* vynuceni layoutu 2 sloupcu (text + obrazek) */
.tvorik-section .tvorik-use{
  display: grid !important;
  grid-template-columns: minmax(360px, 1fr) minmax(320px, 1fr) !important;
  gap: 28px !important;
  align-items: center !important;
}

/* vynuceni layoutu polozky (kolecko vlevo, text vpravo) */
.tvorik-section .tvorik-li{
  display: grid !important;
  grid-template-columns: 34px 1fr !important;
  gap: 12px !important;
  align-items: start !important;
}

/* aby se text nelamal "po slovech" kvuli omezenim z tematu */
.tvorik-section .tvorik-li span,
.tvorik-section .tvorik-li *{
  max-width: none !important;
  white-space: normal !important;
}

/* kdyby tema pouzilo marker */
.tvorik-section .tvorik-li::marker{
  content: "" !important;
}
