/* Search Bar Styles */
.search-form .input-group {
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-radius: 10px;
    overflow: hidden;
}

.search-form .form-control {
    border: 2px solid #007bff;
    border-right: none;
    padding: 12px 20px;
    font-size: 1.1rem;
}

.search-form .form-control:focus {
    box-shadow: none;
    border-color: #007bff;
}

.search-form .btn {
    border: 2px solid #007bff;
    padding: 12px 25px;
    font-weight: 600;
}

.quick-search {
    text-align: center;
}

.quick-search .btn {
    margin: 2px;
    transition: all 0.3s ease;
}

.quick-search .btn:hover {
    transform: translateY(-2px);
}

/* Filter Styles */
.filter-section {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
}

.card .list-group-item {
    border: none;
    padding: 12px 15px;
    transition: all 0.3s ease;
}

.card .list-group-item:hover {
    background-color: #007bff;
    color: white;
}

.card .list-group-item.active {
    background-color: #007bff;
    border-color: #007bff;
}

/* Product Card Enhancements */
.product-card {
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 25px rgba(0,0,0,0.15);
}

.product-image-container {
    transition: all 0.3s ease;
}

.product-card:hover .product-image-container {
    transform: scale(1.05);
}

/* Badge Styles */
.badge {
    font-size: 0.7em;
    padding: 6px 10px;
}

/* Empty State */
.empty-state {
    padding: 60px 20px;
}

.empty-state h1 {
    font-size: 4rem;
    margin-bottom: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .search-form .input-group {
        flex-direction: column;
    }
    
    .search-form .form-control {
        border-right: 2px solid #007bff;
        border-bottom: none;
        border-radius: 10px 10px 0 0;
    }
    
    .search-form .btn {
        border-radius: 0 0 10px 10px;
        width: 100%;
    }
    
    .quick-search {
        text-align: left;
    }
    
    .quick-search .btn {
        margin: 2px 1px;
        font-size: 0.8rem;
    }
}

/* Active Filter Badges */
.alert-info .badge {
    cursor: pointer;
    transition: all 0.3s ease;
}

.alert-info .badge:hover {
    opacity: 0.8;
    transform: scale(1.05);
}