.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;
    }
}

/* menu desktop */
.menu-level-1 {
  font-size: 16px;
  height: 40px;
}
@media (min-width: 992px) {
  ul.menu-level-3 li,
  .more-items-trigger {
    display: none !important;
  }
}
.subcategories li a {
    font-size: 17px;
    min-height: 75px;
    height: auto;
    padding: 10px 32px 10px 11px;
    display: flex;
  	align-items: center;
}
.subcategories li a span {
  white-space: normal;
  line-height: 1.2;
}
.subcategories.with-image li a .image {
    width: 70px;
}
.subcategories.with-image li a .image img {
    max-height: 60px;
}
#navigation {
		min-height: 42px;
		height: auto;
}

#navigation .navigation-in ul li a {
    min-height: 40px;
    display: flex;
    align-items: center;
}

/* MOBILNÍ MENU */
@media (max-width: 991px) {

/* položky hlavního menu */
.menu-level-1 > li > a {
    font-size: 18px;
    font-weight: 600;
    padding: 16px 40px 16px 16px;
    border-bottom: 1px solid #dcdcdc;
    position: relative;
    display: block;
    background: #fff;
}

/* schovat obrázky v level 2 */
.menu-level-2 > li > a img {
    display: none !important;
}

.menu-level-2 > li > a {
    font-size: 18px;
    line-height: 1;
    padding: 0 !important;
    margin: 0 !important;
    min-height: 0 !important;
    height: auto !important;
}

.menu-level-2 > li > a span {
    line-height: 1;
}

/* podkategorie */
.subcategories li a {
    font-size: 16px;
    min-height: auto;
    padding: 12px 16px;
    border-bottom: 1px solid #e5e5e5;
    background: #fff;
    display: flex;
    align-items: center;
}

#navigation {
    height: auto !important;
    max-height: 100vh;
    overflow-y: auto !important;
}

#navigation .navigation-in {
    height: auto !important;
    max-height: 100vh;
    overflow-y: auto !important;
}

body.nav-open {
    overflow: hidden;
}

#navigation {
    height: unset !important;
}

/* text v podkategoriích */
.subcategories li a span {
    white-space: normal;
    line-height: 1.3;
}
.subcategories.with-image li a .image {
    width: 60px;
    margin-right: 10px;
}

.subcategories.with-image li a .image img {
    max-height: 50px;
}

/* výška menu */
.menu-level-1 {
    height: auto;
}

}
.sidebar-inner {
		font-size: 16px;
}

.product{
	transition: transform .2s;
}

.product:hover {
  -ms-transform: scale(1.01); /* IE 9 */
  -webkit-transform: scale(1.01); /* Safari 3-8 */
  transform: scale(1.01);
}

.product .flags {
    top: 10px;
    right: 10px;
    left: auto;
    bottom: auto;
}

/* mobil – původní pozice */
@media (max-width: 767px) {
    .product .flags {
        top: auto;
        right: auto;
        left: 10px;
        bottom: 10px;
    }
}

.custom-top-flag {
    margin-left: 12px;    
}

.flag.flag-discount{
	background-color: #014e9d;
}
@media (max-width: 991px) {
    .custom-top-flag {
        display: none !important;
    }
}
.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); 
}
.cart-table tr td {
    background: #fafafa;
}
.cart-related-product {
	padding-left: 80px;
}

#top-kategorie-block {
	padding-top: 10px;
}
.top-kategorie-header h2 {
		font-size: 26px;
    margin-top: 57px;
    text-align: center;
}
.top-kategorie-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.top-kategorie-item {
  display: block;
  text-decoration: none;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0,0,0,0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-align: center;
}

.top-kategorie-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.10);
  text-decoration: none;
}

.top-kategorie-item img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.top-kategorie-item span {
  display: block;
  padding: 10px 6px;
  font-size: 14px;
  font-weight: 600;
  color: #222;
  line-height: 1.3;
}

@media (max-width: 991px) {
  .top-kategorie-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 575px) {
  .top-kategorie-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .top-kategorie-item span {
    font-size: 13px;
    padding: 8px 5px;
  }
}