.ready-product-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  display: none;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;

  &.active {
    opacity: 1;
  }

  .ready-product-popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  &.active .ready-product-popup-overlay {
    opacity: 1;
  }

  .ready-product-popup-content {
    position: relative;
    background-color: #fff;
    width: 100%;
    max-width: 480px;
    margin: 0 20px;
    padding: 4rem 2rem 2rem;
    text-align: center;
    font-size: 16px;
    line-height: 1.35;
    font-weight: 400;
    color: #333;
    border-radius: 10px;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
    transform: scale(0.8) translateY(20px);
    opacity: 0;
    transition: all 0.3s ease;

    p {
      margin-top: 0;
      margin-bottom: 2rem;
    }

    .ready-product-popup-content-buttons {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 13px;
    }

    .continue-button,
    .configurator-button {
      line-height: 1;
      font-style: normal;
      font-weight: 600;
      font-size: rem;
      font-family: "Open Sans", sans-serif;
      text-transform: none;
      border-radius: 0;
      padding: 15px 36px;
      border-width: 2px;
      border-radius: 0;
      text-align: center;
      border-color: rgba(0, 0, 0, 1);

    }

    .continue-button {
      color: rgba(0, 0, 0, 0.9);
      border-color: rgba(0, 0, 0, 0.9);
      background-color: transparent;

      &:hover {
        background-color: #f5f5f5 !important;
      }
    }

    .configurator-button {
      color: #fff;
      background: rgba(0, 0, 0, 1);

      &:hover {
        background-color: transparent;
        color: rgba(0, 0, 0, 1);
      }
    }

    .ready-product-popup-close {
      position: absolute;
      top: 10px;
      right: 10px;
      cursor: pointer;
      transition: opacity 0.3s ease;

      &:hover {
        opacity: 0.7;
      }
    }
  }

  &.active .ready-product-popup-content {
    transform: scale(1) translateY(0);
    opacity: 1;
  }
}