.pdp-upsell-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  display: none;

  .pdp-upsell-popup__wrapper {
    position: relative;
    max-width: 120rem;
    padding: 4rem;
    margin: auto;
    max-height: 100dvh;
    overflow-y: scroll;

    @media (max-width: 990px) {
      max-width: 100%;
      padding: 1.5rem;
    }
  }

  .pdp-upsell-popup__content {
    overflow: hidden;
    border-radius: var(--pcard-radius);
    background-color: rgb(var(--color-background));
    display: flex;
    flex-direction: column;
    margin: auto;
    padding: 3rem;
    width: fit-content;
    position: relative;

    @media (max-width: 990px) {
      max-width: 100%;
      padding: 1.5rem;
    }
  }

  .pdp-upsell-popup__image-block {
    display: flex;
    align-items: center;
    gap: 1.6rem;

    @media (max-width: 990px) {
      flex-direction: column-reverse;
    }

    .price-block {
      display: flex;
      flex-direction: column;
      align-items: flex-end;

      @media (max-width: 990px) {
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 1.4rem;
      }

      .price-block__price {
        font-size: 6rem;
        font-weight: 600;
        color: rgb(var(--color-product-price-sale));
        line-height: 1;

        @media (max-width: 990px) {
          font-size: 3rem;
        }
      }

      .price-block__compare-price {
        font-size: 3.6rem;
        color: rgb(var(--color-text-secondary));
        text-decoration: line-through;

        @media (max-width: 990px) {
          font-size: 3rem;
        }
      }
    }
  }

  .pdp-upsell-popup__image {
    max-width: 40rem;

    img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
  }

  .pdp-upsell-popup__title {
    margin: auto;
    margin-bottom: 1.2rem;
    max-width: 90%;
    text-align: center;
    font-size: 42px;

    @media (max-width: 990px) {
      max-width: 86%;
      font-size: 2.8rem;
      margin-bottom: 0.8rem;
    }
  }

  .pdp-upsell-popup__product-title {
    font-size: 1.8rem;

    &.desktop {
      @media (max-width: 990px) {
        display: none;
      }
    }

    &.mobile {
      display: none;

      @media (max-width: 990px) {
        display: block;
      }
    }
  }

  .pdp-upsell-popup__add-to-cart {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
    gap: 12px;
  }

  .pdp-upsell-popup__subtitle {
    margin: 0;
    margin-bottom: 1.2rem;
    text-align: center;
    font-size: 1.8rem;

    @media (max-width: 990px) {
      font-size: 1.6rem;
      margin-bottom: 0.8rem;
    }
  }

  .pdp-upsell-popup__form {
    display: flex;
    width: 100%;
    gap: 1.6rem;
    justify-content: space-between;
    align-items: flex-end;

    @media (max-width: 990px) {
      gap: 0.8rem;
    }

    .product-form__quantity .quantity {
      @media (max-width: 990px) {
        max-width: 10rem;
      }
    }
  }

  .pdp-upsell-popup__submit {
    width: 100%;
  }

  .pdp-upsell-popup__close-btn {
    position: absolute;
    top: 3rem;
    right: 3rem;
    border: none;
    padding: 0;
    width: fit-content;

    @media (max-width: 990px) {
      top: 1.5rem;
      right: 1.5rem;
      height: fit-content;
    }
  }

  .pdp-upsell-popup__form {
    margin-top: 1.2rem;
  }
}

.pdp-upsell-popup.active {
  display: flex;
}