/* DETAIL button v produktových kartách (výpisy) */
.products-block .p .p-tools a.btn.btn-primary{
  background-color: #00999f !important;
  border-color: #00999f !important;
}

/* Hover / focus */
.products-block .p .p-tools a.btn.btn-primary:hover,
.products-block .p .p-tools a.btn.btn-primary:focus,
.products-block .p .p-tools a.btn.btn-primary:active{
  background-color: #21a9a6 !important; /* lehce tmavší */
  border-color: #21a9a6 !important;
}

/* Pozadí celé stránky */
html, body{
  background-color: #404040 !important;
}

/* Horní lišta (top-navigation-bar) */
.top-navigation-bar{
  background-color: #00999f !important;
}

@media screen and (min-width: 1200px){
.type-index #header {position: relative !important;top: 0 !important;background-color: #000 !important;}
.type-index .top-navigation-bar {z-index: 2 !important;top: 0 !important;position: relative !important;background-color: #272727 !important;}
.one-column-body .carousel-inner > .item.carousel-link a::before, .one-column-body .carousel-inner > .item:not(.carousel-link)::before {display: none;}

/* Breadcrumbs wrapper (ten vybraný pruh) */
.container.breadcrumbs-wrapper{
  background-color: #00999f !important;
}


:root{
  --plImgH: 360px;   /* <- tady měníš velikost všech */
}

.products-block .p .image{
  height: var(--plImgH) !important;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.products-block .p .image img{
  max-height: 200% !important;
  max-width: 200% !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain;
}

/* KARTA: box pro fotku */
.products-block .p .image{
  height: var(--plImgH, 360px) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: hidden;
}

/* RODIČ obrázku (většinou <a>) musí taky centrovat */
.products-block .p .image > a,
.products-block .p .image a{
  width: 200%;
  height: 200%;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center;
}

/* Samotný obrázek */
.products-block .p .image img{
  display: block !important;
  margin: auto !important;
  max-width: 200% !important;
  max-height: 200% !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain;
}


