#ezwoo-search-box {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    margin: 0 auto;
    max-width: 500px;
    padding: 10px;
    background: #fff;
    z-index: 9999;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1); 
} 

/* Desktop (≥1024px): contoh 130px */
@media (min-width: 1024px){
  #ezwoo-search-box{ top: 145px; }
}

#ezwoo-search-input {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 2px solid #28a745;
    border-radius: 5px;
}
#ezwoo-search-results {
    background: white;
    border: 1px solid #ccc;
    border-top: none;
    display: none;
    max-height: 300px;
    overflow-y: auto;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    z-index: 10000;
}
#ezwoo-search-results ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
#ezwoo-search-results li {
    border-bottom: 1px solid #eee;
}
#ezwoo-search-results li a {
    display: flex;
    text-decoration: none;
    padding: 10px;
    color: #333;
}
#ezwoo-search-results li img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    margin-right: 10px;
    border-radius: 4px;
}
#ezwoo-search-results .info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
#ezwoo-search-results .info .price {
    color: #28a745;
    font-weight: bold;
    font-size: 15px;
    margin-top: 5px;
}
