
/* bottom floating badge  */
/* ----- FLOATING SUBSCRIBE BUTTON (bottom right) with #3b82f6 ----- */
    .floating-subscribe {
      position: fixed;
      bottom: 30px;
      right: 30px;
      background: linear-gradient(145deg, #3b82f6, #2563eb);
      border: none;
      color: white;
      font-weight: 700;
      font-size: 16px;
      padding: 13px;
      border-radius: 60px;
      display: flex;
      align-items: center;
      gap: 8px;
      cursor: pointer;
      transition: all 0.25s ease;
      z-index: 100;
      border: 1px solid rgba(255,255,255,0.4);
      letter-spacing: 0.5px;
    }

    .floating-subscribe i {
      font-size: 18px;
      color: #ffffff;
      filter: drop-shadow(0 2px 4px #00000040);
    }

    .floating-subscribe:hover {
    
      transform: translateY(-5px) scale(1.02);
   
    }

    .floating-subscribe:active {
      transform: translateY(4px);
      box-shadow: 0 14px 25px -8px #1e3a8a, 0 2px 0 #1a3f7a inset;
    }

    /* responsive floating */
    @media (max-width: 600px) {
      .floating-subscribe {
        bottom: 20px;
        right: 20px;
        padding: 0.8rem 1.6rem;
        font-size: 1rem;
        gap: 8px;
      }
      .floating-subscribe i {
        font-size: 1.3rem;
      }
    }

    /* ----- MODAL (professional, attractive, with #3b82f6 touches) ----- */
    .modal-overlay {
      position: fixed;
      top: 0; left: 0; width: 100%; height: 100%;
      background-color: rgba(20, 55, 120, 0.6);
      backdrop-filter: blur(5px);
      -webkit-backdrop-filter: blur(5px);
      display: flex;
      align-items: center;
      justify-content: center;
      visibility: hidden;
      opacity: 0;
      transition: visibility 0.2s, opacity 0.2s;
      z-index: 1000;
      padding: 1rem;
    }

    .modal-overlay.active {
      visibility: visible;
      opacity: 1;
    }

    .modal-content {
      background: #ffffff;
      max-width: 460px;
      width: 100%;
      border-radius: 36px;
      padding: 2.2rem 2rem 2.5rem;
      box-shadow: 0 40px 60px 0 #0f2f62b3, 0 0 0 1px rgba(255,255,255,0.4) inset;
      transform: scale(0.96);
      transition: transform 0.25s cubic-bezier(0.18, 0.89, 0.32, 1.28);
      border: 1px solid rgba(255,255,255,0.7);
      background: linear-gradient(145deg, #ffffff, #f5faff);
    }

    .modal-overlay.active .modal-content {
      transform: scale(1);
    }

    .modal-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 1.6rem;
    }

    .modal-header h2 {
      font-size: 2rem;
      font-weight: 700;
      background: linear-gradient(140deg, #1e3a8a, #3b82f6);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      letter-spacing: -0.5px;
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .modal-header h2 i {
      background: #dbeafe;
      padding: 10px;
      border-radius: 50%;
      font-size: 1.4rem;
      color: #1e3a8a;
      -webkit-text-fill-color: #1e3a8a;
    }

    .close-modal {
      background: none;
      border: none;
      font-size: 2rem;
      line-height: 1;
      cursor: pointer;
      color: #809ab3;
      transition: 0.15s;
      padding: 0 8px;
    }

    .close-modal:hover {
      color: #1e3a8a;
      transform: scale(1.2);
    }

    .modal-sub {
      color: #1e3a8a;
      margin-bottom: 2rem;
      font-size: 1rem;
      background: #dbeafe;
      padding: 0.8rem 1.2rem;
      border-radius: 60px;
      display: inline-block;
      font-weight: 600;
    }

    .input-group {
      margin-bottom: 2.2rem;
    }

    .input-group label {
      font-size: 0.95rem;
      font-weight: 600;
      color: #1e3a8a;
      margin-bottom: 6px;
      display: block;
      letter-spacing: 0.3px;
    }

    .input-field {
      display: flex;
      align-items: center;
      background: white;
      border-radius: 80px;
      padding: 0.3rem 0.3rem 0.3rem 1.5rem;
      border: 1.5px solid #b3d0ff;
      transition: 0.2s;
      box-shadow: 0 4px 10px rgba(0,80,200,0.05);
    }

    .input-field:focus-within {
      border-color: #3b82f6;
      box-shadow: 0 8px 18px -8px #3b82f6;
    }

    .input-field i {
      color: #3b82f6;
      font-size: 1.2rem;
    }

    .input-field input {
      border: none;
      padding: 1rem 0.8rem;
      width: 100%;
      font-size: 1.1rem;
      background: transparent;
      outline: none;
      font-weight: 500;
      box-shadow: none;
    }
    .input-field input:focus{
      box-shadow: none;
      background: transparent;
    }

    .input-field input::placeholder {
      color: #9ab7e6;
      font-weight: 400;
    }

    .submit-btn {
      background: linear-gradient(125deg, #3b82f6, #2563eb);
      border: none;
      color: white;
      font-weight: 700;
      font-size: 1.3rem;
      padding: 1.2rem 1.8rem;
      border-radius: 60px;
      width: 100%;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 14px;
    
      transition: all 0.15s;
      border: 1px solid rgba(255,255,255,0.3);
      letter-spacing: 0.7px;
    }

    .submit-btn i {
      font-size: 1.5rem;
      color: white;
      filter: drop-shadow(0 2px 2px #00000040);
    }

    .submit-btn:hover {
      background: linear-gradient(125deg, #2563eb, #1d4ed8);
      transform: translateY(-2px);
     
    }

    .submit-btn:active {
      transform: translateY(3px);

    }

    .fine-print {
      text-align: center;
      margin-top: 1.5rem;
      font-size: 0.85rem;
      color: #4b6f9f;
    }

    .fine-print a {
      color: #2563eb;
      font-weight: 600;
      text-decoration: none;
    }
    .fine-print a:hover {
      text-decoration: underline;
    }

    /* responsive */
    @media (max-width: 550px) {
      .demo-card, .lower-section {
        padding: 1.5rem;
      }
      .modal-content {
        padding: 1.8rem 1.2rem;
      }
      .modal-header h2 {
        font-size: 1.8rem;
      }
    }


    /* no product found css  */
    #primary .search-field{
    background-color: transparent;
    border: none;
    box-shadow: none;

}
#primary .search-field:focus{
    background-color: transparent;
    border: none;
    box-shadow: none;
    
}
/* No Results Page */
.no-results {
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    padding: 3rem 2rem;
    text-align: center;
    max-width: 600px;
    margin: 2rem auto;
    border: 1px solid #f0f0f0;
}

.no-results .page-header {
    border-bottom: none;
    margin-bottom: 1.5rem;
    padding-bottom: 0;
}

.no-results .page-title {
    font-size: 2.5rem;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.no-results .page-content p {
    font-size: 1.1rem;
    color: #4b5563;
    margin-bottom: 2rem;
    line-height: 1.6;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.no-results .search-form {
    display: flex;
    gap: 0.75rem;
    max-width: 500px;
    margin: 2rem auto 0;
    background: #f9fafb;
    padding: 0.5rem;
    border-radius: 50px;
    border: 1px solid #e5e7eb;
}

.no-results .search-form label {
    flex: 1;
}

.no-results .search-field {
    width: 100%;
    padding: 0.875rem 1.5rem;
    border: none;
    background: transparent;
    font-size: 1rem;
    color: #111827;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.no-results .search-field:focus {
    outline: none;
}

.no-results .search-field::placeholder {
    color: #9ca3af;
}

.no-results .search-submit {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
    border: none;
    padding: 0.875rem 2rem;
    border-radius: 40px;
    font-weight: 500;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 10px rgba(59, 130, 246, 0.2);
}

.no-results .search-submit:hover {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(59, 130, 246, 0.3);
}

.no-results .search-submit:active {
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    .no-results {
        padding: 2rem 1.5rem;
        margin: 1rem;
    }
    
    .no-results .page-title {
        font-size: 2rem;
    }
    
    .no-results .search-form {
        flex-direction: column;
        background: transparent;
        padding: 0;
        border: none;
    }
    
    .no-results .search-field {
        border: 1px solid #e5e7eb;
        border-radius: 40px;
        margin-bottom: 0.5rem;
    }
    
    .no-results .search-submit {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .no-results .page-title {
        font-size: 1.75rem;
    }
    
    .no-results .page-content p {
        font-size: 1rem;
    }
}

/* Print Styles */
@media print {
    .no-results .search-form {
        display: none;
    }
    
    .no-results {
        box-shadow: none;
        border: 1px solid #ddd;
    }
}
