@charset "UTF-8";
.block-product-grid.container-with-bg {
  position: relative;
  padding-bottom: 30px;
  z-index: 10;
}
@media (min-width: 768px) {
  .block-product-grid.container-with-bg {
    padding-bottom: 60px;
  }
}
.block-product-grid.container-with-bg:after {
  content: " ";
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 778px;
  height: 800px;
  background-image: url("../../../img/layout/bg-unten_schwarz.svg");
  background-repeat: no-repeat;
  z-index: 1;
}
.block-product-grid .bg-black {
  background-color: #101010;
}
.block-product-grid .product-highlight--image-blur {
  position: absolute;
  top: 0;
  left: -13px;
  width: 100%;
  height: 40px;
  z-index: 10;
  pointer-events: none;
  /* Tło z gradientem */
  background: -webkit-gradient(linear, left top, left bottom, from(var(--bgColor)), color-stop(60%, rgba(16, 16, 16, 0.1)), to(transparent));
  background: linear-gradient(to bottom, var(--bgColor) 0%, rgba(16, 16, 16, 0.1) 60%, transparent 100%);
  -webkit-transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-transform: scale(1);
          transform: scale(1);
}
@media (min-width: 768px) {
  .block-product-grid .product-highlight--image-blur {
    background: -webkit-gradient(linear, left top, left bottom, from(var(--bgColor)), color-stop(60%, rgba(16, 16, 16, 0.1)), to(transparent));
    background: linear-gradient(to bottom, var(--bgColor) 0%, rgba(16, 16, 16, 0.1) 60%, transparent 100%);
    height: 80px;
  }
}
@media (min-width: 992px) {
  .block-product-grid .product-highlight--image-blur {
    left: -1px;
    width: 420px;
    height: 100%;
    background: -webkit-gradient(linear, left top, right top, from(var(--bgColor)), color-stop(45%, rgba(16, 16, 16, 0.1)), to(transparent));
    background: linear-gradient(to right, var(--bgColor) 0%, rgba(16, 16, 16, 0.1) 45%, transparent 100%);
  }
}
.block-product-grid .product-highlight--image-blur {
  /* Hover effect - blur się powiększa i zasłania cały obrazek */
}
.product-grid--link:hover .block-product-grid .product-highlight--image-blur {
  -webkit-transform: scale(3);
          transform: scale(3);
  opacity: 0.9;
  background: linear-gradient(45deg, var(--bgColor) 0%, rgba(16, 16, 16, 0.8) 50%, var(--bgColor) 100%);
  -webkit-filter: blur(2px);
          filter: blur(2px);
}
@media (min-width: 992px) {
  .product-grid--link:hover .block-product-grid .product-highlight--image-blur {
    -webkit-transform: scale(2.5);
            transform: scale(2.5);
    background: linear-gradient(45deg, var(--bgColor) 0%, rgba(16, 16, 16, 0.8) 50%, var(--bgColor) 100%);
  }
}
.block-product-grid .product-highlight--small-image-blur {
  position: absolute;
  top: 26%;
  left: 0;
  width: 100%;
  height: 285px;
  z-index: 11;
  pointer-events: none;
  /* Tło z gradientem */
  background: -webkit-gradient(linear, left top, left bottom, from(var(--bgColor)), color-stop(30%, var(--bgColor)), color-stop(60%, rgba(16, 16, 16, 0.1)), to(transparent));
  background: linear-gradient(to bottom, var(--bgColor) 0%, var(--bgColor) 30%, rgba(16, 16, 16, 0.1) 60%, transparent 100%);
  -webkit-transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-transform: scale(1);
          transform: scale(1);
  /* Hover effect - blur się powiększa i zasłania cały obrazek */
}
.product-grid--link:hover .block-product-grid .product-highlight--small-image-blur {
  -webkit-transform: scale(2.5);
          transform: scale(2.5);
  opacity: 0.9;
  background: linear-gradient(45deg, var(--bgColor) 0%, rgba(16, 16, 16, 0.8) 50%, var(--bgColor) 100%);
  -webkit-filter: blur(2px);
          filter: blur(2px);
}
@media (min-width: 992px) {
  .product-grid--link:hover .block-product-grid .product-highlight--small-image-blur {
    -webkit-transform: scale(2);
            transform: scale(2);
    background: linear-gradient(45deg, var(--bgColor) 0%, rgba(16, 16, 16, 0.8) 50%, var(--bgColor) 100%);
  }
}
.block-product-grid {
  /* Dodatkowy efekt dla całego kafelka */
}
.block-product-grid .product-grid--link {
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
}
.block-product-grid .product-grid--link:hover {
  /* Efekt dla obrazka */
}
.block-product-grid .product-grid--link:hover img {
  -webkit-transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  -webkit-filter: brightness(0.8);
          filter: brightness(0.8);
}
.block-product-grid .product-grid--link {
  /* Dodajemy transition dla obrazka również poza hover */
}
.block-product-grid .product-grid--link img {
  -webkit-transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.block-product-grid {
  /* Efekt hover na małym kafelku - nowe podejście z img */
}
.block-product-grid .product-grid--link:hover .teaser-small-bg-img img {
  -webkit-transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  -webkit-filter: brightness(0.8);
          filter: brightness(0.8);
}
.block-product-grid .teaser-small-bg-img img {
  -webkit-transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  /* Responsywne dopasowanie obrazka */
}
@media (max-width: 991px) {
  .block-product-grid .teaser-small-bg-img img {
    -o-object-position: bottom;
       object-position: bottom;
  }
}
/*# sourceMappingURL=product-grid.css.map */
