/* shop/public/css/search-bar.css */
/* ===========================
   SUCHLEISTE
   =========================== */

.search-bar {
    position: relative;
    display: flex;
    align-items: center;
}

.search-bar input {
    width: 220px;
    padding: 7px 12px;
    border: 1px solid #ccc;
    border-radius: 4px 0 0 4px;
    font-size: 14px;
    transition: width 0.3s ease;
}

.search-bar input:focus {
    outline: none;
    width: 300px;
}

.search-bar button {
    padding: 7px 14px;
    border: 1px solid #005fb3;
    background: #005fb3;
    color: #fff;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
}

.search-bar button:hover {
    background: #004a8c;
}

/* ===========================
   SUCHERGEBNISSE (Dropdown)
   =========================== */

.search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #ddd;
    border-top: none;
    z-index: 999;
    max-height: 300px;
    overflow-y: auto;
    display: none;
}

.search-results a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    text-decoration: none;
    color: #333;
    font-size: 14px;
}

.search-results a:hover {
    background: #f5f5f5;
}

.search-results img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 4px;
}

.search-no-results {
    padding: 10px;
    font-size: 14px;
    color: #777;
}