    .category-block {
        background: #fff;
        border-radius: 18px;
        padding: 25px;
        margin-bottom: 30px;
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .category-block:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    }

    /* Parent Circle */
    .parent-circle {
        width: 140px;
        height: 140px;
        border-radius: 50%;
        background: linear-gradient(135deg, #e8f5ff, #c5ffb085);
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        box-shadow: inset 0 4px 8px rgba(0, 0, 0, 0.05);
        margin: 0 auto;
    }

    .parent-circle img {
        max-width: 75%;
        max-height: 75%;
        object-fit: contain;
        transition: transform 0.3s ease;
    }

    .parent-circle:hover img {
        transform: scale(1.1);
    }

    .parent-name {
        margin-top: 15px;
        font-size: 1.3rem;
        font-weight: 600;
        color: #6BB252;
    }

    /* Subcategories Pills */
    .subcategories {
        gap: 12px;
        justify-content: center;
    }

    .subcategory-pill {
        display: flex;
        align-items: center;
        gap: 8px;
        background: #f8f9fa;
        border: 1px solid #e1e5ea;
        border-radius: 50px;
        padding: 6px 14px;
        font-size: 18px;
        color: #333;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .subcategory-pill img {
        width: 28px;
        height: 28px;
        border-radius: 50%;
        object-fit: cover;
    }

    .subcategory-pill:hover {
        background: #ffc107;
        color: #fff;
        border-color: #ffc107;
        transform: translateY(-2px);
    }

    .subcategory-pill:hover img {
        border: 2px solid #fff;
    }