.product {
    position: relative;
    display: flex;
    padding: 20px;
    height: inherit;
    align-items: center;
    gap: min(2.5rem,5vw);
    flex-direction: column;
    border-radius: min(30px,4vw);
    width: max(min(400px,85vw),30%);
    background-color: var(--clwhite);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
.product .card-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product .brand-logo {width: min(78px,20vw);}
/* .product .icon-button {
  width: 40px;
  border: none;
  height: 40px;
  display: flex;
  cursor: pointer;
  font-size: 18px;
  color: #00aabb;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background-color: var(--cLiceBlue);
} */
.product .image-wrapper {
    display: flex;
    overflow: visible;
    aspect-ratio: 1/1;
    border-radius: 50%;
    align-items: center;
    width: min(311px,80%);
    height: min(311px,80%);
    justify-content: center;
    margin-bottom: min(1rem,3vw);
    background-color: var(--cLiceBlue);
}
.product .image-wrapper .product-image {
    object-fit: contain;
    width: 42%;
    aspect-ratio: 1/1;
    transition: all .5s;
    object-position: bottom center;
    margin-block: min(1.5rem,4vw) calc(min(1.5rem,4vw) * -1);
}
.product:hover .image-wrapper .product-image {
    width: 38%;
    rotate: -7deg;
    margin-block: 0;
    object-position: center;
}
.product h4 {font-size: min(28px,5vw);}
/* .product .product-title {
  font-size: 1.2rem;
  font-weight: bold;
  color: #007377;
  text-align: center;
} */

.product .product-tag {
  background: #3a3a3a;
  border-radius: 20px;
  padding: 8px 20px;
  font-size: 0.9rem;
  text-align: center;
}
color: var(--clwhite);