
.product-card{
  background:#ffffff;
  border:1px solid #e8e0f0;
  border-radius:2px;
  display:flex;
  flex-direction:column;
  text-decoration:none;
  color:inherit;
  overflow:hidden;
  transition:transform .22s,box-shadow .22s,border-color .22s;
}
.product-card:hover{
  transform:translateY(-3px);
  border-color:#004B8D;
  box-shadow:0 10px 32px rgba(0,75,141,0.14);
}
.card-img-wrap{
  aspect-ratio:1/1;
  display:flex;
  align-items:center;
  justify-content:center;
}
.card-img-wrap img{
  max-width:100%;
  height:auto;
}
.card-body{
  padding:18px;
  display:flex;
  flex-direction:column;
  flex:1;
}
.card-model{
  font-weight:900;
  font-size:24px;
  margin-bottom:3px;
}
.card-name{
  font-size:12px;
  color:#8a7aa0;
  margin-bottom:12px;
}
.card-specs{
  display:flex;
  flex-direction:column;
  gap:5px;
  padding-top:12px;
  border-top:1px solid #e8e0f0;
  margin-bottom:14px;
}
.card-spec{
  display:flex;
  justify-content:space-between;
  font-size:12px;
}
.card-cta{
  margin-top:auto;
  display:flex;
  align-items:center;
  gap:8px;
  font-size:11px;
  font-weight:700;
  text-transform:uppercase;
  color:#004B8D;
}
.card-cta-line{
  width:18px;
  height:1.5px;
  background:#004B8D;
}
