
/* Mobile-optimierte Suchleiste */
.search-input-group {
    width: 100% !important;
    max-width: 100% !important;
}

.search-input {
    flex: 1;
    font-size: 16px; /* Verhindert Zoom auf iOS */
    padding: 0.5rem 0.75rem;
    border-right: none;
}

.search-btn {
    padding: 0.5rem 0.75rem;
    min-width: 44px; /* Touch-freundliche Mindestgröße */
    border-left: none;
}

.search-btn-text {
    font-size: 0.9rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .search-input-group {
        max-width: calc(100vw - 120px) !important; /* Platz für Logo und Store-Anzeige */
    }
    
    .search-input {
        font-size: 16px !important; /* Verhindert iOS Zoom */
        padding: 0.6rem 0.8rem;
    }
    
    .search-btn {
        min-width: 48px;
        padding: 0.6rem;
    }
    
    .search-btn i {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .search-input-group {
        max-width: calc(100vw - 100px) !important;
    }
    
    .search-input {
        padding: 0.7rem 0.9rem;
        font-size: 16px !important;
    }
    
    .search-btn {
        min-width: 50px;
        padding: 0.7rem;
    }
}

/* Tablet */
@media (min-width: 769px) and (max-width: 1024px) {
    .search-input-group {
        max-width: 350px !important;
    }
}

/* Desktop */
@media (min-width: 1025px) {
    .search-input-group {
        max-width: 400px !important;
    }
    
    .search-input:focus {
        box-shadow: 0 0 0 0.2rem rgba(0,123,255,.25);
    }
}

/* Autocomplete Styling */
.autocomplete-dropdown {
    border-color: var(--bs-border-color);
    font-size: 0.9rem;
}

.autocomplete-item:hover {
    background-color: var(--bs-light) !important;
}

.autocomplete-item mark {
    background-color: #fff3cd;
    padding: 0;
    font-weight: 600;
}

/* Loading State */
.search-input.loading {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23999' viewBox='0 0 16 16'%3E%3Cpath d='M8 0a8 8 0 1 1 0 16A8 8 0 0 1 8 0zM7 3a1 1 0 0 0-2 0v3a1 1 0 0 0 .5.866l2 1.2a1 1 0 0 0 1-1.732L7 5.5V3z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 16px;
}
