.custom-cat-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            gap: 20px;
        }
        .custom-cat-card {
            background: #fff;
            border: 1px solid #eee;
            border-radius: 12px;
            overflow: hidden;
            transition: all 0.3s ease;
            text-align: center;
        }
        .custom-cat-card a {
            display: flex;
			justify-content: space-between;
            align-items: center;
            padding: 15px;
            text-decoration: none;
            color: #333;
        }
        .custom-cat-card img {
            max-width: 100%;
			width:15%;
            height: auto;
            border-radius: 8px;
        }
        .custom-cat-card .cat-name {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 8px;
        }
        .custom-cat-card .cat-arrow {
            font-size: 22px;
            color: #ff6600;
            transition: transform 0.3s ease;
        }
        .custom-cat-card:hover {
            border-color: #ff6600;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            transform: translateY(-5px);
        }
        .custom-cat-card:hover .cat-arrow {
            transform: translateX(5px);
        }