.product-container {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 16px;
            max-width: 1400px;
            margin: 0 auto;
            padding: 10px;
        }
        
        .item {
            background: white;
            border-radius: 12px;
            padding: 5px 16px;
            text-align: center;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
            border: 1px solid #e2e8f0;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 65px;
            position: relative;
            overflow: hidden;
        }
        
        .item:hover {
            transform: translateY(-6px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
            border-color: #cbd5e0;
        }
        
        .item::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: #9eccef;
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }
        
        .item:hover::after {
            transform: scaleX(1);
        }
        
        .item-content {
            font-size: 13px;
            font-weight: 500;
            color: #1e293b;
            line-height: 1.4;
            padding: 0 0px;
        }
        
        @media (max-width: 1200px) {
            .product-container {
                grid-template-columns: repeat(3, 1fr);
                gap: 14px;
            }
        }
        
        @media (max-width: 768px) {
            .product-container {
                grid-template-columns: repeat(2, 1fr);
                gap: 12px;
                padding: 10px;
            }
            
            .item {
                padding: 20px 12px;
                min-height: 120px;
            }
        }
        
        @media (max-width: 480px) {
            .product-container {
                grid-template-columns: 1fr;
                gap: 10px;
            }
            
            .item {
                padding: 24px 16px;
                min-height: 100px;
            }
        }
        
        /* Animation for items */
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .item {
            animation: fadeIn 0.5s ease forwards;
            opacity: 0;
        }
        
        .item:nth-child(1) { animation-delay: 0.1s; }
        .item:nth-child(2) { animation-delay: 0.15s; }
        .item:nth-child(3) { animation-delay: 0.2s; }
        .item:nth-child(4) { animation-delay: 0.25s; }
        .item:nth-child(5) { animation-delay: 0.3s; }
        .item:nth-child(6) { animation-delay: 0.35s; }
        .item:nth-child(7) { animation-delay: 0.4s; }
        .item:nth-child(8) { animation-delay: 0.45s; }
        .item:nth-child(9) { animation-delay: 0.5s; }
        .item:nth-child(10) { animation-delay: 0.55s; }
        .item:nth-child(11) { animation-delay: 0.6s; }
        .item:nth-child(12) { animation-delay: 0.65s; }
        .item:nth-child(13) { animation-delay: 0.7s; }
        .item:nth-child(14) { animation-delay: 0.75s; }
        .item:nth-child(15) { animation-delay: 0.8s; }
        .item:nth-child(16) { animation-delay: 0.85s; }
        .item:nth-child(17) { animation-delay: 0.9s; }
        .item:nth-child(18) { animation-delay: 0.95s; }
        .item:nth-child(19) { animation-delay: 1s; }