.popup {
    display: none;
    cursor: pointer;
    position: fixed;
    right: 20px;
    top: 120px;
    width: 320px;
    transition: all 1s;
    z-index: 9999;
  }
  
  .text-container {
    background-color: rgba(0, 0, 0, 0.9);
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 15px;
  }
  
  .second-text {
    color: #fff;
    font-size: 19px;
    line-height: 22px;
    text-decoration: none;
  }
  
  .second-text span {
    color: red;
    font-weight: 900;
  }
  
  .popupText {
    color: #fff;
    font-size: 19px;
    line-height: 22px;
    text-decoration: none;
  }
  
  .popupText span {
    color: red;
    font-weight: 900;
  }
  
  .secondPopup {
    display: none;
    top: 60%;
    left: 1%;
    cursor: pointer;
    position: fixed;
    width: 320px;
    transition: all 1s;
    z-index: 9999;
  }
  
  .cart {
    width: 40px;
    height: 40px;
  }
  
  .closeButton {
    position: absolute;
    top: -25px;
    right: 0;
    outline: transparent;
    border: none;
    background-color: transparent;
    stroke: red;
    fill: transparent;
    cursor: pointer;
  }
  