.card {
            width: 320px;
            background: rgba(255, 255, 255, 0.95);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
            transition: transform 0.4s ease, box-shadow 0.4s ease;
            position: relative;
        }
        
        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }
        
        .badge {
            position: absolute;
            top: 20px;
            left: 20px;
            background: linear-gradient(45deg, #ff416c, #ff4b2b);
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-weight: 600;
            font-size: 14px;
            z-index: 2;
            box-shadow: 0 4px 10px rgba(255, 65, 108, 0.4);
        }
        
        .image-container {
            height: 230px;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(120deg, #f5f7fa, #e4edf9);
        }
        
        .product-image {
            max-height: 80%;
            max-width: 80%;
            transition: transform 0.5s ease;
        }
        
        .card:hover .product-image {
            transform: scale(1.1) rotate(5deg);
        }
        
        .card-content {
            padding: 25px;
        }
        
        .category {
            color: #6a11cb;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 5px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .title {
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 10px;
            color: #333;
        }
        
        .description {
            color: #666;
            font-size: 14px;
            line-height: 1.6;
            margin-bottom: 20px;
        }
        
        .price-container {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }
        
        .price {
            font-size: 26px;
            font-weight: 800;
            color: #2575fc;
            margin-right: 15px;
        }
        
        .old-price {
            font-size: 18px;
            color: #999;
            text-decoration: line-through;
        }
        
        .rating {
            margin-bottom: 20px;
        }
        
        .stars {
            color: #ffc107;
            margin-bottom: 5px;
        }
        
        .stars i {
            margin-right: 2px;
        }
        
        .rating-text {
            font-size: 14px;
            color: #777;
        }
        
        .actions {
            display: flex;
            gap: 12px;
        }
        
        .cart-btn {
            flex: 1;
            padding: 12px 20px;
            background: linear-gradient(45deg, #6a11cb, #2575fc);
            color: white;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            box-shadow: 0 4px 15px rgba(37, 117, 252, 0.3);
        }
        
        .cart-btn:hover {
            background: linear-gradient(45deg, #2575fc, #6a11cb);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(37, 117, 252, 0.4);
        }
        
        .wishlist-btn {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: white;
            border: 2px solid #eee;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .wishlist-btn:hover {
            background: #ff416c;
            color: white;
            border-color: #ff416c;
            transform: scale(1.1);
        }
        
        .features {
            padding: 20px;
            background: #f8f9ff;
            border-top: 1px solid #eee;
            display: flex;
            justify-content: space-around;
        }
        
        .feature {
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        .feature i {
            font-size: 20px;
            color: #6a11cb;
            margin-bottom: 8px;
        }
        
        .feature span {
            font-size: 12px;
            color: #666;
            text-align: center;
        }
        
        @media (max-width: 768px) {
            .container {
                gap: 20px;
            }
            
            .card {
                width: 100%;
                max-width: 350px;
            }
        }