.products{
  gap:24px 18px;
  align-items:stretch;
}

.product-card{
  height:100%;
  padding:12px;
  overflow:hidden;
  border:1px solid #e1ebe8;
  border-radius:16px;
  background:#fff;
  box-shadow:0 8px 26px rgba(29,104,113,.07);
  transition:transform .22s ease,border-color .22s ease,box-shadow .22s ease;
}

.product-card:hover{
  transform:translateY(-4px);
  border-color:#bfdcdd;
  box-shadow:0 16px 34px rgba(29,104,113,.14);
}

.product-card>a{
  display:flex;
  flex:1 1 auto;
  flex-direction:column;
}

.product-picture{
  position:relative;
  height:270px;
  border:1px solid #edf2f0;
  border-radius:12px;
  background:linear-gradient(145deg,#f8faf9 0%,#eef4f2 100%);
}

.product-picture::after{
  content:"";
  position:absolute;
  inset:auto 14% 8px;
  height:20px;
  border-radius:50%;
  background:rgba(24,64,67,.09);
  filter:blur(13px);
  pointer-events:none;
}

.product-picture img{
  position:relative;
  z-index:1;
  width:88%;
  height:88%;
  transition:transform .3s ease;
}

.product-card:hover .product-picture img{
  transform:scale(1.045);
}

.product-card h3{
  margin:15px 3px 6px;
  min-height:44px;
  color:#183436;
  font-size:16px;
  font-weight:700;
  line-height:1.38;
  transition:color .2s ease;
}

.product-card>a:hover h3{
  color:var(--green);
}

.product-card .price{
  margin:6px 3px 0;
  color:#126d78;
  font-size:21px;
  font-weight:800;
  line-height:1.2;
}

.product-card .stock{
  display:flex;
  align-items:center;
  gap:7px;
  width:max-content;
  margin:7px 3px 13px;
  padding:5px 9px;
  border-radius:999px;
  background:#eaf7f1;
  color:#27765b;
  font-size:11px;
  font-weight:700;
  line-height:1;
}

.product-card .stock::before{
  content:"";
  width:7px;
  height:7px;
  flex:0 0 7px;
  border-radius:50%;
  background:#42aa7b;
  box-shadow:0 0 0 3px rgba(66,170,123,.12);
}

.product-card .stock.out{
  background:#fff0f1;
  color:#b44954;
}

.product-card .stock.out::before{
  background:#cf5862;
  box-shadow:0 0 0 3px rgba(207,88,98,.13);
}

.product-card>button{
  width:100%;
  height:44px;
  margin-top:auto;
  border-radius:10px;
  background:linear-gradient(135deg,#2c98a4,#238590);
  box-shadow:0 7px 16px rgba(42,143,155,.2);
  font-size:11px;
  letter-spacing:.035em;
  transition:transform .18s ease,background .18s ease,box-shadow .18s ease;
}

.product-card>button:hover{
  transform:translateY(-1px);
  background:linear-gradient(135deg,#247f89,#1b6972);
  box-shadow:0 9px 20px rgba(29,104,113,.26);
}

.product-card>button:active{
  transform:translateY(0);
}

.product-card>button:disabled{
  cursor:not-allowed;
  background:#b5c2bf;
  box-shadow:none;
}

.product-card .badge{
  top:20px;
  left:20px;
  padding:6px 10px;
  border-radius:999px;
  box-shadow:0 5px 14px rgba(255,159,39,.25);
}

.products.list-view .product-card{
  border-radius:14px;
  box-shadow:0 7px 22px rgba(29,104,113,.06);
}

.products.list-view .product-card:hover{
  transform:translateY(-2px);
}

.products.list-view .product-picture{
  border-radius:10px;
}

.products.list-view .product-card .stock{
  margin:7px 0 10px auto;
}

.products.list-view .product-card>button{
  height:40px;
}

@media(max-width:620px){
  .products,.products-4{
    gap:14px 10px;
  }

  .product-card{
    padding:8px;
    border-radius:12px;
    box-shadow:0 6px 18px rgba(29,104,113,.07);
  }

  .product-card:hover{
    transform:none;
  }

  .product-picture{
    height:165px;
    border-radius:9px;
  }

  .product-picture img{
    width:92%;
    height:92%;
  }

  .product-card h3{
    min-height:50px;
    margin:11px 2px 4px;
    font-size:13px;
    line-height:1.32;
  }

  .product-card .price{
    margin-left:2px;
    font-size:18px;
  }

  .product-card .stock{
    margin:6px 2px 10px;
    padding:4px 7px;
    font-size:9px;
  }

  .product-card>button{
    height:39px;
    border-radius:8px;
    font-size:10px;
  }

  .product-card .badge{
    top:13px;
    left:13px;
  }

  .products.list-view .product-card .stock{
    display:none;
  }
}
