.search-bar {
    display: flex;
    align-items: center;
    background: #f8f9fa;
    border-radius: 60px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    padding: 8px 10px;
    gap: 10px;
    flex-wrap: wrap;
}

.search-item {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    position: relative;
    min-width: 180px;
    flex: 1;
}
#guestInput{
    cursor: pointer;
}

.search-item i {
    font-size: 18px;
    color: #888;
    margin-right: 8px;
}

.search-item input {
    border: none;
    outline: none;
    background: transparent;
    width: 100%;
}

/* Divider Line */
.search-item:not(:last-child) {
    border-right: 1px solid #ddd;
}

/* Guest Counter */
.guest-box {
    display: flex;
    align-items: center;
    gap: 8px;
}

.guest-box button {
    border: none;
    background: #e9ecef;
    padding: 2px 10px;
    border-radius: 5px;
}

/* Search Button */
.search-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, #2c5e79, #3471bc);
    color: white;
    font-size: 22px;

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 0 15px rgba(85, 142, 192, 0.5);
}

.search-btn:hover {
    box-shadow: 0 0 25px rgba(71, 84, 197, 0.9);
    transform: scale(1.08);
}

/* Mobile */
@media (max-width: 768px) {
    .search-bar {
        flex-direction: column;
        border-radius: 20px;
    }

    .search-item {
        border-right: none;
        border-bottom: 1px solid #eee;
        width: 100%;
    }

    
}
.search-item:hover {
    background: #f1f1f1;
    border-radius: 30px;
}
.autocomplete-list {
    position: absolute;
    top: 45px;
    left: 15px;
    right: 15px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    display: none;
    z-index: 1000;
}

.autocomplete-list div {
    padding: 12px;
    cursor: pointer;
    color: black;
    font-weight: bold;
    font-size: 15px;
}

.autocomplete-list div:hover {
    background: #f1f1f1;
}

.autocomplete-list div:hover {
    background: #f1f1f1;
}
.guest-field {
    position: relative;
}

.guest-dropdown {
    position: absolute;
    top: 55px;
    right: 0;
    width: 280px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    padding: 15px;
    display: none;
    z-index: 1000;
}

.guest-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.guest-title {
    font-weight: bold;
    color: black;
    font-size: 16px;
}

.guest-sub {
    font-size: 13px;
    color: #555;
}

.guest-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.guest-controls button {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid #ccc;
    background: white;
    font-size: 18px;
}

.guest-controls span {
    font-weight: bold;
    color: black;
    width: 20px;
    text-align: center;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .guest-dropdown {
        width: 100%;
        left: 0;
        right: 0;
    }
}