        /* Ensure consistent height */
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        }

        .category-icon {
            font-size: 32px !important;
            /* Smaller icon */
            margin-bottom: 10px !important;
        }

        .category-name {
            font-size: 14px !important;
            /* Smaller title */
            margin-bottom: 5px !important;
            line-height: 1.2;
        }

        .category-description {
            font-size: 10px !important;
            /* Smaller description */
            line-height: 1.3;
            margin-bottom: 0 !important;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            /* Limit to 2 lines */
            line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .category-arrow {
            display: none !important;
            /* Hide arrow on mobile to save space */
        }
        }