 * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            font-family: Arial, sans-serif;
        }
        
        .container {
            width: 1260px;
            margin: 0 auto;
        }
        
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 20px;
        }
        
        .product-card {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }
        
        .product-card:hover {
            transform: translateY(-5px);
        }
        
        .product-image {
            width: 100%;
            height: 150px;
            object-fit: cover;
        }
        
        .product-info {
            padding: 12px;
        }
        
        .product-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 8px;
        }
        
        .product-title {
            display: flex;
            align-items: center;
            font-weight: bold;
            font-size: 14px;
        }
         .product-titlee {
            display: flex;
            align-items: center;     
            font-size: 12px;
        }
        .title-icon {
            margin-right: 5px;
            color: #22409a;
        }
        
        .order-btn {
            background: #ffffff;
            color: white;
            border: none;
            padding: 1px 1px;
            border-radius: 1px;
            font-size: 12px;
            cursor: pointer;
        }
        
        .product-name {
            font-size: 13px;
            color: #555;
            margin-bottom: 5px;
			text-decoration: none; overflow: hidden; display: block; text-overflow: ellipsis;white-space: nowrap
        }
        
        .company-name {
            display: flex;
            align-items: center;
            font-size: 12px;
            color: #888;
			text-decoration: none; overflow: hidden; display: block; text-overflow: ellipsis;white-space: nowrap
        }
        
        .company-icon {
            margin-right: 5px;
            color: #3498db;
			
        }
        
        @media (max-width: 768px) {
            .products-grid {
                grid-template-columns: repeat(3, 1fr);
				gap: 3px;
            }
        }
        
        @media (max-width: 480px) {
            .products-grid {
                grid-template-columns: repeat(2, 1fr);
				gap: 3px;
            }

        }