/* =================================================
   ENO -- PRODUKTOVA NAVIGACE / LIST / KATEGORIE
================================================= */

/* Skryti nativni hlavicky na category strankach */
body.type-category #header,
body.in-e-shop #header {
  display: none !important;
}

/* =================================================
   TMAVA HLAVNI LISTA
================================================= */

.eno-product-topbar {
  width: 100%;
  background: #083945;
  font-family: 'Montserrat', sans-serif;
}

.eno-product-topbar__line {
  width: 100%;
  height: 9px;
  background:
    linear-gradient(#b7d63a,#b7d63a) top/100% 3px no-repeat,
    linear-gradient(#f3f0e8,#f3f0e8) center/100% 3px no-repeat,
    linear-gradient(#df3a32,#df3a32) bottom/100% 3px no-repeat;
}

.eno-product-topbar__inner {
  max-width: 1320px;
  margin: auto;
  padding: 14px 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

.eno-product-topbar__logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-decoration: none !important;
  flex-shrink: 0;
  gap: 4px;
}

.eno-product-topbar__logo img {
  height: 46px;
  display: block;
}

.eno-product-topbar__logo span {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  white-space: nowrap;
}

.eno-product-topbar__menu {
  display: flex;
  align-items: center;
  gap: 40px;
  flex: 1;
  justify-content: center;
}

.eno-product-topbar__menu a {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #fff !important;
  text-decoration: none !important;
}

.eno-product-topbar__menu a:hover {
  color: #b7d63a !important;
}

.eno-product-topbar__icons {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.eno-topbar-icon-link {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff !important;
  text-decoration: none !important;
  cursor: pointer;
}

.eno-topbar-icon-link svg {
  width: 22px;
  height: 22px;
  stroke: #fff !important;
  fill: none !important;
  stroke-width: 1.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.eno-topbar-icon-link:hover svg {
  stroke: #b7d63a !important;
}

/* =================================================
   BILA LISTA S PODKATEGORIEMI
================================================= */

.eno-product-subnav {
  width: 100%;
  background: #fff;
  border-bottom: 1px solid #1d1d1d;
}

.eno-product-nav__items {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  list-style: none;
  margin: 0 auto;
  padding: 0 26px;
  max-width: 1320px;
}

.eno-product-nav__items li {
  display: flex;
  align-items: center;
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
}

.eno-product-nav__items a {
  display: flex !important;
  align-items: center !important;
  padding: 15px 13px !important;
  font-family: 'Montserrat', sans-serif !important;
  font-size: 11px !important;
  font-weight: 500 !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
  color: #1d1d1d !important;
  text-decoration: none !important;
  white-space: nowrap;
  border-bottom: 2px solid transparent !important;
  transition: color 0.2s, border-color 0.2s;
  background: transparent !important;
}

.eno-product-nav__items a:hover {
  color: #083945 !important;
  border-bottom-color: #A6CE3A !important;
}

.eno-product-nav__items li.is-active a {
  color: #083945 !important;
  border-bottom-color: #A6CE3A !important;
}

@media (max-width: 991px) {
  .eno-product-nav {
    display: none !important;
  }
}

/* =================================================
   GLOBÁLNÍ SJEDNOCENÍ KARET PRODUKTU VE VYPISECH
================================================= */

body.type-category .products,
body.in-e-shop .products,
body.type-index .products,
body.in-index .products,
body.type-category ul.products,
body.in-e-shop ul.products,
body.type-category .products-block,
body.in-e-shop .products-block {
  visibility: visible !important;
  opacity: 1 !important;
}

body.type-category .product,
body.in-e-shop .product,
body.type-index .product,
body.in-index .product,
body.type-category .product-box,
body.in-e-shop .product-box {
  visibility: visible !important;
  opacity: 1 !important;
}

/* =================================================
   LAYOUT KARTY PRODUKTU
================================================= */

.product .p {
  display: flex !important;
  flex-direction: column !important;
  height: 100% !important;
}

.product .p-in {
  display: flex !important;
  flex-direction: column !important;
  flex: 1 !important;
  height: 100% !important;
}

.product .p-in-in {
  flex: 1 !important;
  display: flex !important;
  flex-direction: column !important;
}

/* Skryti popisu v karte */
.product .p-desc {
  display: none !important;
}

/* Nazev produktu */
.product .p-in-in .name,
.product .p-in-in .name span,
.product .name,
.product .name span {
  display: block !important;
  text-align: left !important;
  font-family: 'Montserrat', sans-serif !important;
}

/* Nazev vinarstvi pod nazvem produktu */
.eno-brand-name {
  font-family: 'Montserrat', sans-serif !important;
  font-size: 11px !important;
  font-weight: 400 !important;
  letter-spacing: 0.06em !important;
  color: #8A8A8A !important;
  text-transform: uppercase !important;
  margin-top: 2px !important;
  margin-bottom: 6px !important;
  line-height: 1.3 !important;
  text-align: center !important;
}

/* p-bottom vzdy dole */
.product .p-bottom {
  display: flex !important;
  flex-direction: column !important;
  align-items: stretch !important;
  margin-top: auto !important;
  padding-top: 8px !important;
  width: 100% !important;
}

/* Dostupnost */
.product .availability,
.product .p-in-in .availability,
.product .p-in > .availability,
.product .p-bottom > .availability,
.product .eno-availability-fixed {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  font-family: 'Montserrat', sans-serif !important;
  font-size: 11px !important;
  font-weight: 400 !important;
  color: #8A8A8A !important;
  text-align: left !important;
  line-height: 1.3 !important;
  margin: 0 0 4px 0 !important;
  padding: 0 !important;
}

.product .availability span,
.product .eno-availability-fixed span {
  color: #8A8A8A !important;
  font-size: 11px !important;
  font-weight: 400 !important;
  text-align: left !important;
}

/* Pokud zustane dostupnost nahore v p-in-in a zaroven je uz v p-bottom, schovat duplicity mimo p-bottom */
.product .p-in-in > .availability:not(.eno-availability-fixed),
.product .p-in > .availability:not(.eno-availability-fixed) {
  display: none !important;
}

/* Offer - cena + tlacitko */
.product .p-bottom [data-micro="offer"] {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 30px !important;
  flex-wrap: nowrap !important;
  width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* Cena */
.product .p-bottom .prices {
  flex: 0 0 auto !important;
  text-align: left !important;
  padding: 0 !important;
  margin: 0 !important;
  min-width: 0 !important;
  width: auto !important;
}

.product .p-bottom .price-final {
  display: block !important;
  white-space: nowrap !important;
  text-align: left !important;
  padding: 0 !important;
  margin: 0 !important;
}

.product .p-bottom .price-final strong {
  display: inline-block !important;
  font-size: 18px !important;
  font-weight: 500 !important;
  white-space: nowrap !important;
  text-align: left !important;
  padding: 0 !important;
  margin: 0 !important;
}

.product .p-bottom .price-final .eno-price-amount {
  font-size: 18px !important;
  font-weight: 500 !important;
}

.product .p-bottom .price-final .eno-price-currency {
  font-size: 11px !important;
  font-weight: 400 !important;
  letter-spacing: 0.04em !important;
  color: #8A8A8A !important;
  vertical-align: baseline !important;
}

/* Obal tlacitka */
.product .p-bottom .p-tools {
  flex: 0 0 118px !important;
  width: 118px !important;
  min-width: 118px !important;
  max-width: 118px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  padding: 0 !important;
  margin: 0 !important;
  position: static !important;
  float: none !important;
  transform: none !important;
}

/* =================================================
   DETAIL TLACITKO VE VYPISECH - BEZOVE
================================================= */

body.type-category .btn.btn-cart.add-to-cart-button,
body.in-e-shop .btn.btn-cart.add-to-cart-button,
body.type-index .btn.btn-cart.add-to-cart-button,
body.in-index .btn.btn-cart.add-to-cart-button,
body.type-category a.eno-detail-replaced,
body.type-category button.eno-detail-replaced,
body.type-category input.eno-detail-replaced,
body.type-category .btn.eno-detail-replaced,
body.type-category .button.eno-detail-replaced,
body.in-e-shop a.eno-detail-replaced,
body.in-e-shop button.eno-detail-replaced,
body.in-e-shop input.eno-detail-replaced,
body.in-e-shop .btn.eno-detail-replaced,
body.in-e-shop .button.eno-detail-replaced,
body.type-index a.eno-detail-replaced,
body.type-index button.eno-detail-replaced,
body.type-index input.eno-detail-replaced,
body.type-index .btn.eno-detail-replaced,
body.type-index .button.eno-detail-replaced,
body.in-index a.eno-detail-replaced,
body.in-index button.eno-detail-replaced,
body.in-index input.eno-detail-replaced,
body.in-index .btn.eno-detail-replaced,
body.in-index .button.eno-detail-replaced,
.product .p-bottom .p-tools a,
.product .p-bottom .p-tools button,
.product .p-bottom .p-tools input {
  width: 118px !important;
  min-width: 118px !important;
  max-width: 118px !important;
  height: 34px !important;
  min-height: 34px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: #eadfce !important;
  background-color: #eadfce !important;
  background-image: none !important;
  border: 0 !important;
  color: #111 !important;
  box-shadow: none !important;
  text-shadow: none !important;
  padding: 9px 14px !important;
  font-family: 'Montserrat', sans-serif !important;
  font-size: 11px !important;
  font-weight: 500 !important;
  letter-spacing: .08em !important;
  text-transform: uppercase !important;
  line-height: 1 !important;
  white-space: nowrap !important;
  text-align: center !important;
  text-decoration: none !important;
  overflow: visible !important;
  text-overflow: clip !important;
  border-radius: 0 !important;
  cursor: pointer !important;
  position: static !important;
  float: none !important;
  transform: none !important;
}

body.type-category .btn.btn-cart.add-to-cart-button:hover,
body.in-e-shop .btn.btn-cart.add-to-cart-button:hover,
body.type-index .btn.btn-cart.add-to-cart-button:hover,
body.in-index .btn.btn-cart.add-to-cart-button:hover,
body.type-category a.eno-detail-replaced:hover,
body.type-category button.eno-detail-replaced:hover,
body.type-category input.eno-detail-replaced:hover,
body.type-category .btn.eno-detail-replaced:hover,
body.type-category .button.eno-detail-replaced:hover,
body.in-e-shop a.eno-detail-replaced:hover,
body.in-e-shop button.eno-detail-replaced:hover,
body.in-e-shop input.eno-detail-replaced:hover,
body.in-e-shop .btn.eno-detail-replaced:hover,
body.in-e-shop .button.eno-detail-replaced:hover,
body.type-index a.eno-detail-replaced:hover,
body.type-index button.eno-detail-replaced:hover,
body.type-index input.eno-detail-replaced:hover,
body.type-index .btn.eno-detail-replaced:hover,
body.type-index .button.eno-detail-replaced:hover,
body.in-index a.eno-detail-replaced:hover,
body.in-index button.eno-detail-replaced:hover,
body.in-index input.eno-detail-replaced:hover,
body.in-index .btn.eno-detail-replaced:hover,
body.in-index .button.eno-detail-replaced:hover,
.product .p-bottom .p-tools a:hover,
.product .p-bottom .p-tools button:hover,
.product .p-bottom .p-tools input:hover {
  background: #eadfce !important;
  background-color: #eadfce !important;
  background-image: none !important;
  border: 0 !important;
  color: #111 !important;
  box-shadow: none !important;
}

body.type-category .eno-detail-replaced span,
body.in-e-shop .eno-detail-replaced span,
body.type-index .eno-detail-replaced span,
body.in-index .eno-detail-replaced span {
  color: #111 !important;
  background: transparent !important;
}

/* =================================================
   AKCNI STITKY A SLEVOVE BUBLINY - ponechani funkcnosti
================================================= */

.product .flags,
.product .flag,
.product .flag-action,
.product .price-save {
  z-index: 2 !important;
}

/* =================================================
   SKRYTI NEWSLETTERU
================================================= */

div.container.footer-newsletter,
div.newsletter-header {
  display: none !important;
}

/* =================================================
   ENO FINAL FIX – produktová karta
   název vlevo, značka na střed, skladem + cena pod název
================================================= */

/* Společný textový blok pod fotkou */
body.type-category .product .p-in-in,
body.in-e-shop .product .p-in-in,
body.type-index .product .p-in-in,
body.in-index .product .p-in-in,
body.type-category .product .p-bottom,
body.in-e-shop .product .p-bottom,
body.type-index .product .p-bottom,
body.in-index .product .p-bottom {
  width: 220px !important;
  max-width: 220px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  text-align: left !important;
  align-items: stretch !important;
}

/* Název produktu – vlevo */
body.type-category .product .p-in-in a.name,
body.in-e-shop .product .p-in-in a.name,
body.type-index .product .p-in-in a.name,
body.in-index .product .p-in-in a.name,
body.type-category .product .p-in-in .name,
body.in-e-shop .product .p-in-in .name,
body.type-index .product .p-in-in .name,
body.in-index .product .p-in-in .name,
body.type-category .product .p-in-in .name span,
body.in-e-shop .product .p-in-in .name span,
body.type-index .product .p-in-in .name span,
body.in-index .product .p-in-in .name span {
  width: 100% !important;
  max-width: 100% !important;
  display: block !important;
  text-align: left !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* Značka / vinařství – na střed */
body.type-category .product .eno-brand-name,
body.in-e-shop .product .eno-brand-name,
body.type-index .product .eno-brand-name,
body.in-index .product .eno-brand-name {
  width: 100% !important;
  display: block !important;
  text-align: center !important;
  margin: 2px 0 8px 0 !important;
  padding: 0 !important;
}

/* Dostupnost – přesně vlevo pod název */
body.type-category .product .p-bottom > .availability,
body.in-e-shop .product .p-bottom > .availability,
body.type-index .product .p-bottom > .availability,
body.in-index .product .p-bottom > .availability,
body.type-category .product .eno-availability-fixed,
body.in-e-shop .product .eno-availability-fixed,
body.type-index .product .eno-availability-fixed,
body.in-index .product .eno-availability-fixed {
  width: 100% !important;
  max-width: 100% !important;
  display: block !important;
  text-align: left !important;
  margin: 0 0 4px 0 !important;
  padding: 0 !important;
  align-self: stretch !important;
}

/* Řádek cena + tlačítko */
body.type-category .product .p-bottom [data-micro="offer"],
body.in-e-shop .product .p-bottom [data-micro="offer"],
body.type-index .product .p-bottom [data-micro="offer"],
body.in-index .product .p-bottom [data-micro="offer"] {
  width: 100% !important;
  max-width: 100% !important;
  display: flex !important;
  flex-direction: row !important;
  justify-content: flex-start !important;
  align-items: center !important;
  gap: 30px !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* Cena – přesně vlevo pod Skladem a názvem */
body.type-category .product .p-bottom .prices,
body.in-e-shop .product .p-bottom .prices,
body.type-index .product .p-bottom .prices,
body.in-index .product .p-bottom .prices,
body.type-category .product .p-bottom .price-final,
body.in-e-shop .product .p-bottom .price-final,
body.type-index .product .p-bottom .price-final,
body.in-index .product .p-bottom .price-final,
body.type-category .product .p-bottom .price-final strong,
body.in-e-shop .product .p-bottom .price-final strong,
body.type-index .product .p-bottom .price-final strong,
body.in-index .product .p-bottom .price-final strong {
  display: block !important;
  flex: 0 0 auto !important;
  min-width: 0 !important;
  width: auto !important;
  text-align: left !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* Tlačítko – vedle ceny, ale neujíždí */
body.type-category .product .p-bottom .p-tools,
body.in-e-shop .product .p-bottom .p-tools,
body.type-index .product .p-bottom .p-tools,
body.in-index .product .p-bottom .p-tools {
  position: static !important;
  float: none !important;
  transform: none !important;
  margin: 0 !important;
  padding: 0 !important;
  flex: 0 0 118px !important;
  width: 118px !important;
  min-width: 118px !important;
  max-width: 118px !important;
  display: flex !important;
  justify-content: flex-start !important;
}

/* Samotné tlačítko */
body.type-category .product .p-bottom .p-tools a,
body.type-category .product .p-bottom .p-tools button,
body.type-category .product .p-bottom .p-tools input,
body.in-e-shop .product .p-bottom .p-tools a,
body.in-e-shop .product .p-bottom .p-tools button,
body.in-e-shop .product .p-bottom .p-tools input,
body.type-index .product .p-bottom .p-tools a,
body.type-index .product .p-bottom .p-tools button,
body.type-index .product .p-bottom .p-tools input,
body.in-index .product .p-bottom .p-tools a,
body.in-index .product .p-bottom .p-tools button,
body.in-index .product .p-bottom .p-tools input {
  width: 118px !important;
  min-width: 118px !important;
  max-width: 118px !important;
  height: 34px !important;
  min-height: 34px !important;
  padding: 9px 14px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: #eadfce !important;
  background-color: #eadfce !important;
  background-image: none !important;
  color: #111 !important;
  border: 0 !important;
  box-shadow: none !important;
  text-shadow: none !important;
  font-size: 11px !important;
  font-weight: 500 !important;
  letter-spacing: .08em !important;
  text-transform: uppercase !important;
  line-height: 1 !important;
  white-space: nowrap !important;
  text-align: center !important;
  text-decoration: none !important;
  overflow: visible !important;
  text-overflow: clip !important;
  border-radius: 0 !important;
}

/* Kdyby Shoptet tlačil cenu/stav na střed přes vnitřní prvky */
body.type-category .product .availability span,
body.in-e-shop .product .availability span,
body.type-index .product .availability span,
body.in-index .product .availability span,
body.type-category .product .eno-availability-fixed span,
body.in-e-shop .product .eno-availability-fixed span,
body.type-index .product .eno-availability-fixed span,
body.in-index .product .eno-availability-fixed span,
body.type-category .product .price-final span,
body.in-e-shop .product .price-final span,
body.type-index .product .price-final span,
body.in-index .product .price-final span {
  text-align: left !important;
}

/* =================================================
   MOBIL / TABLET
================================================= */

@media (max-width: 767px) {
  body.type-category .product .p-in-in,
  body.in-e-shop .product .p-in-in,
  body.type-index .product .p-in-in,
  body.in-index .product .p-in-in,
  body.type-category .product .p-bottom,
  body.in-e-shop .product .p-bottom,
  body.type-index .product .p-bottom,
  body.in-index .product .p-bottom {
    width: 200px !important;
    max-width: 200px !important;
  }

  body.type-category .product .p-bottom [data-micro="offer"],
  body.in-e-shop .product .p-bottom [data-micro="offer"],
  body.type-index .product .p-bottom [data-micro="offer"],
  body.in-index .product .p-bottom [data-micro="offer"] {
    gap: 16px !important;
  }

  body.type-category .product .p-bottom .p-tools,
  body.in-e-shop .product .p-bottom .p-tools,
  body.type-index .product .p-bottom .p-tools,
  body.in-index .product .p-bottom .p-tools {
    flex: 0 0 112px !important;
    width: 112px !important;
    min-width: 112px !important;
    max-width: 112px !important;
  }

  body.type-category .product .p-bottom .p-tools a,
  body.type-category .product .p-bottom .p-tools button,
  body.type-category .product .p-bottom .p-tools input,
  body.in-e-shop .product .p-bottom .p-tools a,
  body.in-e-shop .product .p-bottom .p-tools button,
  body.in-e-shop .product .p-bottom .p-tools input,
  body.type-index .product .p-bottom .p-tools a,
  body.type-index .product .p-bottom .p-tools button,
  body.type-index .product .p-bottom .p-tools input,
  body.in-index .product .p-bottom .p-tools a,
  body.in-index .product .p-bottom .p-tools button,
  body.in-index .product .p-bottom .p-tools input {
    width: 112px !important;
    min-width: 112px !important;
    max-width: 112px !important;
    font-size: 10px !important;
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
}
/* =================================================
   ENO FINAL FIX – cena přesně pod Skladem
================================================= */

body.type-category .product .p-bottom [data-micro="offer"],
body.in-e-shop .product .p-bottom [data-micro="offer"],
body.type-index .product .p-bottom [data-micro="offer"],
body.in-index .product .p-bottom [data-micro="offer"] {
  justify-content: flex-start !important;
  gap: 38px !important;
}

/* Cena se nesmí centrovat ani odsazovat */
body.type-category .product .p-bottom .prices,
body.in-e-shop .product .p-bottom .prices,
body.type-index .product .p-bottom .prices,
body.in-index .product .p-bottom .prices {
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-left: 0 !important;
  text-align: left !important;
  transform: translateX(0) !important;
}

/* Samotná finální cena vlevo */
body.type-category .product .p-bottom .price-final,
body.in-e-shop .product .p-bottom .price-final,
body.type-index .product .p-bottom .price-final,
body.in-index .product .p-bottom .price-final,
body.type-category .product .p-bottom .price-final strong,
body.in-e-shop .product .p-bottom .price-final strong,
body.type-index .product .p-bottom .price-final strong,
body.in-index .product .p-bottom .price-final strong {
  margin-left: 0 !important;
  padding-left: 0 !important;
  text-align: left !important;
  transform: translateX(0) !important;
}

/* Kdyby cena měla v šabloně vnitřní centrovaný inline blok */
body.type-category .product .p-bottom .price-final *,
body.in-e-shop .product .p-bottom .price-final *,
body.type-index .product .p-bottom .price-final *,
body.in-index .product .p-bottom .price-final * {
  text-align: left !important;
}
/* =================================================
   ENO FINAL FIX – ruční posun ceny pod Skladem
================================================= */

body.type-category .product .p-bottom .prices,
body.in-e-shop .product .p-bottom .prices,
body.type-index .product .p-bottom .prices,
body.in-index .product .p-bottom .prices {
  transform: translateX(-16px) !important;
}

/* ať se neposune tlačítko, pouze cena */
body.type-category .product .p-bottom .p-tools,
body.in-e-shop .product .p-bottom .p-tools,
body.type-index .product .p-bottom .p-tools,
body.in-index .product .p-bottom .p-tools {
  transform: translateX(0) !important;
}
/* =================================================
   ENO FINAL FIX – tlačítka nesmí lézt doprava mimo kartu
================================================= */

/* Zmenšíme mezeru mezi cenou a tlačítkem */
body.type-category .product .p-bottom [data-micro="offer"],
body.in-e-shop .product .p-bottom [data-micro="offer"],
body.type-index .product .p-bottom [data-micro="offer"],
body.in-index .product .p-bottom [data-micro="offer"] {
  gap: 16px !important;
  justify-content: flex-start !important;
  max-width: 100% !important;
  overflow: visible !important;
}

/* Obal tlačítka o něco užší */
body.type-category .product .p-bottom .p-tools,
body.in-e-shop .product .p-bottom .p-tools,
body.type-index .product .p-bottom .p-tools,
body.in-index .product .p-bottom .p-tools {
  flex: 0 0 108px !important;
  width: 108px !important;
  min-width: 108px !important;
  max-width: 108px !important;
}

/* Samotné tlačítko o něco užší, ale pořád čitelné */
body.type-category .product .p-bottom .p-tools a,
body.type-category .product .p-bottom .p-tools button,
body.type-category .product .p-bottom .p-tools input,
body.in-e-shop .product .p-bottom .p-tools a,
body.in-e-shop .product .p-bottom .p-tools button,
body.in-e-shop .product .p-bottom .p-tools input,
body.type-index .product .p-bottom .p-tools a,
body.type-index .product .p-bottom .p-tools button,
body.type-index .product .p-bottom .p-tools input,
body.in-index .product .p-bottom .p-tools a,
body.in-index .product .p-bottom .p-tools button,
body.in-index .product .p-bottom .p-tools input {
  width: 108px !important;
  min-width: 108px !important;
  max-width: 108px !important;
  padding-left: 12px !important;
  padding-right: 12px !important;
}
/* =================================================
   ENO FINAL FIX – jemnější výška tlačítek ve výpisu
================================================= */

body.type-category .product .p-bottom .p-tools a,
body.type-category .product .p-bottom .p-tools button,
body.type-category .product .p-bottom .p-tools input,
body.in-e-shop .product .p-bottom .p-tools a,
body.in-e-shop .product .p-bottom .p-tools button,
body.in-e-shop .product .p-bottom .p-tools input,
body.type-index .product .p-bottom .p-tools a,
body.type-index .product .p-bottom .p-tools button,
body.type-index .product .p-bottom .p-tools input,
body.in-index .product .p-bottom .p-tools a,
body.in-index .product .p-bottom .p-tools button,
body.in-index .product .p-bottom .p-tools input {
  height: 28px !important;
  min-height: 28px !important;
  padding-top: 6px !important;
  padding-bottom: 6px !important;
  font-size: 10.5px !important;
}
/* =================================================
   ENO MOBILE FIX – tlačítko DETAIL pod cenou
   pouze mobil, desktop beze změny
================================================= */

/* =================================================
   ENO MOBILE FINAL – cena a DETAIL pod sebou vlevo
   pouze mobil
================================================= */

/* =================================================
   ENO MOBILE SUPER FINAL – cena a DETAIL pod sebou
   pouze mobil, desktop beze změny
================================================= */

@media only screen and (max-width: 767px) {

  /* Produktová karta – necháme 2 produkty vedle sebe, ale textový blok zúžíme */
  html body.type-category .products .product .p-in-in,
  html body.in-e-shop .products .product .p-in-in,
  html body.type-index .products .product .p-in-in,
  html body.in-index .products .product .p-in-in,
  html body.type-category .products .product .p-bottom,
  html body.in-e-shop .products .product .p-bottom,
  html body.type-index .products .product .p-bottom,
  html body.in-index .products .product .p-bottom {
    width: 150px !important;
    max-width: 150px !important;
    margin-left: 0 !important;
    margin-right: auto !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    text-align: left !important;
    align-items: flex-start !important;
  }

  /* Název produktu vlevo */
  html body.type-category .products .product .p-in-in .name,
  html body.in-e-shop .products .product .p-in-in .name,
  html body.type-index .products .product .p-in-in .name,
  html body.in-index .products .product .p-in-in .name,
  html body.type-category .products .product .p-in-in .name span,
  html body.in-e-shop .products .product .p-in-in .name span,
  html body.type-index .products .product .p-in-in .name span,
  html body.in-index .products .product .p-in-in .name span {
    width: 100% !important;
    text-align: left !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  /* Značka zůstane na střed */
  html body.type-category .products .product .eno-brand-name,
  html body.in-e-shop .products .product .eno-brand-name,
  html body.type-index .products .product .eno-brand-name,
  html body.in-index .products .product .eno-brand-name {
    width: 100% !important;
    text-align: center !important;
    margin: 2px 0 8px 0 !important;
    padding: 0 !important;
  }

  /* Skladem vlevo */
  html body.type-category .products .product .p-bottom > .availability,
  html body.in-e-shop .products .product .p-bottom > .availability,
  html body.type-index .products .product .p-bottom > .availability,
  html body.in-index .products .product .p-bottom > .availability,
  html body.type-category .products .product .eno-availability-fixed,
  html body.in-e-shop .products .product .eno-availability-fixed,
  html body.type-index .products .product .eno-availability-fixed,
  html body.in-index .products .product .eno-availability-fixed {
    width: 100% !important;
    text-align: left !important;
    margin: 0 0 4px 0 !important;
    padding: 0 !important;
  }

  /* Cena a DETAIL pod sebe */
  html body.type-category .products .product .p-bottom [data-micro="offer"],
  html body.in-e-shop .products .product .p-bottom [data-micro="offer"],
  html body.type-index .products .product .p-bottom [data-micro="offer"],
  html body.in-index .products .product .p-bottom [data-micro="offer"] {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    gap: 7px !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  /* Cena vlevo bez desktopového posunu */
  html body.type-category .products .product .p-bottom .prices,
  html body.in-e-shop .products .product .p-bottom .prices,
  html body.type-index .products .product .p-bottom .prices,
  html body.in-index .products .product .p-bottom .prices,
  html body.type-category .products .product .p-bottom .price-final,
  html body.in-e-shop .products .product .p-bottom .price-final,
  html body.type-index .products .product .p-bottom .price-final,
  html body.in-index .products .product .p-bottom .price-final,
  html body.type-category .products .product .p-bottom .price-final strong,
  html body.in-e-shop .products .product .p-bottom .price-final strong,
  html body.type-index .products .product .p-bottom .price-final strong,
  html body.in-index .products .product .p-bottom .price-final strong {
    width: 100% !important;
    max-width: 100% !important;
    display: block !important;
    text-align: left !important;
    margin: 0 !important;
    padding: 0 !important;
    transform: none !important;
  }

  /* Obal tlačítka vlevo pod cenou */
  html body.type-category .products .product .p-bottom .p-tools,
  html body.in-e-shop .products .product .p-bottom .p-tools,
  html body.type-index .products .product .p-bottom .p-tools,
  html body.in-index .products .product .p-bottom .p-tools {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    flex: none !important;
    display: flex !important;
    justify-content: flex-start !important;
    align-items: flex-start !important;
    margin: 0 !important;
    padding: 0 !important;
    transform: none !important;
  }

  /* Samotné tlačítko vlevo pod cenou */
  html body.type-category .products .product .p-bottom .p-tools a,
  html body.type-category .products .product .p-bottom .p-tools button,
  html body.type-category .products .product .p-bottom .p-tools input,
  html body.in-e-shop .products .product .p-bottom .p-tools a,
  html body.in-e-shop .products .product .p-bottom .p-tools button,
  html body.in-e-shop .products .product .p-bottom .p-tools input,
  html body.type-index .products .product .p-bottom .p-tools a,
  html body.type-index .products .product .p-bottom .p-tools button,
  html body.type-index .products .product .p-bottom .p-tools input,
  html body.in-index .products .product .p-bottom .p-tools a,
  html body.in-index .products .product .p-bottom .p-tools button,
  html body.in-index .products .product .p-bottom .p-tools input {
    width: 108px !important;
    min-width: 108px !important;
    max-width: 108px !important;
    height: 28px !important;
    min-height: 28px !important;
    padding: 6px 10px !important;
    font-size: 10.5px !important;
    margin: 0 !important;
    transform: none !important;
  }
}
/* =================================================
   ENO MOBILE HEADER – zobrazit logo na mobilu
   pouze mobil
================================================= */

@media (max-width: 991px) {

  /* naše vlastní ENO navigace se na mobilu NESMÍ schovat */
  body.type-category .eno-product-nav,
  body.in-e-shop .eno-product-nav {
    display: block !important;
  }

  /* horní tmavá lišta zůstane viditelná */
  body.type-category .eno-product-topbar,
  body.in-e-shop .eno-product-topbar {
    display: block !important;
  }

  /* spodní bílý řádek s kategoriemi na mobilu schováme */
  body.type-category .eno-product-subnav,
  body.in-e-shop .eno-product-subnav {
    display: none !important;
  }

  /* prostřední desktop menu na mobilu schováme */
  body.type-category .eno-product-topbar__menu,
  body.in-e-shop .eno-product-topbar__menu {
    display: none !important;
  }

  /* lištu srovnáme pro mobil */
  body.type-category .eno-product-topbar__inner,
  body.in-e-shop .eno-product-topbar__inner {
    padding: 12px 16px !important;
    gap: 12px !important;
    justify-content: space-between !important;
    align-items: center !important;
  }

  /* logo vlevo */
  body.type-category .eno-product-topbar__logo,
  body.in-e-shop .eno-product-topbar__logo {
    display: flex !important;
    align-items: center !important;
    flex-direction: row !important;
    gap: 0 !important;
  }

  body.type-category .eno-product-topbar__logo img,
  body.in-e-shop .eno-product-topbar__logo img {
    height: 44px !important;
    width: auto !important;
    display: block !important;
  }

  /* malý slogan pod logem na mobilu schováme */
  body.type-category .eno-product-topbar__logo span,
  body.in-e-shop .eno-product-topbar__logo span {
    display: none !important;
  }

  /* ikony vpravo ponecháme */
  body.type-category .eno-product-topbar__icons,
  body.in-e-shop .eno-product-topbar__icons {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
  }

  body.type-category .eno-topbar-icon-link,
  body.in-e-shop .eno-topbar-icon-link {
    width: 26px !important;
    height: 26px !important;
  }

  body.type-category .eno-topbar-icon-link svg,
  body.in-e-shop .eno-topbar-icon-link svg {
    width: 20px !important;
    height: 20px !important;
  }
}
/* =================================================
   ENO HARD MOBILE HEADER – detail produktu
================================================= */

@media (max-width: 991px) {
  .eno-hard-mobile-header {
    display: block !important;
    width: 100% !important;
    background: #083945 !important;
    position: relative !important;
    z-index: 99999 !important;
  }

  .eno-hard-mobile-header__line {
    width: 100% !important;
    height: 9px !important;
    background:
      linear-gradient(#b7d63a,#b7d63a) top/100% 3px no-repeat,
      linear-gradient(#f3f0e8,#f3f0e8) center/100% 3px no-repeat,
      linear-gradient(#df3a32,#df3a32) bottom/100% 3px no-repeat;
  }

  .eno-hard-mobile-header__inner {
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 12px 16px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    background: #083945 !important;
  }

  .eno-hard-mobile-header__logo {
    display: flex !important;
    align-items: center !important;
    text-decoration: none !important;
  }

  .eno-hard-mobile-header__logo img {
    height: 44px !important;
    width: auto !important;
    max-width: 120px !important;
    display: block !important;
  }

  .eno-hard-mobile-header__icons {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
  }

  .eno-hard-mobile-header__icon {
    width: 26px !important;
    height: 26px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #fff !important;
    text-decoration: none !important;
  }

  .eno-hard-mobile-header__icon svg {
    width: 20px !important;
    height: 20px !important;
    stroke: #fff !important;
    fill: none !important;
    stroke-width: 1.3 !important;
    stroke-linecap: round !important;
    stroke-linejoin: round !important;
  }
}

@media (min-width: 992px) {
  .eno-hard-mobile-header {
    display: none !important;
  }
}
/* =================================================
   ENO – E-SHOP MOBILE SORTING
   vlastní řádek řazení v jednom řádku
================================================= */

@media (max-width: 767px) {

  body.eno-mobile-sorting-ready .listSorting,
  body.eno-mobile-sorting-ready .listSorting_controls,
  body.eno-mobile-sorting-ready ul.listSorting_controls {
    display: none !important;
  }

  .eno-mobile-sorting {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 4px !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 18px 0 24px 0 !important;
    padding: 0 0 6px 0 !important;
    border-bottom: 1px solid #dcdcdc !important;
    box-sizing: border-box !important;
  }

  .eno-mobile-sorting__item {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    width: 100% !important;
    height: 42px !important;
    min-height: 42px !important;

    padding: 7px 2px !important;
    margin: 0 !important;

    background: #fff !important;
    border: 1px solid #dcdcdc !important;
    box-sizing: border-box !important;

    font-family: 'Montserrat', sans-serif !important;
    font-size: 8.5px !important;
    font-weight: 400 !important;
    letter-spacing: 0.02em !important;
    line-height: 1.1 !important;
    text-align: center !important;
    text-decoration: none !important;
    text-transform: none !important;
    color: #1d1d1d !important;

    white-space: nowrap !important;
    overflow: hidden !important;
  }

  .eno-mobile-sorting__item.is-active {
    background: #f3eee3 !important;
  }
}



/* =================================================
   ENO – E-SHOP MOBILE PARAMETRY / FILTRACE
   mobil: filtrace sbalená + vlastní tlačítko
================================================= */

@media (max-width: 767px) {

  /* vlastní tlačítko – nesmí obsahovat slovo filter v názvu třídy */
  .eno-mobile-parametry-toggle {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    align-items: center !important;
    justify-content: center !important;

    width: 100% !important;
    max-width: 100% !important;
    height: 42px !important;
    min-height: 42px !important;

    margin: 0 0 18px 0 !important;
    padding: 10px 18px !important;

    background: #f3eee3 !important;
    border: 1px solid #e0d8ca !important;
    color: #1d1d1d !important;

    font-family: 'Montserrat', sans-serif !important;
    font-size: 11px !important;
    font-weight: 500 !important;
    letter-spacing: 0.10em !important;
    text-transform: uppercase !important;
    text-align: center !important;
    line-height: 1 !important;

    box-shadow: none !important;
    border-radius: 0 !important;
    cursor: pointer !important;
    box-sizing: border-box !important;
  }

  /* výchozí stav – filtrace je na mobilu schovaná */
  body:not(.eno-mobile-parametry-open) .filters,
  body:not(.eno-mobile-parametry-open) .filters-wrapper,
  body:not(.eno-mobile-parametry-open) .filter-wrapper,
  body:not(.eno-mobile-parametry-open) .filter-section,
  body:not(.eno-mobile-parametry-open) .filter-sections,
  body:not(.eno-mobile-parametry-open) .advanced-filters,
  body:not(.eno-mobile-parametry-open) .advanced-filter,
  body:not(.eno-mobile-parametry-open) #filters,
  body:not(.eno-mobile-parametry-open) #filter,
  body:not(.eno-mobile-parametry-open) .filterForm,
  body:not(.eno-mobile-parametry-open) form[action*="filter"],
  body:not(.eno-mobile-parametry-open) form[id*="filter"],
  body:not(.eno-mobile-parametry-open) form[class*="filter"],
  body:not(.eno-mobile-parametry-open) .category-filter,
  body:not(.eno-mobile-parametry-open) .category-filters,
  body:not(.eno-mobile-parametry-open) .filter-unveil-button,
  body:not(.eno-mobile-parametry-open) .filters-unveil-button,
  body:not(.eno-mobile-parametry-open) .filter-toggle,
  body:not(.eno-mobile-parametry-open) .filter-toggler,
  body:not(.eno-mobile-parametry-open) .filter-button,
  body:not(.eno-mobile-parametry-open) .sidebar .filters,
  body:not(.eno-mobile-parametry-open) .sidebar-inner .filters {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    height: 0 !important;
    max-height: 0 !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
  }

  /* naše tlačítko se nikdy nesmí schovat */
  body .eno-mobile-parametry-toggle,
  body:not(.eno-mobile-parametry-open) .eno-mobile-parametry-toggle,
  body:not(.eno-mobile-parametry-open) #content .eno-mobile-parametry-toggle {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    height: 42px !important;
    min-height: 42px !important;
    max-height: 42px !important;
    overflow: visible !important;
  }

  /* po kliknutí se filtrace zobrazí */
  body.eno-mobile-parametry-open .filters,
  body.eno-mobile-parametry-open .filters-wrapper,
  body.eno-mobile-parametry-open .filter-wrapper,
  body.eno-mobile-parametry-open .filter-section,
  body.eno-mobile-parametry-open .filter-sections,
  body.eno-mobile-parametry-open .advanced-filters,
  body.eno-mobile-parametry-open .advanced-filter,
  body.eno-mobile-parametry-open #filters,
  body.eno-mobile-parametry-open #filter,
  body.eno-mobile-parametry-open .filterForm,
  body.eno-mobile-parametry-open form[action*="filter"],
  body.eno-mobile-parametry-open form[id*="filter"],
  body.eno-mobile-parametry-open form[class*="filter"],
  body.eno-mobile-parametry-open .category-filter,
  body.eno-mobile-parametry-open .category-filters,
  body.eno-mobile-parametry-open .sidebar .filters,
  body.eno-mobile-parametry-open .sidebar-inner .filters {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    height: auto !important;
    max-height: none !important;
    min-height: 0 !important;
    margin-bottom: 18px !important;
    overflow: visible !important;
  }
}



/* =================================================
   ENO – KOŠÍK MOBILE FINAL
   Ostatní zákazníci také nakoupili – cena a DETAIL pod sebou
================================================= */

@media (max-width: 767px) {

  /* bezpečně trefit košík / objednávkový proces podle body class */
  body[class*="kosik"] .products-block .product .p-bottom,
  body[class*="cart"] .products-block .product .p-bottom,
  body[class*="ordering"] .products-block .product .p-bottom,
  body[class*="checkout"] .products-block .product .p-bottom,
  body[class*="kosik"] .related-products .product .p-bottom,
  body[class*="cart"] .related-products .product .p-bottom,
  body[class*="ordering"] .related-products .product .p-bottom,
  body[class*="checkout"] .related-products .product .p-bottom,
  body[class*="kosik"] .cart-related-products .product .p-bottom,
  body[class*="cart"] .cart-related-products .product .p-bottom,
  body[class*="ordering"] .cart-related-products .product .p-bottom,
  body[class*="checkout"] .cart-related-products .product .p-bottom {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    width: 100% !important;
    max-width: 100% !important;
    gap: 6px !important;
    margin: 0 !important;
    padding-top: 8px !important;
    transform: none !important;
  }

  /* řádek offer přepnout z řádku na sloupec */
  body[class*="kosik"] .products-block .product .p-bottom [data-micro="offer"],
  body[class*="cart"] .products-block .product .p-bottom [data-micro="offer"],
  body[class*="ordering"] .products-block .product .p-bottom [data-micro="offer"],
  body[class*="checkout"] .products-block .product .p-bottom [data-micro="offer"],
  body[class*="kosik"] .related-products .product .p-bottom [data-micro="offer"],
  body[class*="cart"] .related-products .product .p-bottom [data-micro="offer"],
  body[class*="ordering"] .related-products .product .p-bottom [data-micro="offer"],
  body[class*="checkout"] .related-products .product .p-bottom [data-micro="offer"],
  body[class*="kosik"] .cart-related-products .product .p-bottom [data-micro="offer"],
  body[class*="cart"] .cart-related-products .product .p-bottom [data-micro="offer"],
  body[class*="ordering"] .cart-related-products .product .p-bottom [data-micro="offer"],
  body[class*="checkout"] .cart-related-products .product .p-bottom [data-micro="offer"] {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    gap: 7px !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    transform: none !important;
  }

  /* cena nahoře */
  body[class*="kosik"] .products-block .product .p-bottom .prices,
  body[class*="cart"] .products-block .product .p-bottom .prices,
  body[class*="ordering"] .products-block .product .p-bottom .prices,
  body[class*="checkout"] .products-block .product .p-bottom .prices,
  body[class*="kosik"] .related-products .product .p-bottom .prices,
  body[class*="cart"] .related-products .product .p-bottom .prices,
  body[class*="ordering"] .related-products .product .p-bottom .prices,
  body[class*="checkout"] .related-products .product .p-bottom .prices,
  body[class*="kosik"] .cart-related-products .product .p-bottom .prices,
  body[class*="cart"] .cart-related-products .product .p-bottom .prices,
  body[class*="ordering"] .cart-related-products .product .p-bottom .prices,
  body[class*="checkout"] .cart-related-products .product .p-bottom .prices {
    order: 1 !important;
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    flex: none !important;
    margin: 0 !important;
    padding: 0 !important;
    text-align: left !important;
    transform: none !important;
  }

  body[class*="kosik"] .products-block .product .p-bottom .price-final,
  body[class*="cart"] .products-block .product .p-bottom .price-final,
  body[class*="ordering"] .products-block .product .p-bottom .price-final,
  body[class*="checkout"] .products-block .product .p-bottom .price-final,
  body[class*="kosik"] .related-products .product .p-bottom .price-final,
  body[class*="cart"] .related-products .product .p-bottom .price-final,
  body[class*="ordering"] .related-products .product .p-bottom .price-final,
  body[class*="checkout"] .related-products .product .p-bottom .price-final,
  body[class*="kosik"] .cart-related-products .product .p-bottom .price-final,
  body[class*="cart"] .cart-related-products .product .p-bottom .price-final,
  body[class*="ordering"] .cart-related-products .product .p-bottom .price-final,
  body[class*="checkout"] .cart-related-products .product .p-bottom .price-final {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    text-align: left !important;
    transform: none !important;
    white-space: nowrap !important;
  }

  /* tlačítko pod cenu */
  body[class*="kosik"] .products-block .product .p-bottom .p-tools,
  body[class*="cart"] .products-block .product .p-bottom .p-tools,
  body[class*="ordering"] .products-block .product .p-bottom .p-tools,
  body[class*="checkout"] .products-block .product .p-bottom .p-tools,
  body[class*="kosik"] .related-products .product .p-bottom .p-tools,
  body[class*="cart"] .related-products .product .p-bottom .p-tools,
  body[class*="ordering"] .related-products .product .p-bottom .p-tools,
  body[class*="checkout"] .related-products .product .p-bottom .p-tools,
  body[class*="kosik"] .cart-related-products .product .p-bottom .p-tools,
  body[class*="cart"] .cart-related-products .product .p-bottom .p-tools,
  body[class*="ordering"] .cart-related-products .product .p-bottom .p-tools,
  body[class*="checkout"] .cart-related-products .product .p-bottom .p-tools {
    order: 2 !important;
    display: flex !important;
    justify-content: flex-start !important;
    align-items: flex-start !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    flex: none !important;
    margin: 0 !important;
    padding: 0 !important;
    transform: none !important;
  }

  body[class*="kosik"] .products-block .product .p-bottom .p-tools a,
  body[class*="kosik"] .products-block .product .p-bottom .p-tools button,
  body[class*="kosik"] .products-block .product .p-bottom .p-tools input,
  body[class*="cart"] .products-block .product .p-bottom .p-tools a,
  body[class*="cart"] .products-block .product .p-bottom .p-tools button,
  body[class*="cart"] .products-block .product .p-bottom .p-tools input,
  body[class*="ordering"] .products-block .product .p-bottom .p-tools a,
  body[class*="ordering"] .products-block .product .p-bottom .p-tools button,
  body[class*="ordering"] .products-block .product .p-bottom .p-tools input,
  body[class*="checkout"] .products-block .product .p-bottom .p-tools a,
  body[class*="checkout"] .products-block .product .p-bottom .p-tools button,
  body[class*="checkout"] .products-block .product .p-bottom .p-tools input,
  body[class*="kosik"] .related-products .product .p-bottom .p-tools a,
  body[class*="kosik"] .related-products .product .p-bottom .p-tools button,
  body[class*="kosik"] .related-products .product .p-bottom .p-tools input,
  body[class*="cart"] .related-products .product .p-bottom .p-tools a,
  body[class*="cart"] .related-products .product .p-bottom .p-tools button,
  body[class*="cart"] .related-products .product .p-bottom .p-tools input,
  body[class*="ordering"] .related-products .product .p-bottom .p-tools a,
  body[class*="ordering"] .related-products .product .p-bottom .p-tools button,
  body[class*="ordering"] .related-products .product .p-bottom .p-tools input,
  body[class*="checkout"] .related-products .product .p-bottom .p-tools a,
  body[class*="checkout"] .related-products .product .p-bottom .p-tools button,
  body[class*="checkout"] .related-products .product .p-bottom .p-tools input {
    width: 108px !important;
    min-width: 108px !important;
    max-width: 108px !important;
    height: 28px !important;
    min-height: 28px !important;
    padding: 6px 10px !important;
    margin: 0 !important;
    font-size: 10.5px !important;
    transform: none !important;
  }
}