/* GAYA DASAR (POLOS): Dipakai untuk area bawah Hero supaya tetap bersih */
/* fotoimoet-search.css */
.fotoimoet-search-box { 
    max-width: 1000px; 
    margin: 20px auto; 
    position: relative; 
    padding: 0 50px; 
}


/* ... Kode CSS sisanya (label, input, btn-go, autocomplete, media query) tetap sama seperti sebelumnya ... */



.fotoimoet-search-box label { 
    font-weight: bold; 
    display: block; 
    margin-bottom: 15px; 
    color: #454339;
    text-align: center; 
}
.search-wrapper { 
    display: flex; 
    flex-direction: row; 
    gap: 12px; 
    position: relative; 
    align-items: center;
}

.fotoimoet-input-field { 
    flex: 1; 
    padding: 14px 20px; 
    border: 2px solid #ddd; 
    border-bottom: 2px solid #ddd !important; 
    border-radius: 30px; 
    font-size: 15px; 
    outline: none; 
    transition: border-color 0.3s; 
    box-sizing: border-box;
    box-shadow: none !important;
}
.fotoimoet-input-field:focus { 
    border-color: #ff4081; 
}
.fotoimoet-btn-go { 
    width: 50px; 
    height: 50px;       
    padding: 0;         
    background-color: #ff4081; 
    color: white; 
    border: none; 
    border-radius: 50%; 
    cursor: pointer; 
    font-weight: bold; 
    font-size: 16px;    
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 4px 10px rgba(255, 64, 129, 0.3); 
    transition: transform 0.2s, background-color 0.3s;
    flex-shrink: 0; 
}
.fotoimoet-btn-go:active {
    transform: scale(0.95); 
}
.fotoimoet-btn-go:disabled { 
    background-color: #ccc; 
    box-shadow: none;
    cursor: not-allowed; 
}
.autocomplete-items { 
    position: absolute; 
    z-index: 99; 
    top: 54px; 
    left: 15px;  
    right: 70px; 
    max-height: 200px; 
    overflow-y: auto; 
    background-color: #fff; 
    box-shadow: 0px 4px 6px rgba(0,0,0,0.1); 
    border-radius: 12px; 
}
.autocomplete-items div { 
    padding: 12px 18px; 
    cursor: pointer; 
    border-bottom: 1px solid #f1f1f1; 
    font-size: 14px; 
}
.autocomplete-items div:hover { 
    background-color: #f9f9f9; 
    color: #ff4081; 
}

@media screen and (max-width: 600px) {
    .search-wrapper { 
        flex-direction: column; 
        gap: 16px; 
    }
    .fotoimoet-btn-go { 
        width: 65px;  
        height: 65px; 
        font-size: 18px;
        margin: 0 auto; 
    }
    .autocomplete-items { 
        right: 15px; 
    }
}