
.pre-order {
  min-height: 100vh;
  background-image: url("../images/general/shop-back.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 200px 250px 350px 0px;
}
   input, textarea,  select {
    border: none;
    border-bottom: 2px solid #333;
    padding: 5px;
    margin-top: 20px;
    margin-bottom: 20px;
    width: 100%;
    font-size: 16px;
    outline: none;
    background: transparent;
}
.pre-order__option input{
    width: 10%;
}
.pre-order__overlay {
  width: 100%;
  display: flex;
  justify-content: flex-end;
}

.pre-order__card {
    width: 660px;
    max-width: 100%;
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    border-radius: 8px;
    padding: 56px 52px 48px;
    box-shadow: 0px 5px 20px #00000040;
}

.pre-order__content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 34px;
}

.pre-order__text {
  flex: 1;
}

.pre-order__title {
  font-size: 24px;
  line-height: 1.2;
  color: #2f80ed;
  font-weight: 700;
  margin-bottom: 22px;
}

.pre-order__description {
  font-size: 16px;
  line-height: 1.45;
  color: #444;
  margin-bottom: 18px;
  max-width: 390px;
}

.pre-order__thumbnail {
  width: 140px;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.pre-order__text i{
    color: white;
    background-color: #2f80ed;
    border-radius: 5px;
     padding: 5px 6px;
     margin-bottom: 5px;
}
.pre-order__thumbnail img {
  width: 100%;
  height: auto;
  display: block;
}

.pre-order__form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pre-order__field {
  width: 100%;
}

.pre-order__options {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 6px 0 8px;
}

.pre-order__option {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #8f8f8f;
  font-size: 16px;
}

.pre-order__action {
  margin-top: 14px;
}

@media (max-width: 900px) {
     .pre-order {
        justify-content: center;
        padding: 100px 40px;
    }

  .pre-order__overlay {
    justify-content: center;
  }

  .pre-order__card {
    width: 100%;
    background-color: white;
    padding: 32px 24px;
  }

  .pre-order__content {
    flex-direction: column;
  }

  .pre-order__description {
    max-width: 100%;
  }

  .pre-order__thumbnail {
    width: 120px;
  }
}