@charset "UTF-8";
.product-highlight .bg-black {
  background-color: #101010;
}
.product-highlight .product-highlight--image-blur {
  position: absolute;
  top: 0;
  left: -1px;
  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-new)), color-stop(60%, rgba(16, 16, 16, 0.1)), to(transparent));
  background: linear-gradient(to bottom, var(--bgColor-new) 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) {
  .product-highlight .product-highlight--image-blur {
    background: -webkit-gradient(linear, left top, left bottom, from(var(--bgColor-new)), color-stop(60%, rgba(16, 16, 16, 0.1)), to(transparent));
    background: linear-gradient(to bottom, var(--bgColor-new) 0%, rgba(16, 16, 16, 0.1) 60%, transparent 100%);
    height: 80px;
  }
}
@media (min-width: 992px) {
  .product-highlight .product-highlight--image-blur {
    left: -1px;
    width: 80px;
    height: 100%;
    background: -webkit-gradient(linear, left top, right top, from(var(--bgColor-new)), color-stop(60%, rgba(16, 16, 16, 0.1)), to(transparent));
    background: linear-gradient(to right, var(--bgColor-new) 0%, rgba(16, 16, 16, 0.1) 60%, transparent 100%);
  }
}
.product-highlight .product-highlight--image-blur {
  /* Hover effect - blur się powiększa i zasłania cały obrazek */
}
a:hover .product-highlight .product-highlight--image-blur {
  -webkit-transform: scale(3);
          transform: scale(3);
  opacity: 0.9;
  background: linear-gradient(45deg, var(--bgColor-new) 0%, rgba(16, 16, 16, 0.8) 50%, var(--bgColor-new) 100%);
  -webkit-filter: blur(2px);
          filter: blur(2px);
}
@media (min-width: 992px) {
  a:hover .product-highlight .product-highlight--image-blur {
    -webkit-transform: scale(2.5);
            transform: scale(2.5);
    background: linear-gradient(45deg, var(--bgColor-new) 0%, rgba(16, 16, 16, 0.8) 50%, var(--bgColor-new) 100%);
  }
}
.product-highlight {
  /* Dodatkowy efekt dla całego kafelka */
}
.product-highlight a {
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.product-highlight a:hover {
  /* Efekt dla obrazka */
}
.product-highlight a: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);
}
.product-highlight a {
  /* Dodajemy transition dla obrazka również poza hover */
}
.product-highlight a 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);
}

.acf-block-preview .c-title::after {
  width: 0;
  height: 0;
}
/*# sourceMappingURL=product-highlight.css.map */
