       * {
 
            font-family: 'Poppins', sans-serif;
        }


        .container {
            width: 100%;
            /* padding: 20px; */
        }

        .search-outer {
            position: relative;
            display: flex;
            width: 100%;
            max-width: 500px;
            margin: 0 auto;
            transition: all 0.3s ease;
        }

        #search {
            width: 94%;
            height: 39px;
            border: none;
            padding: 0 20px;
            padding-right: 50px;
            font-size: 14px;
            border-radius: 50px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            outline: none;
        }

        #search:focus {
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
   /*      transform: translateY(-2px);*/
        }
/* -------------------------------------------------------------------------- */
                #search-mobile {
            width:100%;
            height: 42px;
            border: none;
            padding: 0 20px;
            padding-right: 50px;
            font-size: 14px;
            border-radius: 50px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            outline: none;
        }

        #search-mobile:focus {
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
   /*      transform: translateY(-2px);*/
        }
                #suggestions-mobile{
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: white;
            border-radius: 10px;
            margin-top: 10px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            display: none;
            z-index: 1000;
            max-height: 300px;
            overflow-y: auto;
            animation: fadeIn 0.3s ease;
            color: black;
        }
.search-outer-mobile {
            position: relative;
            display: flex;
            width: 100%;
           
            margin: 0 auto;
            transition: all 0.3s ease;
        }
        /* ---------------------------------------------------------------------------------------- */
        .search-btn {
    /* position: absolute;
    right: 18px;
    top: 2px; */
    height: 34px;
    width: 33px;
    border-radius: 50%;
    background: #ffcc00;
    color: #646464;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(255, 126, 41, 0.4);
    font-size: 13px;
        }

        .search-btn:hover {
            background: #f6a800;
            transform: rotate(3deg) scale(1.05);
        }

        #suggestions {
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: white;
            border-radius: 10px;
            margin-top: 10px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            display: none;
            z-index: 1000;
            max-height: 300px;
            overflow-y: auto;
            animation: fadeIn 0.3s ease;
            color: black;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(-10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .suggestion {
            padding:9px 15px;
            text-align: left;
            cursor: pointer;
            transition: all 0.2s ease;
            border-bottom: 1px solid #f1f1f1;
            display: flex;
            align-items: center;
            font-size: 14px;
        }

        .suggestion i {
            margin-right: 10px;
            color: #6a11cb;
        }

        .suggestion:last-child {
            border-bottom: none;
        }

        .suggestion:hover, .highlight {
            background: linear-gradient(to right, #f3e5f5, #e8f0fe);
            padding-left: 20px;
        }

        input::placeholder {
            color: #aaa;
            font-weight: 400;
        }

        .search-info {
            margin-top: 20px;
            color: white;
            font-size: 14px;
            opacity: 0.8;
        }

        /* Animation for search bar focus */
        .search-outer.focused {
            transform: scale(1.02);
        }

        /* Popular searches chips */
        .popular-searches {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 10px;
            margin-top: 30px;
        }

        .chip {
            background: rgba(255, 255, 255, 0.2);
            color: white;
            padding: 8px 15px;
            border-radius: 20px;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .chip:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: translateY(-2px);
        }

        /* Responsive design */
        @media (max-width: 767px) {
            .search-outer {
                width: 90%;
            }
            
            #search {
                height: 45px;
                font-size: 14px;
            }
            
            .search-btn {
                height: 35px;
                width: 35px;
            }
            
            #suggestions {
                max-height: 250px;
            }
            
            h1 {
                font-size: 24px;
            }
        }

        @media (max-width: 480px) {
            .search-outer {
                width: 100%;
            }
            
            .chip {
                font-size: 12px;
                padding: 6px 12px;
            }
        }