/* === Twoje istniejące === */
#logo img{
    height: 50px !important;
}

#projector_price_value{
    color: red !important;
}

span.label.--disable {
    font-size: 0 !important;      /* ukryj oryginalny tekst */
    color: #d00 !important;       /* kolor ramki/tekstu */
    border-color: #d00 !important;
}
span.label.--disable::after {
    content: "Sprzedane" !important;
    font-size: 12px !important;
    font-weight: 600;
    text-transform: uppercase;
    color: #d00 !important;
}

/* (opcjonalnie) drobne wyrównanie pionu w kapslu, gdy font-size:0 bywa kapryśny */
span.label.--disable::after{
    line-height: 1.2;
}

/* DESKTOP: 4 banery w szeregu, siatka wyśrodkowana */
.grid_templateY{
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(4, auto);
  justify-content: center;        /* środek */
}

/* TABLET */
@media (max-width: 978px){
  .grid_templateY{
    grid-template-columns: repeat(2, auto);
    justify-content: center;
  }
}

/* MOBILE: 1 kolumna, kafel na środku */
@media (max-width: 756px){
  .grid_templateY{
    grid-template-columns: 1fr;
    justify-content: center;      /* środek siatki */
    justify-items: center;        /* środek elementów */
  }
  .grid_templateY > *{
    width: min(100%, 320px);      /* żeby „siedziały” centralnie */
  }
  .grid_templateY img{
    width: 100%;
    height: auto;
    display: block;
  }
}
.product_name__block.--description {
    font-size: 0 !important; /* ukrycie oryginalnej treści */
}

.product__prices.--omnibus-short .price.--max {
  display: block !important;
}
.projector_prices__lowest_price,
.price.--omnibus,
.omnibus_price {
  display: none !important;
}
#projector_form .projector_prices.--omnibus-short .projector_prices__maxprice_wrapper {
  display: block;
}
/* Upewniamy się, że karta produktu jest pozycjonowana */
#search .product {
  position: relative;
}

/* Etykieta BLACK WEEK w prawym górnym rogu */
#search .product::before {
  content: 'BLACK WEEK';
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 110;               /* wyżej niż .product__compare (ma 100) */
  
  padding: 0.35rem 0.9rem;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  
  display: inline-flex;
  align-items: center;
  justify-content: center;

  background: #000;
  color: #fff;
  border-radius: 999px;       /* „button” w formie pigułki */
  box-shadow: 0 0.25rem 0.7rem rgba(0, 0, 0, 0.35);
}

/* Delikatny efekt po najechaniu na kartę produktu (opcjonalnie) */
#search .product:hover::before {
  transform: translateY(-1px);
  box-shadow: 0 0.4rem 1rem rgba(0, 0, 0, 0.45);
}

/* ============================== */
/*  BLACK WEEK – WSZYSTKIE PRODUKTY  */
/* ============================== */

/* Ustawiamy pozycjonowanie dla produktów w sliderze */
.products__wrapper .product {
  position: relative;
}

/* Etykieta BLACK WEEK – slider (taki sam wygląd jak w #search) */
.products__wrapper .product::before {
  content: 'BLACK WEEK';
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 110;

  padding: 0.35rem 0.9rem;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  background: #000;
  color: #fff;
  border-radius: 999px;
  box-shadow: 0 0.25rem 0.7rem rgba(0, 0, 0, 0.35);
}

/* Hover efekt (opcjonalnie, tak jak wcześniej) */
.products__wrapper .product:hover::before {
  transform: translateY(-1px);
  box-shadow: 0 0.4rem 1rem rgba(0, 0, 0, 0.45);
}


/* ---------------------------------- */
/* Jeśli chcesz, mogę też wyłączyć tę
   etykietę dla produktów, które mają
   już tag "Promocja" lub "Okazja" */
/* ---------------------------------- */
@media (min-width: 979px) {
  .main_slider__item picture,
  .main_slider__item img {
    padding-left: 80px;
    padding-right: 80px;
    height: auto;
    object-fit: contain; /* nie ucina */
    box-sizing: border-box;
  }
}