/* ========================================
   SEARCH FORM & SEARCH CONTAINER
   ======================================== */

.search-form {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    position: relative;
    width: 100%;
    max-width: 500px;
    z-index: 100;
}

.search-container {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    overflow: visible;
}

#search-input {
    width: 100%;
    padding: 0.8rem 1.2rem;
    border-radius: 25px;
    border: none;
    outline: none;
    font-size: 1rem;
    background-color: rgba(255, 255, 255, 0.15);
    color: #fff;
    backdrop-filter: blur(6px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

#search-input::placeholder {
    color: #ccc;
}

.search-results {
    position: absolute;
    top: 120%;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.95);
    border-radius: 12px;
    padding: 1rem;
    display: none;
    z-index: 50;
    max-height: 300px;
    overflow-y: auto;
}

.search-results ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.search-results li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    font-weight: 500;
}

.shop-search-wrapper {
    display: flex;
    justify-content: center;
    margin: 1.5rem 0;
}

.shop-search-input {
    width: 300px;
    color: #fff !important;
    background-color: #131414 !important;
    border: 2px solid rgb(37, 199, 224);
    border-radius: 25px 0 0 25px;
    padding: 0.6rem 1rem;
    font-size: 1rem;
    outline: none;
    box-shadow: 0 0 5px rgba(37, 199, 224, 0.7);
    transition: border-color 0.3s ease;
}

.shop-search-input::placeholder {
    color: #bbb;
}

.shop-search-input:focus {
    border-color: #18a0fb;
    box-shadow: 0 0 8px #18a0fb;
}

.shops-list-button {
    color: rgb(37, 199, 224);
    background: transparent;
    border: 2px solid rgb(37, 199, 224);
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    padding: 0.4rem 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-left: 1rem;
}

.shops-list-button:hover {
    background-color: rgb(37, 199, 224);
    color: white;
    transform: scale(1.05);
}
