.search-box1{
    position: relative;
    width: 400px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}
.search-box1  .input {
    display: flex;
    align-items: center;
    padding: 10px 20px;
}
.result-box {
    position: absolute;
    z-index: 1111;
    background-color: #fff;
    color: #333;
    width: 100%;
}
.search-box1  input {
    flex: 1;
    height: 30px;
    background: transparent;
    border: 0;
    outline: 0;
    font-size: 18px;
    color: #333;
}
.search-box1  button {
    background: transparent;
    border: 0;
    outline: 0;
}
.search-box1  button i {
    width: 25px;
    color: #555;
    font-size: 22px;
    cursor: pointer;
}
.product-suggestion {
    display: flex;
    align-items: center;
}

.product-suggestion a {
    text-decoration: none;
    color: #333;
    display: flex;
    padding: 10px;
}

.product-suggestion a:hover {
    color: #fff;
    background: #9bc6e5;
    width: 100%;
}

.product-suggestion .product-name {
    font-weight: bold;
}
