        /* Custom styles for product cards */
        .card {
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            overflow: hidden;
        }
        
        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 16px rgba(0,0,0,0.2);
        }
        
        .card-img-top {
            height: 300px;
            object-fit: cover;
        }
        
        .card-body {
            padding: 1.5rem;
        }
        
        .card-title {
            font-size: 1.4rem;
            margin-bottom: 0.5rem;
        }
        
        .card ul {
            padding-left: 1.2rem;
        }
        
        .card ul li {
            margin-bottom: 0.3rem;
        }
        
        .font-weight-bold {
            font-weight: 700;
            font-size: 1.3rem;
        }
        
        /* Product badge */
        .product-badge {
            position: absolute;
            top: 10px;
            right: 10px;
            background-color: #FF6666;
            color: white;
            padding: 5px 10px;
            border-radius: 4px;
            font-size: 0.8rem;
            font-weight: bold;
            z-index: 10;
        }