#nezni-product-card-grid{
  width:100%;
  font-family:"Inter", Arial, sans-serif;
  padding:30px 0;
}

#nezni-product-card-grid,
#nezni-product-card-grid *{
  box-sizing:border-box;
}

#nezni-product-card-grid .nz-product-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}

#nezni-product-card-grid .nz-product-card{
  background:#fff;
  border:1px solid #E6E8EC;
  border-radius:9px;
  overflow:hidden;
  text-decoration:none;
  display:flex;
  flex-direction:column;
  box-shadow:
    0 1px 2px rgba(33,35,38,.02),
    0 8px 24px rgba(33,35,38,.045);
  transition:
    transform .35s cubic-bezier(.16,1,.3,1),
    box-shadow .35s cubic-bezier(.16,1,.3,1),
    border-color .35s ease;
}

#nezni-product-card-grid .nz-product-card:hover{
  transform:translateY(-5px);
  border-color:rgba(0,158,227,.18);
  box-shadow:
    0 2px 6px rgba(33,35,38,.04),
    0 18px 42px rgba(33,35,38,.09);
}

#nezni-product-card-grid .nz-product-image{
  width:100%;
  aspect-ratio:1600/1400;
  overflow:hidden;
  background:#f5f6f7;
}

#nezni-product-card-grid .nz-product-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transition:transform .35s ease;
}

#nezni-product-card-grid .nz-product-card:hover .nz-product-image img{
  transform:scale(1.012);
}

#nezni-product-card-grid .nz-product-body{
  padding:20px 22px 22px;
  background:#fff;
  display:flex;
  flex-direction:column;
  flex:1;
}

#nezni-product-card-grid .nz-product-code{
  color:#7A7F87;
  font-size:12px;
  font-weight:500;
  letter-spacing:.08em;
  text-transform:uppercase;
  line-height:1;
  margin-bottom:9px;
}

#nezni-product-card-grid .nz-product-title{
  color:#212326;
  font-size:20px;
  line-height:1.3;
  font-weight:600;
  letter-spacing:-.35px;
  margin:0 0 9px;
  white-space:nowrap;
}

#nezni-product-card-grid .nz-product-desc{
  color:#575656;
  font-size:14px;
  line-height:1.55;
  font-weight:400;
  margin:0 0 18px;
}

#nezni-product-card-grid .nz-product-link{
  margin-top:auto;
  color:#009EE3;
  font-size:14px;
  font-weight:500;
  text-decoration:none;
  line-height:1;
}

#nezni-product-card-grid .nz-product-link span{
  display:inline-block;
  transition:transform .22s ease;
}

#nezni-product-card-grid .nz-product-card:hover .nz-product-link span{
  transform:translateX(3px);
}

@media(max-width:1024px){
  #nezni-product-card-grid .nz-product-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:767px){
  #nezni-product-card-grid{
    padding:24px 0;
  }

  #nezni-product-card-grid .nz-product-grid{
    grid-template-columns:1fr;
    gap:22px;
  }

  #nezni-product-card-grid .nz-product-title{
    font-size:19px;
  }
}

.nezni-pm-frontend-disabled{
  padding:12px 14px;
  border:1px dashed #c3c4c7;
  background:#fff;
  color:#646970;
  font:13px/1.4 Arial, sans-serif;
}
