.cps-product-search-widget {
    position: relative;
}

#cps-product-search-input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

#cps-product-search-results {
    margin: 0;
    padding: 0;
    list-style: none;
    background: #fff;
    /* border: 1px solid #ccc; */
    border-radius: 11px;
    max-height: 300px;
    max-width: 724px;
    overflow-y: auto;
    position: absolute;
    width: 100%;
    z-index: 999;
    left: 191px;
}

#cps-product-search-results li {
    display: flex;
    align-items: center;
    padding: 10px;
    border-bottom: 1px solid #eee;
}

#cps-product-search-results li img {
    width: 50px;
    height: 50px;
    margin-right: 10px;
    object-fit: cover;
}

#cps-product-search-results li a {
    text-decoration: none;
    color: #333;
    flex: 1;
}



/* Product search */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

/* Search Bar Wrapper */
.responsive-search-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    background-color: #f8f8f8;
}

/* Form Styling */
.responsive-search-bar form {
    display: flex;
    width: 100%;
    max-width: 600px;
    border: 1px solid #ccc;
    border-radius: 30px;
    overflow: hidden;
    background-color: #fff;
}

/* Search Input */
.search-input {
    flex: 1;
    padding: 10px 15px;
    border: none;
    outline: none;
    font-size: 16px;
}

/* Placeholder Color */
.search-input::placeholder {
    color: #aaa;
}

/* Search Button */
.search-button {
    background-color: #007bff;
    border: none;
    color: white;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-button:hover {
    background-color: #0056b3;
}

/* Responsive Styling */
@media (max-width: 768px) {
    .search-input {
        font-size: 14px;
        padding: 8px 10px;
    }

    .search-button {
        padding: 8px 15px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .responsive-search-bar form {
        flex-direction: column;
        border-radius: 10px;
    }

    .search-input {
        width: 100%;
        border-bottom: 1px solid #ccc;
        border-radius: 0;
    }

    .search-button {
        width: 100%;
        border-radius: 0;
    }
}