<style>
/* === LINK KOLEM OBRÁZKU MUSÍ BÝT BLOCK === */
.product .custom-image-top {
  display: block !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* === OBRÁZEK FULL WIDTH === */
.product .custom-image-top img {
  width: 100% !important;
  display: block !important;
}





/* === MEZERY MEZI PRODUKTY (SPRÁVNĚ PŘES GRID) === */
.products .col-xs-6,
.products .col-sm-4,
.products .col-md-3,
.products .col-lg-3 {
  padding: 10px !important;
}

.products {
  margin-left: -10px !important;
  margin-right: -10px !important;
}


/* === KARTA === */
.product {
  background: #d9d9d9 !important;
  border-radius: 14px !important;
  overflow: hidden !important; /* 👈 KLÍČOVÉ */
  padding: 0 !important; /* 👈 odstranění okrajů */
  border: 1px solid #eee !important;
  box-shadow: 0 12px 30px rgba(0,0,0,0.12) !important;
  transition: 0.2s;
  position: relative;
}

.product:hover {
  border-color: #fa5012 !important;
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.18) !important;
}


/* === ODSTRANĚNÍ PRUHŮ NAD OBRÁZKEM === */
.product .p-in,
.product .p {
  background: transparent !important;
}


/* === OBRÁZEK === */
.product .p-image {
  margin: 0 !important;
  background: transparent !important;
}

.product .p-image img {
  width: 100%;
  display: block;
}


/* === OBSAH POD OBRÁZKEM === */
.product .p {
  padding: 10px !important; /* 👈 vrácení paddingu jen textu */
  display: flex;
  flex-direction: column;
  height: 100%;
}


/* === KOLEČKO ORANŽOVÉ === */
.product .flag {
  filter: hue-rotate(-90deg) saturate(10) brightness(1) !important;
}

.product .flag span {
  color: #fff !important;
  filter: none !important;
}


/* === SKRYTÍ MNOŽSTVÍ === */
.product .quantity,
.product .amount,
.product .number-input {
  display: none !important;
}


/* === NÁZEV === */
.product .name,
.product .name a {
  text-align: left !important;
  font-weight: 600 !important;
  display: block !important;
  margin-top: 4px !important;
}


/* === SKLADEM === */
.product .availability {
  font-size: 12px;
  color: #fa5012;
}


/* === SPODNÍ ŘÁDEK === */
.product .p-bottom {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 8px;
  margin-top: auto;
}


/* === CENA === */
.product .price,
.product .price-final,
.product .price strong,
.product .price-final strong,
.product .price span,
.product .price-final span {
  font-size: 14px !important;
  font-weight: 600 !important;
  color: #fa5012 !important;
  -webkit-text-fill-color: #fa5012 !important;
}


/* === SCHOVÁME DEFAULT TLAČÍTKA === */
.product .buttons,
.product .p-tools {
  display: none !important;
}


/* === KOŠÍK === */
.product .custom-cart {
  position: absolute;
  bottom: 12px;
  right: 12px;

  width: 34px;
  height: 34px;

  background: #fff;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow: 0 4px 10px rgba(0,0,0,0.12);
  cursor: pointer;
}

.product .custom-cart:hover {
  background: #fa5012;
}

.product .custom-cart:hover svg {
  stroke: #fff;
}

.product .custom-cart svg {
  width: 16px;
  height: 16px;
  stroke: #fa5012;
}


@media screen and (min-width: 768px) {
#header::after{background-color: #fa5012;} /* BARVA POZADÍ MENU */
.navigation-in {background-color: transparent;}
.navigation-in > ul > li > a, .submenu-arrow::after {color: #fff;} /* BARVA TEXTU V MENU */
.menu-helper::after {color: #fff;} /* BARVA HAMBURGERU */
}

.flag-gift {
    background: linear-gradient(135deg, #ffb703, #fb8500) !important;
    color: #000 !important;
    bostylerder-radius: 6px;
    font-weight: 600;






</style>