.custom-cat-grid {
    display: grid;
    gap: 15px;
}

/* Column Logic */
.custom-cat-grid.col-4 { grid-template-columns: repeat(4, 1fr); }
.custom-cat-grid.col-3 { grid-template-columns: repeat(3, 1fr); }

.cat-item {
    display: flex;
    align-items: center;
    background: #f1f3f5;
    padding: 15px;
    border-radius: 8px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s;
}

.cat-item:hover {
    background: #e9ecef;
}

.cat-icon {
    width: 40px;
    height: 40px;
    margin-right: 15px;
    background: #fff;
    border-radius: 4px;
}

.cat-name {
    flex-grow: 1;
    font-weight: 500;
}

.cat-arrow {
    font-family: "Elementor Icons";
    font-size: 12px;
    color: #999;
}