


        /* Category section styling */
        .category-section {
            margin-bottom: 2rem;
        }
        .category-section h2 {
            font-size: 1.875rem;
            font-weight: bold;
            color: #1a202c;
            margin-bottom: 1rem;
        }
        .category-grid {
            display: grid;
            grid-template-columns: repeat(1, minmax(0, 1fr));
            gap: 2rem;
        }
        @media (min-width: 640px) {
            .category-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
        }
        @media (min-width: 1024px) {
            .category-grid {
                grid-template-columns: repeat(3, minmax(0, 1fr));
            }
        }

        /* Wrapper for the card and info */
        .category-card-wrapper {
            transition: transform 0.3s ease-in-out;
        }
        .category-card-wrapper:hover {
            transform: translateY(-5px);
        }
        
        /* Category item styling and hover effects */
        .category-item-link {
            display: block;
            text-decoration: none;
            color: inherit;
            background-color: white;
            border-radius: 0.5rem;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
            overflow: hidden;
            transition: box-shadow 0.3s ease;
        }
        .category-item-link:hover {
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
        }

        .category-thumbnail-container {
            aspect-ratio: 3 / 2;
            overflow: hidden;
        }
        .category-thumbnail {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease-in-out;
        }
        .category-item-link:hover .category-thumbnail {
            transform: scale(1.1);
        }
        .category-info {
            padding-top: 0.75rem;
            text-align: center;

        }
        .category-info h3 {
            font-size: 1.25rem;
            font-weight: 600;
            color: #09008b;
            margin-bottom: 0.25rem;

            
        }
        .category-info h3:hover{
            text-decoration: underline;
            transform: translateY(-3px);
            
        }
        .category-info p {
            font-size: 0.875rem;
            color: #6b7280;
        }
        .no-categories {
            text-align: center;
            color: #6b7280;
            font-size: 1.125rem;
        }

