/* WhatsApp Waitlist Modal Styles */
.petos-waitlist-modal {
   display: none;
   position: fixed;
   z-index: 99999;
   left: 0;
   top: 0;
   width: 100%;
   height: 100%;
   background-color: rgba(74, 74, 74, 0.7);
   backdrop-filter: blur(5px);
   align-items: center;
   justify-content: center;
}

.petos-waitlist-modal.show {
   display: flex;
}

.petos-waitlist-modal-content {
   background-color: #F7F7F7;
   border-radius: 20px;
   padding: 40px 35px 35px;
   max-width: 420px;
   width: 90%;
   max-height: 90vh;
   overflow-y: auto;
   position: relative;
   z-index: 100000;
   box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
   text-align: center;
   display: flex;
   flex-direction: column;
   align-items: center;
   font-family: 'Space Grotesk';
}

.petos-waitlist-close {
   position: absolute;
   top: 15px;
   right: 15px;
   font-family: 'Space Grotesk';
   font-size: 28px;
   font-weight: 300;
   color: #999;
   cursor: pointer;
   line-height: 1;
   transition: color 0.3s ease;
   z-index: 10;
}

.petos-waitlist-close:hover {
   color: #333;
}

.petos-waitlist-logo {
   margin-bottom: 25px;
   display: flex;
   align-items: center;
   justify-content: center;
}

.petos-waitlist-logo img {
   height: 38px;
   width: auto;
}

.petos-waitlist-title {
   font-family: 'Space Grotesk';
   font-size: 32px;
   font-weight: 500;
   color: #FC8034;
   margin-bottom: 12px;
   line-height: 1.2;
}

.petos-waitlist-announcement {
   font-family: 'Space Grotesk';
   font-size: 20px;
   font-weight: 700;
   color: #000000;
   margin-bottom: 8px;
   line-height: 1.3;
}

.petos-waitlist-subtitle {
   font-family: 'Space Grotesk';
   font-size: 16px;
   color: #999999;
   margin-bottom: 25px;
   line-height: 1.5;
}

.petos-waitlist-qr-container {
   background: transparent;
   border: none;
   border-radius: 0;
   padding: 0;
   margin: 0 0 30px;
   display: inline-block;
}

.petos-waitlist-qr-code {
   width: 200px;
   height: 200px;
   margin: 0 auto;
   display: block;
   border: 2px solid #ffffff;
   border-radius: 8px;
   padding: 8px;
   background-color: #ffffff;
}

.petos-waitlist-qr-code img {
   width: 100%;
   height: 100%;
   object-fit: contain;
}

.petos-waitlist-button {
   display: inline-block;
   margin-top: 0;
   padding: 14px 40px;
   background-color: #FC8034;
   color: #ffffff;
   text-decoration: none;
   border-radius: 16px;
   font-family: 'Space Grotesk';
   font-size: 16px;
   font-weight: 600;
   transition: background-color 0.2s ease, transform 0.2s ease;
   box-shadow: 0 2px 8px rgba(252, 128, 52, 0.2);
   width: 100%;
   text-align: center;
}

.petos-waitlist-button:hover {
   background-color: #e6732d;
   transform: translateY(-1px);
   box-shadow: 0 4px 12px rgba(252, 128, 52, 0.3);
   color: #ffffff;
   text-decoration: none;
}

.petos-waitlist-button:active {
   transform: translateY(0);
}

@media (max-width: 575.98px) {
   .petos-waitlist-modal-content {
      padding: 35px 25px 30px;
      border-radius: 18px;
      max-width: 380px;
   }

   .petos-waitlist-logo img {
      height: 32px;
   }

   .petos-waitlist-title {
      font-size: 28px;
   }

   .petos-waitlist-announcement {
      font-size: 18px;
   }

   .petos-waitlist-subtitle {
      font-size: 14px;
      margin-bottom: 20px;
   }

   .petos-waitlist-qr-code {
      width: 180px;
      height: 180px;
   }

   .petos-waitlist-button {
      padding: 12px 30px;
      font-size: 15px;
   }
}

