.top-fixed-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #3b3b3b;
    color: #fff;
    z-index: 9999;
}
.top-bar-inner {
    max-width: 1400px;   /* stejná šířka jako menu */
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 15px;
    font-size: 14px;
}
body {
    padding-top: 40px;
}
.basic-description {
    font-size: 16px;
}
/* SKRYTÍ NA MOBILU */
@media (max-width: 768px) {
    .top-fixed-bar {
        display: none;
    }
    body {
        padding-top: 0;
    }
}
.custom-top-flag {
    margin-left: 12px;
}

@media (max-width: 991px) {
    .custom-top-flag {
        display: none !important;
    }
}
.cart-related-product {
    padding-left: 80px;
}
.benefitBanner__item {
    transition: transform .2s;
}

.benefitBanner__item:hover {
    -ms-transform: scale(1.07); /* IE 9 */
  -webkit-transform: scale(1.07); /* Safari 3-8 */
  transform: scale(1.07); 
}
.top-kategorie-home {
  margin: 40px 0;
  display: block;
  width: 100%;
  clear: both;
}

.top-kategorie-home h2 {
  text-align: center;
  font-size: 28px;
  margin-bottom: 24px;
  font-weight: 700;
}

 .top-kategorie-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.top-kat-item {
  display: block;
  text-decoration: none;
  background: #f5f5f5;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.top-kat-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.top-kat-image-wrap {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #f5f5f5;
}

.top-kat-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.top-kat-item:hover .top-kat-image {
  transform: scale(1.05);
}

.top-kat-title {
    display: block;
  padding: 5px;
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  color: #111;
}

@media (max-width: 991px) {
  .top-kategorie-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .top-kategorie-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .top-kategorie-home h2 {
    font-size: 24px;
    margin-bottom: 18px;
  }

  .top-kat-title {
    font-size: 14px;
    padding: 10px;
  }
}
.top-kategorie-home {
  display: none !important;
}

body.type-index .top-kategorie-home.moved-top-kategorie {
  display: block !important;
}