 .product-card {
            background: white;
            border: 1px solid #eef2f6;
            border-radius: 16px;
            overflow: hidden;
            transition: all 0.3s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        
        .product-card:hover {
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
            transform: translateY(-4px);
        }
        
        .product-image {
            position: relative;
            overflow: hidden;
            height: 176px;
        }
        
        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }
        
        .product-card:hover .product-image img {
            transform: scale(1.05);
        }
        
        .discount-badge {
            position: absolute;
            top: 8px;
            right: -24px;
            transform: rotate(45deg);
            background: #dc3545;
            color: white;
            font-size: 0.7rem;
            font-weight: bold;
            padding: 4px 32px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
            z-index: 10;
            white-space: nowrap;
        }
        
        .product-description {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(0, 0, 0, 0.6);
            color: white;
            font-size: 0.7rem;
            padding: 8px 12px;
            backdrop-filter: blur(4px);
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        
        .product-content {
            padding: 1rem;
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        
        .product-title {
            font-size: 1.1rem;
            font-weight: 700;
            color: #2d3e3e;
            margin: 0;
        }
        
        .product-unit {
            font-size: 0.75rem;
            color: #6c868e;
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }
        
        .product-unit i {
            margin-left: 4px;
            color: var(--snc-primary);
        }
        
        .product-prices {
            display: flex;
            gap: 16px;
            margin-top: 8px;
            font-size: 0.8rem;
            font-weight: 600;
            color: #2d4a4a;
        }
        
        .product-prices span {
            color: var(--snc-primary);
            font-weight: 800;
            margin-right: 4px;
        }
        
        .add-to-cart-btn {
            margin-top: 12px;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            background: var(--snc-primary);
            color: white;
            border: none;
            padding: 10px;
            border-radius: 12px;
            font-size: 0.8rem;
            font-weight: 600;
            transition: all 0.2s;
            cursor: pointer;
        }
        
        .add-to-cart-btn:hover {
            background: var(--snc-primary-dark);
            transform: translateY(-2px);
        }
        
        .add-to-cart-btn i {
            font-size: 1rem;
        }
        
        @media (max-width: 768px) {
            .product-title {
                font-size: 1rem;
            }
            .product-prices {
                font-size: 0.7rem;
                gap: 12px;
            }
            .discount-badge {
                font-size: 0.6rem;
                padding: 3px 28px;
                top: 6px;
                right: -22px;
            }
        }