        .breadcrumb-item + .breadcrumb-item::before {
            content: ">"; /* Custom separator */
        }
        .breadcrumb {
            background-color: #f8f9fa;
            padding: 0.75rem 1rem;
            border-radius: 0.375rem;
            margin-bottom: 1.5rem;
        }
        .product-card {
            border: 1px solid #e9ecef;
            border-radius: 0.5rem;
            overflow: hidden;
            transition: box-shadow 0.3s;
            height: 100%;
        }
        .product-card:hover {
            box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.15);
        }
        .product-img {
            height: 200px;
            object-fit: contain;
        }
        .sidebar-list a {
            text-decoration: none;
            color: #0d6efd;
            font-weight: 500;
        }
        .sidebar-list a:hover {
            text-decoration: underline;
            
        }
    