/* Shop */

.shop {
  margin: -50px 0% 100px;
}

.shop__card {
  position: relative;
  background: linear-gradient(
    180deg,
    rgba(42, 17, 48, 0.5) 0%,
    rgba(42, 17, 48, 0.5) 100%
  );
  height: 210px;
  border-radius: 18px;
  padding: 25px 35px;
  margin-bottom: 25px;
  border: 1px solid hsl(0, 0%, 100%, 0.035);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.shop__card h1 {
  font-size: 28px;
  color: var(--white);
  font-weight: 700;
}

.shop__card img {
  text-align: right;
  width: 200px;
}

.price__badge {
  min-width: 130px;
  background-color: var(--default);
  color: #a5a5a5;
  border-radius: 15px 15px 15px 0;
  padding: 15px;
  font-size: 14px;
  margin-top: 15px;
}

.price__badge span {
  color: var(--white);
}

@media only screen and (max-width: 1290px) {
  .shop {
    margin: 50px 4% 50px;
  }

  .shop__card img {
    text-align: right;
    width: 200px;
  }

  .price__badge {
    font-size: 13px;
  }
}
