.card{
  background-color: var(--gray);
  border-radius: 20px;
  color: white;
  overflow: hidden;
  box-shadow: 0 10px 22px rgba(0,0,0,.28);
  transition: transform .25s ease, box-shadow .25s ease;
  cursor: pointer;

}

.card:hover{
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(0,0,0,.35);
}

.image-container{
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
}

.product-image{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.quick-view-overlay{
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0,0,0,.75);
  padding: 10px 24px;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  font-size: .95rem;
  font-weight: bold;
  letter-spacing: .05em;
}

.product-info{
  padding: 14px 18px 20px;
  text-align: center;
}

