/*<<< card3 component */
._card3-list {
  display: grid;
  gap: 2.8rem;
  grid-template-columns: 1fr;
}

@media(min-width:768px) {
  ._card3-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(min-width:1024px) {
  ._card3-list {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media(min-width:1190px) {
  ._card3-list {
    grid-template-columns: repeat(4, 1fr);
  }
}

._card3 {
  border: 1px solid #e7e7e7;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 2rem;
}

._card3:hover ._card3__image img {
  scale: 1.2;
}

._card3__image {
  overflow: hidden;
  aspect-ratio: 4/3;
  /* height: 24rem; */
  position: relative;
}

._card3__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: .4s all ease-in-out;
}

._card3__infos {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

._card3__title {
  display: flex;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1;
  min-height: 4rem;
  margin-bottom: 1.6rem;
}

._card3__price {
  display: flex;
  align-items: end;
  gap: 2rem;
  margin-bottom: 1.6rem;
}

._card3__price__current {
  font-weight: bold;
  font-size: 1.6rem;
}

._card3__price__old {
  font-weight: normal;
  font-size: 1.4rem;
  position: relative;
}

._card3__price__old::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: red;
  left: 0;
  top: 50%;
  rotate: -6deg;
}

._card3__description {
  font-size: 1.5rem;
  min-height: 8.2rem;
}

._card3__tag {
  background-color: rgb(255, 255, 255, .85);
  color: #252525;
  position: absolute;
  left: 2rem;
  top: 2rem;
  border-radius: 50px;
  padding: 0 1.2rem;
  z-index: 2;
  line-height: 1.6;
  font-weight: normal;
}

._card3__button {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  color: #252525;
  border: 1px solid #e7e7e7;
  width: fit-content;
  font-size: 1.6rem;
  font-weight: 500;
  padding: 0 2.4rem;
  height: 5.2rem;
  border-radius: 2rem;
  position: relative;
  overflow: hidden;
}

._card3__button:hover {
  color: #fff;
}

._card3__button::after {
  content: '';
  position: absolute;
  width: 110%;
  height: 210%;
  background-color: rgb(51, 51, 51);
  z-index: 0;
  bottom: -215%;
  transition: .45s all ease-in-out;
  border-radius: 50%;
  rotate: -5deg;
  left: 50%;
  transform: translateX(-50%);
}

._card3__button:hover::after {
  bottom: -80%;
  border-radius: 0;
  z-index: 0;
}

._card3__button__label {
  position: relative;
  z-index: 1;
  transition: .6s all ease-in-out;
  display: flex;
  gap: 1.2rem;
  align-items: center;

}
/* card3 component >>>*/