/** Shopify CDN: Minification failed

Line 150:8 Unexpected "}"

**/

        .exit-modal {
          position: fixed;
          z-index: 1000;
          left: 0;
          top: 0;
          width: 100%;
          height: 100%;
          background-color: rgba(0,0,0,0.5);
          display: none;
        }
        .exit-modal-content {
          position: relative;
          margin: auto;
          width: 90%;
          max-width: 900px;
          background-color: #fff;
          display: flex;
          flex-direction: column;
          align-items: center;
          top: 50%;
          transform: translateY(-50%);
          overflow: auto;
          border-color:#FEA8B1;
          border-style:solid;
          border-width: 10px;
          border:inside;
          box-shadow: 0px 5px 22.3px 1px rgba(35, 31, 32, 0.25);
          padding: 40px 20px;
        }
        .exit-modal-header {
          text-align: center;
          margin-bottom: 30px;
          width: 100%;
        }

        .exit-modal-title {
          font-size: 32px;
          font-weight: 400;
          letter-spacing:13%;
          margin: 0 0 10px 0;
          color: #231F20;
          text-transform:uppercase;

        }
        .exit-modal-subtitle {
          font-size: 20px;
          font-weight: 200;
          margin-bottom: 0;
          color: #666;
        }
        .exit-modal-product-grid {
          display: flex;
          justify-content: space-between;
          gap: 20px;
          width: 100%;
          margin-bottom: 30px;
        }
        .exit-modal-product {
          text-align: center;
          flex: 1;
          min-width: 0;
          padding: 15px;
          border-style:solid;
          border-width:1px;
          border-color:#ECECEC;
             transition: 0.3s ease;
        }

         .exit-modal-product:hover {
             border-style:solid;
          border-width:1px;
          border-color:#FEA8B1;


         }



        .exit-modal-product img {
          width: 100%;
          max-width: 100px;
          height: auto;
          border-radius: 5px;
          margin: 0 auto;
          display: block;
        }
        .product-link{
              text-decoration:none;
        }
      .product-title {
      font-size: 16px;
      margin: 15px 0 5px;
      overflow: hidden;
      text-overflow: ellipsis;
      display: -webkit-box;
      -webkit-line-clamp: 2; /* Allow exactly 2 lines */
      -webkit-box-orient: vertical;
      text-decoration: none;
    }

        .product-price{
              font-size: 16px;
          font-weight: 300;
          margin: 0;
            color: #3D3D3D;


        }

        .exit-button-container {
          width: 100%;
          max-width: 300px;

        }
        .exit-modal-button {
          display: inline-block;
          width: 100%;
          height: 48px;
          background-color: #231F20;
          color: #fff;
          border: none;
          cursor: pointer;
          font-size: 16px;
          font-weight: 500;
          text-transform: uppercase;

        }
        .exit-modal-close {
          position: absolute;
          top: 15px;
          right: 20px;
          font-size: 28px;
          cursor: pointer;
          color: #231F20;
        }
        .no-products {
          text-align: center;
          width: 100%;
          padding: 20px;
          grid-column: 1 / -1;
        }


        }
  