/*Input Your Custom CSS Here*/
/* Filter Card */
.card.shadow-sm.sticky-top {
    border: 1px solid #dee2e6;
    border-radius: 0.5rem;
}

.card-header.bg-light {
    background-color: #f8f9fa !important;
    border-bottom: 1px solid #dee2e6;
}

/* Filter Inputs */
.card-body .form-control {
    border-radius: 0.25rem;
    font-size: 0.95rem;
}

/* Filter Buttons */
.card-body .btn {
    font-size: 0.9rem;
}

/* Results Heading */
h4 span.badge {
    font-size: 0.8rem;
    background-color: #6c757d;
}

/* Product Card */
.product-card {
    border: 1px solid #e0e0e0;
    border-radius: 0.5rem;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

/* Product Image */
.product-card img.card-img-top {
    border-top-left-radius: 0.5rem;
    border-top-right-radius: 0.5rem;
}

/* Badge Styling */
.badge-success,
.badge-primary {
    font-size: 0.75rem;
    border-radius: 0.25rem;
    opacity: 0.95;
}

/* Card Title */
.card-title {
    font-size: 1.1rem;
    font-weight: 600;
}

/* Description Truncation */
.card-text.small {
    font-size: 0.85rem;
    line-height: 1.4;
}

/* Action Buttons */
.product-card .btn-sm {
    font-size: 0.8rem;
    padding: 6px 10px;
    border-radius: 0.25rem;
}

/* Load More Button */
.btn.btn-outline-primary.btn-lg {
    font-size: 1rem;
    padding: 10px 30px;
    border-radius: 30px;
    transition: background-color 0.3s ease;
}

.btn.btn-outline-primary.btn-lg:hover {
    background-color: #007bff;
    color: white;
}

/* No Products Found Card */
.card.text-center.py-5 {
    border: none;
    background-color: #f9f9f9;
}

.card.text-center .fa-search {
    color: #adb5bd;
}


