.wc-product-search {
    position: relative;
    width: 100%;
    max-width: 75%;
    margin: 10px auto;
    cursor: text; 
}


.wc-product-search:focus-within {
    border-color: #006C33; 
}

.search-container {
    display: flex;
    align-items: center;
    border: 2px solid #ccc;
    border-radius: 5px;
    overflow: hidden;
    background: white;
}

.search-input {
    width: 100%;
    padding: 12px;
    border: none;
    font-size: 16px;
    outline: none;
}

.search-button {
    background: #444;
    color: white;
    border: none;
    padding: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-button i {
    font-size: 16px;
}

.search-results {
    list-style: none;
    padding: 0;
    margin: 0;
    position: absolute;
    width: 100%;
    background: white;
    border: 1px solid #ddd;
    border-top: none;
    display: none;
    max-height: 250px;
    overflow-y: auto;
    z-index: 1000;
}

.search-results li {
    padding: 10px;
    cursor: pointer;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
}

.search-results li:hover {
    background: #f5f5f5;
}

.search-results img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    margin-right: 10px;
    border-radius: 3px;
}

.search-item-info {
    display: flex;
    flex-direction: column;
}

.search-item-title {
    font-size: 16px;
    font-weight: bold;
}

.search-item-price {
    font-size: 14px;
    color: #008000;
}
