.card {
  height: 300px;
  background: linear-gradient(145deg, #ff0ddf -30%, #f57943 75%);
  border-radius: 30px;
  padding: 15px 25px 30px 20px;
  box-shadow: 0px 1px 18px -6px rgb(0 0 0 / 50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.card .card-button {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #054088;
  font-size: 25px;
  font-weight: 700;
  padding: 10px 15px;
  background-color: #f9feff;
  border-radius: 30px;
  width: 100%;
  max-width: 250px;
  margin: 15px 0;
}

.card .card-button img {
  width: 15px;
  height: 15px;
  margin: auto;
}

.card-button__text {
  margin: auto;
}

.card .card-content {
  display: flex;
  flex-direction: column;
  max-width: 300px;
  justify-content: space-between;
  align-items: center;
  color: #f9feff;
  gap: 20px;
}

.card .sale {
  width: fit-content;
  align-self: center;
  color: #ffff7d;
  font-size: 22px;
  font-weight: 800;
  padding: 5px 10px;
  margin-right: 20%;
  max-width: 180px;
}

.card .sale:lang(en) {
  margin-right: 0;
  margin-left: 20%;
}

@media (max-width: 768px) {
  .card .sale {
    margin-right: 8%;
  }
  .card .sale:lang(en) {
    margin-right: 0;
    margin-left: 8%;
  }
}

.card .card-content__price {
  font-size: 85px;
  font-weight: 800;
}

.card .card-content__price .currency {
  font-size: 54px;
  font-weight: 200;
}

.card .card-content__description {
  text-align: center; 
  font-size: 32px;
  font-weight: 700;
}

@media (max-width: 1024px) {
  .card .card-content__description {
    font-size: 25px;
  }

  .card .card-content__price {
    font-size: 70px;
  }
}

.card .card-button:lang(en) {
  flex-direction: row-reverse;
}

@media (max-width: 376px) {
  .card {
    height: auto;
  }
  .card .card-content {
    align-items: center;
    text-align: center;
  }

  .card .sale {
    align-self: center;
  }
}

.strikethrough {
  position: relative;
}
.strikethrough::before {
  position: absolute;
  content: "";
  color: #484255;
  left: 0;
  top: 50%;
  right: 0;
  border-top: 4px solid;
  border-color: inherit;
}

.strikethrough::before {
  -webkit-transform: rotate(-11deg);
  -moz-transform: rotate(-11deg);
  -ms-transform: rotate(-11deg);
  -o-transform: rotate(-11deg);
  transform: rotate(-11deg);
}