.contact-actions {
    display: flex;
    justify-content: center;
    gap: 50px;
    padding-block: 60px;
    flex-wrap: wrap;
}

.contact-icon-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    transition: filter 0.1s ease-in;
}

.contact-icon-wrap img {
    width: 40px;
}

.contact-icon-wrap a {
    font-size: 20px;
}

.contact-icon-wrap:hover{
    filter: brightness(2) drop-shadow(0px 0px 4px rgba(252,248,242,0.3));
}

.product-img {
  aspect-ratio: 4 / 4; 
  background-color: #f3f7f6; 
  border-radius: 1rem; 
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.product-img img {
  width: 100%; 
background-color: #fff;
  padding: 20px;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

article.product-card:hover .product-img img {
  transform: scale(1.05);
}