.custom-search-bar-container {
    display: flex;
    align-items: center;
    width: 100%; /* Full width */
    max-width: 100%;
    border: 2px solid #0056b3;
    border-radius: 25px;
    padding: 5px;
    box-sizing: border-box;
    position: relative;
}

.custom-search-input {
    background: transparent !important;
    background-color: transparent !important;
    flex: 1;
    border: none !important;
    outline: none;
    padding: 10px 40px 10px 20px !important; /* Left padding for text, right padding for search button */
    font-size: 12px;
    width: 100% !important;
    box-shadow: none !important;
    height: 100% !important;
}

/* Search button (🔍) */
#custom-search-button {
    position: absolute;
    right: 10px; /* Positioning it at the far right */
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

/* Search results dropdown */
.search-results-dropdown {
    position: absolute;
    width: 100%;
    background: #fff;
    border: 1px solid #ddd;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    overflow-y: auto;
    max-height: 300px;
    top: 100%;
    left: 0;
    border-radius: 0 0 10px 10px;
}

/* Wrapper for each search result */
.search-result-wrapper {
    display: flex;
    align-items: center;
    padding: 10px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    transition: background 0.2s ease-in-out;
}

.search-result-wrapper:hover {
    background: #f8f8f8;
}

/* Search result image */
.search-result-image {
    width: 50px;
    height: 50px;
    margin-right: 15px;
    border-radius: 5px;
}

/* Search result text container */
.search-result-info {
    display: flex;
    flex-direction: column;
    max-width: calc(100% - 70px);
}

/* Product title with link */
.search-result-title {
    font-size: 14px;
    font-weight: bold;
    color: #0073aa;
    text-decoration: none;
}

.search-result-title:hover {
    text-decoration: underline;
}

/* Price styling */
.search-result-price {
    font-size: 14px;
    font-weight: bold;
    color: #0073aa;
    margin-left: 5px;
}

/* Product description */
.search-result-description {
    font-size: 12px;
    color: #555;
    margin-top: 5px;
}
