﻿

/* Filter Sidebar */
.filter-sidebar {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
}

.filter-input {
    background-color: #f5f5f5; /* Off-white input background */
    border: 1px solid #e0e0e0;
    transition: border-color 0.3s ease;
}

    .filter-input:focus {
        border-color: #33a18a; /* A vibrant green on focus */
        box-shadow: 0 0 0 0.25rem rgba(51, 161, 138, 0.25);
    }

.btn-dark-green {
    background-color: #1e8449; /* A professional, deep green */
    border-color: #1e8449;
    color: #fff;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

    .btn-dark-green:hover {
        background-color: #166e3b;
        border-color: #166e3b;
    }

/* Product Cards */
.product-card-professional {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .product-card-professional:hover {
        transform: translateY(-5px);
        box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.1) !important;
    }

.product-img-professional {
    height: 250px;
    object-fit: cover;
    width: 100%;
}

.btn-wishlist {
    background-color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: #dc3545; /* Retain red for a clear call to attention for favorites */
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s, transform 0.2s;
}

    .btn-wishlist:hover {
        background-color: rgba(255, 255, 255, 0.9);
        transform: scale(1.1);
    }

.text-green {
    color: #1e8449 !important;
}

.bg-green {
    background-color: #1e8449 !important;
    color: #fff !important;
}

