.ProductItem {
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.15);
}

.ProductItem-picture {
  position: relative;
  margin-bottom: var(--spaceSm);
}

.ProductItem-picture img {
  display: block;
  width: 100%;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

.ProductItem-picture:hover .ProductItem-hover {
  opacity: 1;
}

.ProductItem-overlay {
  position: absolute;
  bottom: -2px;
  width: calc(100% + 1px);
  height: auto;
  left: 0;
}

.ProductItem-hover {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: hsla(var(--colorBrand-h), calc(var(--colorBrand-s) * 1%), calc(var(--colorBrand-l) * 1%), 0.7);
  opacity: 0;
  transition: var(--animationBase);
}

.ProductItem-hoverBtn {
  border: 1px solid hsl(0, 0%, calc((var(--colorBrand-l) - 60) * -100%));
  color: hsl(0, 0%, calc((var(--colorBrand-l) - 60) * -100%));
  display: flex;
  align-items: center;
  font-size: var(--textMd);
  padding: var(--spaceXxxs) var(--spaceSm);
  transition: var(--animationBase);
}

.ProductItem-hoverBtn:hover {
  background: hsl(0, 0%, calc((var(--colorBrand-l) - 60) * -100%));
  color: var(--colorBrand);
}

.ProductItem-hoverBtn svg {
  margin-right: var(--spaceXs);
}

.ProductItem-title {
  font-size: var(--textLg);
}

.ProductItem-title a {
  color: inherit;
}

.ProductItem-perex {
  margin-bottom: var(--spaceMd);
  font-size: var(--textRg);
}

.ProductItem-perex:empty {
  display: none;
}

.ProductItem-content {
  padding: 0 var(--spaceMd) var(--spaceLg);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.ProductItem-button {
  margin-top: auto;
}

/*# sourceMappingURL=produktyItem.min.css.map */
